分类: Python/Ruby
2012-11-02 14:01:11
Label常见的参数:
-anchor => 'n' | 'ne' | 'e' | 'se' | 's' | 'sw' | 'w' | 'nw' | ' center ' Causes the text to stick to that position in the Label widget. This won't be obvious unless the Label is forced to be larger than standard size. -background => color Sets the background color of the Label to color . -bitmap => bitmap Displays the bitmap contained in bitmap instead of text. -borderwidth => amount Changes the width of the edges of the Label. -cursor => cursorname Changes the cursor to cursorname when the mouse is over this widget. -font => fontname Indicates that the text in the widget will be displayed with fontname . -foreground => color Changes the text of the Button (or the bitmap) to color . -height => amount Sets the height of the Label to amount ; amount is a valid screen distance. -highlightbackground => color Sets the color of the focus rectangle when the widget is not in focus to color . -highlightcolor => color Sets the color of the focus rectangle when the widget has focus to color . -highlightthickness => amount Sets the width of the focus rectangle. Default is 0 for the Label. -image => imgptr Displays the image to which imgptr points, instead of text. -justify => 'left' | 'right' | ' center ' Sets the side of the Label against which multiline text will justify. -padx => amount Adds extra space inside the edge to the left and right of the Label. -pady => amount Adds extra space inside the edge to the top and bottom of the Label. -relief => ' flat ' | 'groove' | 'raised' | 'ridge' | 'sunken' Changes the type of edges drawn around the Button. -takefocus => 0 | 1 | undef Changes the ability of the Label to have the focus or not. -text => text Displays a text string in the Label. -textvariable => /$variable Points to the variable containing text to be displayed in the Label. Label will change automatically as $variable changes. -underline => n Causes the n th character to be underlined. Allows that key to invoke the widget when it has the focus. Default value is -1 (no character underlined). -width => amount Causes the Label width to be amount . -wraplength => amount Indicates that the text in the Label will wrap when it gets longer than amount .