第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何在kivy中更改gridLayout中特定按鈕的顏色

如何在kivy中更改gridLayout中特定按鈕的顏色

GCT1015 2023-06-06 16:11:27
我正在嘗試用 Python 和 Kivy 制作 tambola 硬幣拾取器,我是 kivy 的新手。在這里,我創(chuàng)建了從 1 到 90 的網(wǎng)格布局按鈕。我想在選擇數(shù)字時(shí)更改網(wǎng)格布局中特定按鈕的顏色。我在使用新的彩色按鈕更新網(wǎng)格布局時(shí)遇到問(wèn)題。#!/usr/bin/pythonfrom kivy.app import Appfrom kivy.uix.button import Buttonfrom kivy.uix.label import Labelfrom kivy.uix.floatlayout import FloatLayoutfrom kivy.uix.gridlayout import GridLayout?from kivy.graphics import Colorimport randomcoins = random.sample(range(1,91), 90)#print(coins)picked_coins=[]current_coin=0#print(picked_coins)class Housie(FloatLayout):? ? def __init__(self,**kwargs):? ? ? ? super(Housie,self).__init__(**kwargs)? ? ? ? self.title = Label(text="Housie Coin Picker",font_size = 50,size_hint=(1, .55),pos_hint={'x':0, 'y':.45})? ? ? ? self.main_label = Label(text = "Click PICK NUMBER", size_hint=(1, .60),pos_hint={'x':0, 'y':.35})? ? ? ? self.picked_ones = Label(text = "picked_coins", size_hint=(1, .40),pos_hint={'x':0, 'y':.40})? ? ? ? self.help_button = Button(text = "PICK NUMBER", size_hint=(.3, .1),pos_hint={'x':.65, 'y':.1},on_press = self.update)? ? ? ? self.add_widget(self.title)? ? ? ? self.add_widget(self.main_label)? ? ? ? self.add_widget(self.picked_ones)? ? ? ? self.add_widget(self.help_button)? ? ? ? self.add_widget(self.userinterface())? ? def userinterface(self):? ? ? ? self.layout = GridLayout(cols = 10,size_hint=(.50, .50))? ? ? ? for i in range(1,91):? ? ? ? ? ? self.layout.add_widget(Button(background_color=(1,0,0,1),text =str(i)))? ? ? ? return self.layout? ? def update(self,event):? ? ? ? for coin in coins:? ? ? ? ? ? if coin not in picked_coins:? ? ? ? ? ? ? ? current_coin=coin? ? ? ? ? ? ? ? picked_coins.append(coin)? ? ? ? ? ? ? ? self.main_label.text = str(coin)? ? ? ? ? ? ? ? for i in self.layout.children:? ? ? ? ? ? ? ? ? ? if i.text == str(coin):? ? ? ? ? ? ? ? ? ? ?#What to do Here?
查看完整描述

1 回答

?
鴻蒙傳說(shuō)

TA貢獻(xiàn)1865條經(jīng)驗(yàn) 獲得超7個(gè)贊

您可以Button像這樣將一個(gè)方法綁定到每個(gè)方法:


def userinterface(self):

    self.layout = GridLayout(cols = 10,size_hint=(.50, .50))

    for i in range(1,91):

        self.layout.add_widget(Button(background_color=(1,0,0,1),text=str(i), on_release=self.butt_pressed))

    return self.layout


def butt_pressed(self, button):

    button.background_normal = ''

    button.background_color = (1,0,0,1)

Thbutt_pressed()方法更改了 pessed 的背景顏色Button。


查看完整回答
反對(duì) 回復(fù) 2023-06-06
  • 1 回答
  • 0 關(guān)注
  • 221 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)