我是初学者。我有kv代码:
& lt; Pat_layout>
BoxLayout:
orientation: "vertical"
size: root.width, root.height
Label:
id: name_label
text: "Exercises Appear Here"
font_size: 32
Image:
id: image_window
size_hint: (1, .5)
source: 'images/dim_6543.jpg'
Button:
background_normal: ''
background_color: 0, .3, .4, .95
size_hint: (1, .5)
font_size: 32
text: "Press For Next Exercise"
on_press: root.press()
我得到这个:输出带有标签、图像、按钮的图像
和弦图的背景应为白色。我花了几个小时,几天的时间去寻找和尝试。我怎样才能让中间部分,图像,在和弦图周围显示一个白色的背景?和弦图没有任何周围背景;它被裁剪成一个图表。
任何帮助都将非常感激....
谢谢。
您想要绘制一个白色矩形填充图像。它的代码类似于:
Image:
canvas.before:
Color:
rgba: 1, 1, 1, 1
Rectangle:
pos: self.pos
size: self.size
太棒了,谢谢你!我复制了你的代码,它工作得很好!谢谢你!
吉姆