久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

<small id='hMlqV'></small><noframes id='hMlqV'>

    • <bdo id='hMlqV'></bdo><ul id='hMlqV'></ul>

    1. <tfoot id='hMlqV'></tfoot>

      <legend id='hMlqV'><style id='hMlqV'><dir id='hMlqV'><q id='hMlqV'></q></dir></style></legend>
    2. <i id='hMlqV'><tr id='hMlqV'><dt id='hMlqV'><q id='hMlqV'><span id='hMlqV'><b id='hMlqV'><form id='hMlqV'><ins id='hMlqV'></ins><ul id='hMlqV'></ul><sub id='hMlqV'></sub></form><legend id='hMlqV'></legend><bdo id='hMlqV'><pre id='hMlqV'><center id='hMlqV'></center></pre></bdo></b><th id='hMlqV'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='hMlqV'><tfoot id='hMlqV'></tfoot><dl id='hMlqV'><fieldset id='hMlqV'></fieldset></dl></div>
      1. Kivy CheckBox 看起來像實心黑框(不是復選框)

        Kivy CheckBox Looks Like Solid Black Box (Not a Checkbox)(Kivy CheckBox 看起來像實心黑框(不是復選框))
            • <bdo id='dGJ7X'></bdo><ul id='dGJ7X'></ul>

                <i id='dGJ7X'><tr id='dGJ7X'><dt id='dGJ7X'><q id='dGJ7X'><span id='dGJ7X'><b id='dGJ7X'><form id='dGJ7X'><ins id='dGJ7X'></ins><ul id='dGJ7X'></ul><sub id='dGJ7X'></sub></form><legend id='dGJ7X'></legend><bdo id='dGJ7X'><pre id='dGJ7X'><center id='dGJ7X'></center></pre></bdo></b><th id='dGJ7X'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='dGJ7X'><tfoot id='dGJ7X'></tfoot><dl id='dGJ7X'><fieldset id='dGJ7X'></fieldset></dl></div>
                <tfoot id='dGJ7X'></tfoot>
                • <small id='dGJ7X'></small><noframes id='dGJ7X'>

                  <legend id='dGJ7X'><style id='dGJ7X'><dir id='dGJ7X'><q id='dGJ7X'></q></dir></style></legend>
                    <tbody id='dGJ7X'></tbody>
                • 本文介紹了Kivy CheckBox 看起來像實心黑框(不是復選框)的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  我正在制作一個 BoxLayout 小部件(orientation = 'horizo??ntal'),其中包含三個小部件、一個標簽、一個文本框和一個復選框.

                  I am making a BoxLayout widget (orientation = 'horizontal') that contains three widgets inside of it, a label, a text box, and a check box.

                  thisRow = BoxLayout(orientation='horizontal')
                  l = Label(text='Enter plate 1:
                  (Plate #)')
                  t = TextInput(text = 'this is a text box')
                  c = CheckBox()
                  thisRow.add_widget(l)
                  thisRow.add_widget(t)
                  thisRow.add_widget(c)
                  

                  這會產生以下小部件 (thisRow):

                  This produces the following widget (thisRow):

                  勾選后...

                  最右邊的黑框實際上是復選框,并且可以正常工作,但是用戶無法知道它實際上是一個復選框.我希望中間有一個較小的空方塊,如圖 這里的圖片所示.

                  The rightmost black box is actually the checkbox, and works functionally, however there is no way for the user to know that it is in fact a checkbox. I would expect a smaller empty square in the middle, as is depicted in pictures here.

                  如何獲得傳統的復選框圖像(較小的空方框)?或者一般來說,我怎樣才能更明顯地表明該框是一個復選框,而不僅僅是一個空標簽?

                  How do i get the traditional checkbox image (smaller empty square box)? Or generally, how can I make it more obvious that the box is a check box and not just an empty label?

                  謝謝

                  推薦答案

                  這是一個非常有趣的問題,Malonge 很好地嘗試了它.現在(1.9.2-dev) CheckBox 的井上仍然有固定的大小,稱之為背景.它是 Widget 從 atlas 中獲取的圖像,并在狀態更改時更改.因此,直到 現在 之前,還沒有明確的方法可以做到這一點.這是一個例子.很快在 master 上會有 CheckBox(color=[r,g,b,a]) 選項.謝謝;)

                  This is really interesting question and Malonge tried it in a good way. Right now(1.9.2-dev) there is still fixed size on CheckBox's well, call it a background. It's an image that Widget takes from atlas and changes if the state changes. Therefore until now there was no clear way how to do it. Here is an example. Soon on master there'll be CheckBox(color=[r,g,b,a]) option. Thanks ;)

                  from kivy.lang import Builder
                  from kivy.base import runTouchApp
                  from kivy.uix.boxlayout import BoxLayout
                  Builder.load_string('''
                  <CheckBoxBG>:
                      Label:
                      TextInput:
                      CheckBox:
                          canvas.before:
                              Color:
                                  rgb: 1,0,0
                              Rectangle:
                                  pos:self.center_x-8, self.center_y-8
                                  size:[16,16]
                              Color:
                                  rgb: 0,0,0
                              Rectangle:
                                  pos:self.center_x-7, self.center_y-7
                                  size:[14,14]
                  ''')
                  class CheckBoxBG(BoxLayout):pass
                  runTouchApp(CheckBoxBG())
                  

                  這篇關于Kivy CheckBox 看起來像實心黑框(不是復選框)的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                  【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  How to make a discord bot that gives roles in Python?(如何制作一個在 Python 中提供角色的不和諧機器人?)
                  Discord bot isn#39;t responding to commands(Discord 機器人沒有響應命令)
                  Can you Get the quot;About mequot; feature on Discord bot#39;s? (Discord.py)(你能得到“關于我嗎?Discord 機器人的功能?(不和諧.py))
                  message.channel.id Discord PY(message.channel.id Discord PY)
                  How do I host my discord.py bot on heroku?(如何在 heroku 上托管我的 discord.py 機器人?)
                  discord.py - Automaticaly Change an Role Color(discord.py - 自動更改角色顏色)
                    <tfoot id='OEbjr'></tfoot>
                        <tbody id='OEbjr'></tbody>

                            <bdo id='OEbjr'></bdo><ul id='OEbjr'></ul>

                            <i id='OEbjr'><tr id='OEbjr'><dt id='OEbjr'><q id='OEbjr'><span id='OEbjr'><b id='OEbjr'><form id='OEbjr'><ins id='OEbjr'></ins><ul id='OEbjr'></ul><sub id='OEbjr'></sub></form><legend id='OEbjr'></legend><bdo id='OEbjr'><pre id='OEbjr'><center id='OEbjr'></center></pre></bdo></b><th id='OEbjr'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='OEbjr'><tfoot id='OEbjr'></tfoot><dl id='OEbjr'><fieldset id='OEbjr'></fieldset></dl></div>
                            <legend id='OEbjr'><style id='OEbjr'><dir id='OEbjr'><q id='OEbjr'></q></dir></style></legend>

                            <small id='OEbjr'></small><noframes id='OEbjr'>

                            主站蜘蛛池模板: 日韩精品一区二区三区在线播放 | 欧美二区三区 | 国产91丝袜在线播放 | 久久国产精品亚洲 | 综合久久综合久久 | 成人在线播放 | 九九热精品视频 | 日韩久久综合网 | 国产xxx在线观看 | 日韩在线播放一区 | 欧美亚洲一区二区三区 | 国产精品一区二区不卡 | 精品国产一区二区三区久久 | 国产精品久久久久久久久久久久久久 | 中文字幕日韩一区 | 国产乱码高清区二区三区在线 | 免费国产一区 | 国产日韩精品一区 | 亚洲成av人片在线观看 | 久久国产精品一区二区 | 亚洲一区二区三区免费视频 | 99精品在线免费观看 | 美日韩中文字幕 | 天天看天天爽 | 本道综合精品 | 一级高清 | 欧美在线观看一区 | 日韩视频中文字幕 | 看av在线 | 青娱乐一区二区 | 天天射影院 | 欧美xxxx性xxxxx高清 | 天天天天操| 亚洲成人免费视频 | 日一区二区 | 成人免费看片 | 午夜日韩| 91国内外精品自在线播放 | 亚洲欧美第一视频 | 精品国产视频 | 国产欧美精品一区二区色综合 |