import tkinter as tk #导入模块 命名为 tk # 创建窗口 window = tk.Tk() # 调整窗口大小和位置,单位是像素 width, height = 500, 300 place_x, place_y = 100, 100 #位置以屏幕左上角为起始点(0,0) window.geometry(f'{width}x{height}+{place_x}+{place_y}') # 设置窗口标题 window.title(...
import sysfrom PyQt5.QtWidgets import QApplication, QMainWindow, QLabel# 创建应用程序对象app = QApplication(sys.argv)# 创建主窗口window = QMainWindow()window.setWindowTitle("My First PyQt5 App")window.setGeometry(100, 100, 300, 200) # 设置窗口位置和大小# 创建一个标签控件label = QLabel("...
label_name = tk.Lable(window_name , text = 'this is a Label') # 传参 var 为变量名 label_name = tk.Label(window_name , textvariable = var) 1. 2. 3. 4. 背景颜色[bg] label_name = tk.Label(window_name , text = 'this is a label' , bg = 'green') 1. 字体[font] label_n...
screenWidth = window.winfo_screenwidth() screenHeight = window.winfo_screenheight() # 计算主窗口在屏幕上的坐标 x = int((screenWidth - winWidth)/ 2) y = int((screenHeight - winHeight) / 2) # 设置主窗口标题 window.title("主窗体参数说明") # 设置主窗口大小 window.geometry("%sx%s+%s...
import tkinter as tk # Create a new window with the title "Address Entry Form" window = tk.Tk() window.title("Address Entry Form") # Create a new frame `frm_form` to contain the Label # and Entry widgets for entering address information. frm_form = tk.Frame(relief=tk.SUNKEN, border...
(R)) else: K='输入有误' key.set(K) window=tk.Tk() #创建窗体,实例化窗体 window.title("知乎 货币转换1.0") window.geometry("520x200+600+200") #初始窗体,前面的520x200表示大小,后面+600表示横向坐标,+200纵向坐标(宽x高+水平+竖直) Lb1= tk.Label(text="注:本程序仅限于RMB与USD类型的...
import sysfrom PyQt5.QtWidgets import QApplication, QWidget, QLabel, QPushButton, QVBoxLayoutclass MyWindow(QWidget):def __init__(self):super().__init__()self.initUI()def initUI(self):self.setWindowTitle("Hello, PyQt!")self.setGeometry(100, 100, 300, 200)# 创建一个垂直布局管理器la...
pygame.init()window_title = "My GUI App"window_size = (800, 600)window = pygame.display.set_mode(window_size)pygame.display.set_caption(window_title)现在我们已经创建了一个窗口,接下来是添加一些基本元素。首先,添加一个背景颜色,这样我们可以看到窗口是否正常工作。background_color = (230, 230,...
#第1步,实例化object,建立窗口window window=tk.Tk() #第2步,给窗口的可视化起名字 window.title('My Window') #第3步,设定窗口的大小(长 * 宽) window.geometry('500x300')# 这里的乘是小x #第4步,在图形界面上设定标签 l=tk.Label(window, text='你好!this is Tkinter', bg='green', font=(...
import tkinter as tk window = tk.Tk() window.title('微信公众号:愤怒的it男') window.iconbit...