質問編集履歴
3
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -36,6 +36,8 @@
|
|
36
36
|
|
37
37
|
return tkinter.filedialog.asksaveasfile(mode='w', **options)
|
38
38
|
|
39
|
+
```
|
40
|
+
|
39
41
|
|
40
42
|
|
41
43
|
上記、関数を下記でファイル名を渡して呼んでいるだけです。
|
@@ -44,4 +46,4 @@
|
|
44
46
|
|
45
47
|
document_1.write(print_document)
|
46
48
|
|
47
|
-
print.saveBox(print_document)
|
49
|
+
print.saveBox(print_document)
|
2
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -42,4 +42,6 @@
|
|
42
42
|
|
43
43
|
# 保存
|
44
44
|
|
45
|
+
document_1.write(print_document)
|
46
|
+
|
45
47
|
print.saveBox(print_document) ```
|
1
呼び出し追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -11,6 +11,8 @@
|
|
11
11
|
|
12
12
|
|
13
13
|
```Python
|
14
|
+
|
15
|
+
|
14
16
|
|
15
17
|
# ファイル保存ダイアログ
|
16
18
|
|
@@ -32,4 +34,12 @@
|
|
32
34
|
|
33
35
|
tkinter.filedialog.LoadFileDialog
|
34
36
|
|
35
|
-
return tkinter.filedialog.asksaveasfile(mode='w', **options)
|
37
|
+
return tkinter.filedialog.asksaveasfile(mode='w', **options)
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
上記、関数を下記でファイル名を渡して呼んでいるだけです。
|
42
|
+
|
43
|
+
# 保存
|
44
|
+
|
45
|
+
print.saveBox(print_document) ```
|