- 论坛徽章:
- 1
|
本帖最后由 benjamin-xu 于 2010-11-14 16:40 编辑
##################################################################
#创建项目路径标签 ( test time )
path_label = Label(root,
text = 'Testtime: ',
font = ft)
#采用grid布局方式,下同
path_label.grid(row = 0, column = 0, sticky = W)
#创建项目路径输入框
path_entry = Entry(root, font = ft, width = 60, border = 2)
path_entry.grid(row = 0, column = 1, sticky = W)
#创建选择按钮
choice_btn = Button(root,
text = 'Select1',
font = ft,
width = 20,
command = choice)
choice_btn.grid(row = 0, column = 2, sticky = W)
#################################################################
#创建项目路径标签 ( test flow )
path2_label = Label(root,
text = 'Testflow: ',
font = ft)
#采用grid布局方式,下同
path2_label.grid(row = 1, column = 0, sticky = W)
#创建项目路径输入框
path2_entry = Entry(root, font = ft, width = 60, border = 2)
path2_entry.grid(row = 1, column = 1, sticky = W)
#创建选择按钮
choice2_btn = Button(root,
text = 'Select2',
font = ft,
width = 20,
command = choice)
choice2_btn.grid(row = 1, column = 2, sticky = W)
问题: select1 button选择的内容可以到testtime后的空格中,但是select2选择的内容却不能到testflow后的空格中,而是会添加到testtime后第一次选择的内容后面,这是为什么呢? |
|