style(DLPilot): 关于弹窗补作者/硬件正式命名; 卡片标题行垂直居中

This commit is contained in:
2026-09-12 03:21:20 +08:00
parent cda1e72f17
commit b36dd3911f
3 changed files with 13 additions and 10 deletions
+7 -6
View File
@@ -117,15 +117,15 @@ class App(ctk.CTk):
border_color=('gray70', 'gray30'))
head = ctk.CTkFrame(card, fg_color='transparent')
head.pack(fill='x', padx=12, pady=(8, 0))
ctk.CTkLabel(head, text=title, font=BOLD, anchor='w').pack(side='left')
ctk.CTkLabel(head, text=title, font=BOLD, anchor='w').pack(side='left', fill='y')
if right_widget is not None: # 自定义控件(如 电流读数+查电流)
right_widget.pack(side='right')
right_widget.pack(side='right', fill='y')
if right_label is not None:
ctk.CTkLabel(head, textvariable=right_label,
text_color='gray60').pack(side='right')
text_color='gray60').pack(side='right', fill='y')
if button:
ctk.CTkButton(head, text=button, width=92, height=24,
command=command).pack(side='right')
ctk.CTkButton(head, text=button, width=92,
command=command).pack(side='right', fill='y')
content = ctk.CTkFrame(card, fg_color='transparent')
content.pack(fill='both', expand=True, padx=12, pady=(2, 10))
return card, content
@@ -645,7 +645,8 @@ class App(ctk.CTk):
for line in ('EDID 查看 / 逐字节解析 / 分辨率切换',
'测试图案与校准图全屏投屏',
'RS485 光机控制: 开关光机 / 光强 / 定时 / 温度 / TEC',
'配套硬件: LT8619C → DLPC3421 转接板 (GD32E230 网关)'):
'配套硬件: DLPilotHDMI-0.16" DLP 转接板)',
'作者: Hulk'):
ctk.CTkLabel(box, text='· ' + line, anchor='w').pack(anchor='w', pady=1)
ctk.CTkLabel(box, text='仓库: ' + REPO_URL, anchor='w',
text_color='#3B8ED0').pack(anchor='w', pady=(12, 0))