Tkinter is the standard GUI library in the python release version. That is to say, tkinter can be used after python is installed by default.
I have referenced a tutorial and wrote someCodeTry:
# File: test. pyfrom tkinter import * class app: def _ init _ (self, Master): Self. frame = frame (master) self. frame. pack () self. button = button (self. frame, text
, using width and heigth to specify the size of the control, what happens if the specified size does not meet the requirements of the text? The following code:Label (ROOT,BG = ' Welcome to jcodeer.cublog.cn ', width = 10,height = 3). Pack ()Run the program, the part of the text that goes beyond the label is truncated, and the usual method is to use the Wrap feature, and when the text length is greater than the width of the control, the text should be displayed on the next line, and TK will not b
') or Cv2.cv.FOURCC (* ' MJPG ').The following code captures the video from the camera, rotates each frame horizontally and saves it.ImportNumPy as NPImportCv2cap=Cv2. Videocapture (0)#Define The codec and create Videowriter objectFOURCC = Cv2. VIDEOWRITER_FOURCC (*'XVID') out= Cv2. Videowriter ('Output.avi', FourCC, 20.0, (640,480)) while(cap.isopened ()): RET, Frame=Cap.read ()ifret==True:frame=Cv2.flip (frame,0)#write the flipped frameOut.write (frame) cv2.imshow ('Frame', frame)ifCv2.waitke
-selected button state
Scale
A range control that displays a numeric scale that is a range of numbers for the output limit
Scrollbar
A scrollbar control that is used when the content exceeds a visual area, such as a list box ...
Text
Text control; for displaying multiple lines of text
TopLevel
A container control that provides a separate dialog box, similar to a frame
Spinbox
Input controls, similar to
If you want to use Python to develop a graphical interface, there are many tools to choose from, each with the pros and cons, previously used Wxpython+boa-constructor, has not been clear.
New understanding of the next PyQt4, seems to use this person also more, so decided to start learning this. Version:pyqt-py2.7-x86-gpl-4.9.1-1.exe
PyQt4 takes a QT designer and uses it to create an interface, layout controls such as Form,button,text, and so on, using
= printspin# callback function ) Sb.pack () Root.mainloop ()5. Delete and insertroot = Tk () #作用是删除values第一位def printspin (): sb.delete (0) #在索引位置0处删除 print (Sb.get ()) sb = Spinbox (Root, from_ = 1, #最小值 to = 9999, #最大值 increment = 1, command = Printspin #回调函数 ) # The following two sentences are assigned the initial value of the Spinbox 9988. Read a good document, d
centerSticky=tk.ne (upper right corner) tk.se (lower right) TK.SW (lower left) Tk. NW (upper left corner)Sticky=tk. N (upper middle), Tk. E (middle right), Tk. S (lower middle), Tk. W (left middle).Sticky=tk. N+tk. S centered and stretched verticallySticky=tk. E+tk. W Center and stretch horizontallySticky=tk. N+tk. E+tk. S+tk. W Stretch Fill table cell2.2 Form RedrawUse the grid layout to populate the component with the entire cell and redraw it as the size of the form changes#-*-Coding:utf-8-*
Implemented on Windwos: using the Wxpython module#!/usr/bin/env python# encoding:utf-8import wx# Create an Open button to trigger the event corresponding to the function Def load (event): File = open (filename. GetValue ()) contents. SetValue (File.read ()) File.close () #创建save按钮触发的事件对应的函数def Save (Event): File = open (filename. GetValue (), ' W ') file.write (contents. GetValue ()) file.close () #创建应用程序对象app = WX. APP () #创建窗口 (frame instance) win =
construction Methods: Gauge (Parent,id,range=100,pos,size,style=ga_horizontal)Range refers to the value of an end point specified when the progress bar is loaded, and the program will confirm that the current progress bar should be more than full. The style specifies whether the load is loaded horizontally or vertically, and is loaded vertically ga_verticalUnlike some other components, it is not enough to construct the progress bar in the window alone, so the progress bar is static. The progres
TK InterFirst window from Import *Tk (). Mainloop ()The current thread calls Mainloop () and changes into the event loop, and the code behind is blocked.If you want to create multiple windows from Import *fromimport * for in range (5): Thread (Target= Tk (). Mainloop). Start ()print 2333sys.stdout.flush ()#2333Create buttonThe Relxx property represents the relative value of the size of the main window 0~1 from Import *top=Tk () b=button (top,text='click') b.place ( Relx=0, rely=0.5, relwidth=
+ '/' + self.dir.encode (' GBK ')) Self.imgList.sort ( SELF.CMP) def setchapterpage (self,page,chapter): Self.nowpage = Pageif Self.flag = = 0: # Execute code that should be executed in the constructor Self.flag = 1self . Setdictready () if Self.nowchapter! = Chapter: # If you do not need to change the current folder, do not reset the working directory Self.nowchapter = Chapterself.setdictready () Self.target = self.generateaddr (page,chapter) self.sendAddr.emit (QstrinG (Self.target), Self.now
1. First entry procedureFrom tkinter Import *root = Tk () Entry (Root). Pack () Root.mainloop ()2. Set the initial value in entry, use Textvariable to bind the variable to entryFrom tkinter Import *root = Tk () e = Stringvar () entry = entry (root,textvariable = e) e.set (' Input your text here ') Entry.pack () Root.mainloop ()In the previous article, I used textvariable to change the text value in Buttun.3. Set as read-only entry.Another more useful property of entry, which is set to read-only,
()) v = stringvar () scale (root, from_ = 0, #设置最小值 to = 100.0, #设置最大值 Resolution = 0.0001, #设置步距值 Orient = horizontal, #设置水平方向 variable = V, #绑定变量 command = Printscale #设置回调函数 ). Pack () Print (V.get ()) Root.mainloop () This callback function has a parameter, this value is the value of the current scale, each move a step will be called once this function, only ensure that the last one will definitely be
experience in a lot of practice. is one of the most recognized and authoritative figures in the Python and open source technology community. Developed a well-known open source Python library--pandas for data analysis, which has been widely praised by users.Here is still to recommend my own build group: 483546416, the group is learning Python development, if you
August 20, 2014 "Concise Python Programming" Core notes (note)Yesterday and today in two days time. The book "Concise Python Programming" is finished, including the code on the book. Now record the core notes so that we can review them later.The first chapter briefly introducesPython language is one of the few programm
August 20, 2014 "Concise Python Programming" Core notes (note)Two days yesterday and today, the book "Concise Python Programming" is finished, including the code in the book. Now record the core notes so that we can review them later.Introduction to the first chapterPython language is one of the few programming languag
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.