diff --git a/releases/v1.3/tchMaterial-parser.py b/releases/v1.3/tchMaterial-parser.py index 6eae5df..53c385b 100644 --- a/releases/v1.3/tchMaterial-parser.py +++ b/releases/v1.3/tchMaterial-parser.py @@ -141,7 +141,7 @@ def download(): # 创建一个容器框架 container_frame = ttk.Frame(root) -container_frame.pack(anchor="center",expand="yes", padx=int(20 * scale), pady=int(20 * scale)) # 容器的中心位置放置,允许组件在容器中扩展,水平外边距40,垂直外边距40 +container_frame.pack(anchor="center", expand="yes", padx=int(20 * scale), pady=int(20 * scale)) # 容器的中心位置放置,允许组件在容器中扩展,水平外边距40,垂直外边距40 title_label = ttk.Label(container_frame, text="国家中小学智慧教育平台 电子课本解析", font=("微软雅黑", 16, "bold")) # 添加标题标签 title_label.pack(pady=int(5 * scale)) # 设置垂直外边距(跟随缩放) @@ -164,4 +164,4 @@ def download(): copy_btn = ttk.Button(container_frame, text="解析并复制", command=parseAndCopy) # 添加“解析并复制”按钮 copy_btn.pack(side="right", padx=int(40 * scale), pady=int(5 * scale), ipady=int(5 * scale)) # 设置水平外边距、垂直外边距(跟随缩放),设置按钮高度(跟随缩放) -root.mainloop() # 开始主循环 \ No newline at end of file +root.mainloop() # 开始主循环