Exemplo n.º 1
0
 public ButtonConfig(string value, string text, string menu, ButtonFunction btFunction)
 {
     m_Value             = value;
     m_Text              = text;
     m_BtFunction        = btFunction;
     m_Menu              = menu;
     DelegateEnableItems = EnableMainSoftKeys;
 }
Exemplo n.º 2
0
 public ButtonConfig(string value, string text, string menu, ButtonFunction btFunction, EnableItems FuncEnable)
 {
     m_Value             = value;
     m_Text              = text;
     m_BtFunction        = btFunction;
     m_Menu              = menu;
     DelegateEnableItems = FuncEnable;
 }
Exemplo n.º 3
0
 public ButtonConfig()
 {
     m_Value             = "";
     m_Text              = "";
     m_BtFunction        = ButtonFunction.Call;
     m_Menu              = "";
     DelegateEnableItems = EnableMainSoftKeys;
 }