ARCed.Dialogs.UserStringForm.UserStringForm C# (CSharp) Метод

UserStringForm() публичный Метод

Creates a new instance of the form
public UserStringForm ( string title, string defaultText, string label, bool validate = false ) : System
title string The title of the form in the header
defaultText string Default text for the field
label string The text for the label
validate bool Flag to validate text for filenames
Результат System
        public UserStringForm(string title, string defaultText, string label, bool validate = false)
        {
            this.InitializeComponent();
            this.Text = title;
            this.textBoxString.Text = defaultText;
            this.labelString.Text = label;
            this._validate = validate;
        }