Currently received a small task to do a Windows system under the file retrieval, Replication tool. The task uses Python's own GUI tool Tkinter writing interface, after testing, functional stability.
The specific use of the following methods:
(1) above, Box 3 is a tkinter write file retrieval, Replication tool, where "file source path" is entered in box 1 in the path information, "File target path" entered
Use the Tkinter module to create a simple GUI program.
Tkinter's widgets are: Button, Canvas, Checkbutton, Entry, Frame, Label, Listbox, Menu, Menubutton, Message, Radiobutton, Scales, Scrollbar, TEXT, TopLevel and so on.
Cases:
The code is as follows:
# This program displays an empty window.Import Tkinterdef main ():Main_window = tkinter.tk ()Tkinter.mainloop ()Main ()
Example 2:
The code is as follows:
Import TkinterClass Mygui:def __init__ (self)
1 #Gui:tkinter Use2 #Change the font size in a label by adjusting the scroll bar3 ImportTkinter as TK4 5 6 defResize (ev=None):7 " "change the label font size" "8Label.config (font='Helvetica-%d Bold'%scale.get ())9 Ten Onetop = tk. Tk ()#instantiating a Tkinter object ATop.geometry ('250x150')#Set Window Size -Top.title ('Slide Settings')#Set Window caption - the #Label Control -label = Tk. Label (Top, text='Hello World', font='Helvetica-12 Bol
#Tkinter Base creates a line of text and sets the form's title Label,titleImportTkinter as Tkapp= Tk. Tk ()#instantiate a TK to accommodate the entire GUI programApp.title ("test01")#set the title bar of a form#set label primary key, display text, icon and pictureThelabel= Tk. Label (app, Text ="This is a window") Thelabel.pack ()#automatically adjust the size and position of the primary key#main time loop of window, with Tkiner takeoverApp.mainloop (
It's probably one of those things that comes with a server through an application.1.GUIIt's tkinter.1 #-*-coding:utf-8-*-2 fromTkinterImport*3 ImportTkinter.filedialog4 ImportRequests5 6 7 defUpload ():8 Print('Upload')9Selectfilename = Tkinter.filedialog.askopenfilename (title='Select File')#Select FileTen OneR = Requests.post ('Http://127.0.0.1:8000/upload', files={'file': Open (Selectfilename,'RB')}) A Print(R.content.decode ('Utf-8')
correspondingFor example, if the TTK TreeView is clicked, the clicked Row is selected, but the selected row is not obtained by treeview.selection () [0]! Instead, the previously selected row. can refer to the following here.Response functionEvent_handler (Event,*args)Event parameterThe event parameter has the following properties:[' __doc__ ', ' __module__ ', ' char ', ' delta ', ' height ', ' keycode ', ' keysym ', ' keysym_num ', ' num ', ' send_event ', ' Serial ', ' s Tate ', ' Time ', ' ty
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
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
All kinds of window bar, quite simple,
Look at the tutorials, the tutorials URL click on the Open link
Tried a variety of window.
Source:
Import tkinter.messagebox
import tkinter as TK
window=tk. Tk ()
window.title (' menu ')
window.geometry (' 400x400 ')
def hit ():
#box系列
# Tk.messagebox.showinfo (title= ' Hi ', message= ' So is a MsgBox ')
#tk. messagebox.showwarning (title= ' warning '), Message= ' So is a Warningbox ')
#tk
1, fonts (font)
General format: (' Times-10 bold ')
(' Times ', ten, ' bold ', ' italic ') in turn, indicate font, font size, bold, italic
2, the use of pictures (image)
Photo=photoimage (file= ' path.gif ')
Canvas = Canvas.create_image (Image=photo)
Tkinter only supports a few other formats, such as GIF and BMP, you want to insert other format pictures you need to import Pil;pip install a Third-party class library pillow
From PIL import image,imagetk
stipple= "gray25". has no effect unless the fill have been set to some color. See section 4.7, "Bitmaps".
Tags
The tags to is associated with the object, as a sequence of strings. See section 6.1.4, "Canvas tags".
Width
The Width of the border around the outside of the ellipse. Default is 1 pixel; See sections 4.1, "Dimensions" for possible values. If you set this to zero, the border is not appear. If you set this to zero and make the fill transparent
Event:1 def evclear (): 2 lhistory['text'] = ehello.get ()3 ehello.delete (0, Tk. END)DescriptionThe text within the lhistory tag becomes the content of the Ehello input area, and then the text of the Ehello area is deleted.You can set the label text using a dictionary-style access method.Delete () uses 0 as the first argument, the description text begins, and the second parameter Tk. END. Represents a special value that represents the end of the text.python-Module-
1 #!/usr/bin/env python2 #-*-coding:utf-8-*-3 4 ImportTkinter as TK5 6 classFullscreenapp (object):7 def __init__(Self, master, * *Kwargs):8Self.root =Master9 #self.tk.attributes ('-zoomed ', True) # This just maximizes it so we can see the window. It 's nothing-to-do with fullscreen.TenSelf.frame =tk. Frame (self.root) One Self.frame.pack () ASelf.state =False -Self.root.bind ("", Self.toggle_fullscreen) -Self.root.bind ("", Self.end_fullscreen) the - defToggle_fullscreen (Self
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=
that constitute the GUI application. They may be text labels, buttons, and lists. These independent GUI components are called controls. Therefore, when we create a top-level window, we only need a place to place all the controls. In Python, it is generally written as the following statement. Top = tkinter. Tk () # or just Tk () with "from Tkinter import *"Objec
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.