質問編集履歴

1

指摘されて気が付きました。2つ目のコードにミスがありました。

2021/08/12 05:04

投稿

NinZIn2010
NinZIn2010

スコア2

test CHANGED
File without changes
test CHANGED
@@ -88,13 +88,13 @@
88
88
 
89
89
  ```python
90
90
 
91
- imag2 = wx.Image(soutai +r"\allpaper\paper.png")
91
+ imag3 = wx.Image(soutai +r"\allpaper\paper.png")
92
92
 
93
- img2 = imag2.Scale(900,600, wx.IMAGE_QUALITY_HIGH)
93
+ img3 = imag3.Scale(900,600, wx.IMAGE_QUALITY_HIGH)
94
94
 
95
- bmp2 = img2.ConvertToBitmap()
95
+ bmp3 = img3.ConvertToBitmap()
96
96
 
97
- button4 = wx.BitmapButton(self, -1, bmp2, pos=(0, 0))
97
+ wx.StaticBitmap(self, -1, bmp3, pos=(0,0), size=(900,600))
98
98
 
99
99
 
100
100