MonoGameUi.Textbox.Textbox C# (CSharp) Méthode

Textbox() public méthode

Erzeugt eine neue Instanz der Textbox-Klasse
public Textbox ( BaseScreenComponent manager, string style = "" ) : System
manager BaseScreenComponent
style string
Résultat System
        public Textbox(BaseScreenComponent manager, string style = "")
            : base(manager, style)
        {
            TextColor = Color.Black;
            TabStop = true;
            CanFocus = true;
            Padding = Border.All(5);

            ApplySkin(typeof(Textbox));
        }