public ButtonConfig(string value, string text, string menu, ButtonFunction btFunction) { m_Value = value; m_Text = text; m_BtFunction = btFunction; m_Menu = menu; DelegateEnableItems = EnableMainSoftKeys; }
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; }
public ButtonConfig() { m_Value = ""; m_Text = ""; m_BtFunction = ButtonFunction.Call; m_Menu = ""; DelegateEnableItems = EnableMainSoftKeys; }