The main window under Python can be defined as follows:def start (self):#self. Project = Project ("temp")#self. Project.directory = OS.GETCWD ()#Splash = SplashScreen (self.master)Self.hellos = 0Self.master.title ("Stars:space-time Analysis of Regional Systems")Self.master.iconname ("STARS")Self.master.bind ("h = self.winfo_screenheight ()W = self.winfo_screenwidth ()Geom = "%dx%d"% (w,h)Self.master.geometry ("600x400+0+0")The menu is defined as follows: (List only the menu under file, then slig
#-*-Coding:utf-8-*-from Tkinter Import *root = Tk () # 80x80 represents the size of the main window at initialization, 0, 0 represents the location of the window at the time of initialization root.geometry (' 80x80+10+10 ' # Fill in Direction ' ' label (root, Text = ' L1 ', bg = ' red '). Pack (fill = Y) label (root, Text = ' L2 ', bg = ' green '). Pack (fill = BOTH) label (root, Text = ' L3 ', bg = ' blue '). Pack (fill = X) # Around layout label (ro
The examples in this article describe the Python-based Notepad for tkinter implementation. Share to everyone for your reference. Specifically as follows:
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14-15 16
From tkinter import * root = Tk ("Simple Editor") Mi=stringvar () Label (text= ' Please input something you like~ '). Pack () te = Text (height = 30,width =100) te.pack () Label (text= ' File name
This example demonstrates the use of the Python Tkinter base control and is shared for your reference. The specific method is as follows:
#-*-Coding:utf-8-*-from tkinter import * def btn_click (): b2[' text '] = ' clicked ' Evalue = E.get () print ' btn Click and Entry value is%s '% Evalue def btn_click_bind (event): print ' Enter B2 ' Def show_toplevel (): top = Toplev El () Top.title (' 2nd window '
Python script has been written for a while, the advantages of the Python language does not have to say, but the GUI programming seems very few, looking for to find is the following two most reliable, but are the basis, really if the actual writing, but also to see the various code to do.
"Tkinter+programming+code+by+examples.pdf" http://vdisk.weibo.com/s/pNW4u
"Tkinter.pdf" Http://vdisk.weibo.com/s/pJ0Al
TopLevel's use has an article written particul
The TopLevel (top-level window) component is similar to a frame component, but the TopLevel component is a stand-alone top-level window that usually has parts such as title bars, borders, and so on, and is the same as the root window created by TK (), sharing the same method.
When to use the TopLevel component.
TopLevel components are typically used to display additional windows, dialogs, or other pop-up windows.
In the following example, we add a button to the root window to create a top-leve
When testing photoimage individually
From Tkinter Import *
From PiL. IMAGETK Import Photoimage
A = Photoimage (file= ' your file path ')
You may encounter the "too early to create image" problem
Google to the solution:
You are forgot to declare root-root = Tk (). The TK system must is on before using it.
You should declare a TK (TopLevel is also possible) before using Photoimage ()
From Tkinter
The @ Overview TK is a (available for multi-platform) GUI library; Tkinter is the interface of the Python language to access the library and the standard for Python's GUI development;
@ First GUI interface
From tkinter Import *
# Create a program window
= Tk ()
# Create a control instance
lable = Label (
window, # parent Container
text= Hello " # optional keyword parameters (see source note)
but
coordinates, which defines the width (in pixel units) for each column. Event.x/y can take the coordinates. You can analyze the coordinate range of the column in which the coordinate falls.Header_widths=[n1,n2,n3 ....] row_selected = Your_treeview.identify_row (event.y) values = Your_treeview.item (row_selected, ' values ') Cell_val = Falseindex = -1t=event.xfor i in range (header_widths): if t>0: t=t-self.form_bom_line_widths[i] else: index=i-1 breakif index!=-1: c
Drop ~ Today.
Before touching a bit of tkinter, GUI programming a little interest, so on their own thinking to write a small program (haha, too small can not be small program). Well, after all, it's all about the automated tests, so it's a matter of having an automated test. In last week's blogger's notes, there was a solution to the validation code encountered when writing an automated logon script.
Before we mentioned four solutions, let's review:
Source code from http://www.brunningonline.net/simon/blog/archives/SysTrayIcon.py.html
In fact, this source code can be used directly, but it does not take into account the combination of the tray and other programs, but a separate tray. Most of the cases where pallets are used are GUI programs. I use tkinter. Therefore, some modifications were made:
#-*-Coding: GBK-*-# module: javasrayicon. PY # Synopsis: Windows System Tray Icon. # programmer: Simo
Python Gui-tkinter Fonts: The first element as a tuple is the font family, the size of a point, optionally a string that contains one or more bold, italic, underlined style modifiers, bold.there can be up to three ways to specify a type style.Simple tuple font:As the first element of a tuple is the font family, the size of a point, you can choose a string that contains one or more bold, italic, underlined style modifiers, bold.Example:
("Helv
You want to make a simple Python script editor where the text input Code section is implemented using the text control in Tkinter.But the question is, how do you achieve highlighting? Refer to Python's own editor: code in the Python27/vidle folder.The implementation effect Is:One of the main ideas is that in text every input line of code, all through regular matching, to find whether it is necessary to highlight the effect, the reason is very simple, but the problem is that when using the text c
DIRECTORY CONTENTS ...') self.top.update () dirlist= Os.listdir (Tdir)#list all files under file directory TdirDirlist.sort ()#SortOs.chdir (Tdir)#set the current working directory to TdirSelf.dirl.config (TEXT=OS.GETCWD ())#configuration To set the second label content as the current working directorySelf.dirs.delete (0, END)#Delete the contents of the following table boxes in the old directorySelf.dirs.insert (END, Os.curdir)#Add the current directory at the end of the new directory list boxS
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.