LongoMatch.Gui.Panel.WelcomeButton.WelcomeButton C# (CSharp) Method

WelcomeButton() public method

public WelcomeButton ( VAS.Core.Common.Image icon, string text, System.Action func ) : System
icon VAS.Core.Common.Image
text string
func System.Action
return System
        public WelcomeButton(Image icon, string text, Action func)
        {
            Icon = icon;
            Text = text;
            Func = func;
            Name = null;
        }

Same methods

WelcomeButton::WelcomeButton ( string name, string text, System.Action func ) : System
WelcomeButton