New shortcut functions Button - B, Btn, Butt. InputText - I. Button Text converted to string when initialized
This commit is contained in:
parent
644b597263
commit
816a7341c5
4 changed files with 37 additions and 8 deletions
|
@ -578,7 +578,7 @@ class InputText(Element):
|
|||
# ------------------------- INPUT TEXT Element lazy functions ------------------------- #
|
||||
In = InputText
|
||||
Input = InputText
|
||||
|
||||
I = InputText
|
||||
|
||||
# ---------------------------------------------------------------------- #
|
||||
# Combo #
|
||||
|
@ -1343,7 +1343,7 @@ class Button(Element):
|
|||
self.FileTypes = file_types
|
||||
self.TKButton = None
|
||||
self.Target = target
|
||||
self.ButtonText = button_text
|
||||
self.ButtonText = str(button_text)
|
||||
self.ButtonColor = button_color if button_color else DEFAULT_BUTTON_COLOR
|
||||
self.TextColor = self.ButtonColor[0]
|
||||
self.BackgroundColor = self.ButtonColor[1]
|
||||
|
@ -1539,6 +1539,12 @@ class Button(Element):
|
|||
super().__del__()
|
||||
|
||||
|
||||
# ------------------------- Button lazy functions ------------------------- #
|
||||
B = Button
|
||||
Btn = Button
|
||||
Butt = Button
|
||||
|
||||
|
||||
def convert_tkinter_filetypes_to_wx(filetypes):
|
||||
wx_filetypes = ''
|
||||
for item in filetypes:
|
||||
|
@ -1546,6 +1552,10 @@ def convert_tkinter_filetypes_to_wx(filetypes):
|
|||
wx_filetypes += filetype
|
||||
return wx_filetypes
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------- #
|
||||
# ProgreessBar #
|
||||
# ---------------------------------------------------------------------- #
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue