質問編集履歴

1

不要なコードを消去しました。

2018/11/30 04:17

投稿

GeekTK
GeekTK

スコア14

test CHANGED
File without changes
test CHANGED
@@ -54,12 +54,6 @@
54
54
 
55
55
 
56
56
 
57
- for child in self.mainframe.winfo_children():
58
-
59
- child.grid_configure(padx=5, pady=5)
60
-
61
-
62
-
63
57
  def open_examset(self):
64
58
 
65
59
  ttk.Label(self.mainframe, text="FileName",
@@ -69,18 +63,6 @@
69
63
  ttk.Label(self.mainframe, text="Key Image",
70
64
 
71
65
  font=("", 15)).grid(column=2, row=3, columnspan=4)
72
-
73
-
74
-
75
-
76
-
77
- ttk.Button(self.mainframe, text="Analyze Key", command=self.analyze_key).grid(column=1, row=4)
78
-
79
- ttk.Button(self.mainframe, text="Auto-score Exam", command=self.auto_score_exam).grid(column=1, row=5)
80
-
81
- ttk.Button(self.mainframe, text="Auto-score Examset", command=self.auto_score_examset).grid(column=1, row=6)
82
-
83
- ttk.Button(self.mainframe, text="Save Score", command=self.save_score).grid(column=1, row=7)
84
66
 
85
67
 
86
68