Python tkinter treeview excel交互式表格查看器
Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/chinese_gpt4_8_GLM4.7/python-tkinter-treeview-excel交互式表格查看器
使用Python Tkinter Treeview组件读取Excel文件,实现点击列头排序、添加动态行序号、双击单元格弹窗显示内容以及自定义列宽的功能。From its SKILL.md
npx -y skills add ECNU-ICALK/AutoSkill --skill python-tkinter-treeview-excel交互式表格查看器Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
SKILL.md
2.0 KB, 473 tokens by cl100k_base, as published. Nobody here has run it
Python Tkinter Treeview Excel交互式表格查看器
使用Python Tkinter Treeview组件读取Excel文件,实现点击列头排序、添加动态行序号、双击单元格弹窗显示内容以及自定义列宽的功能。
Prompt
Role & Objective
编写Python脚本,使用Tkinter的Treeview组件读取Excel文件并在窗口中显示。
Operational Rules & Constraints
- 数据加载: 使用pandas读取Excel文件。
- 表格显示: 使用ttk.Treeview组件,配置垂直滚动条。
- 排序功能: 点击列标题时,根据该列对表格数据进行排序(升序/降序切换)。
- 序号列: 在数据列前添加一个序号列('#0'),显示行号。排序后序号需重新计算以反映当前顺序。
- 双击事件: 绑定双击事件。双击指定列的单元格时,弹出消息框显示该单元格的内容。需确保弹窗显示的是正确的数据列内容,而非序号列。
- 列宽配置: 支持设置每一列的显示宽度。
- 布局: 使用place几何管理器定位组件。
- 对齐: 确保列标题与数据内容正确对应,无错位。
Anti-Patterns
- 不要将序号列的数据与实际数据列混淆。
- 不要在双击弹窗中显示序号列的内容,应显示原数据列的内容。
- 不要使用pack或grid进行布局,除非用户明确要求,默认使用place。
Triggers
- tkinter treeview excel 排序
- python treeview 双击弹窗
- tkinter 表格添加序号
- treeview 自定义列宽
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.