WorldEditor.NZone.EncounterGroup.frmSelectObject.frmSelectObject C# (CSharp) 메소드

frmSelectObject() 공개 메소드

public frmSelectObject ( string Caption, string SomeText ) : System
Caption string
SomeText string
리턴 System
        public frmSelectObject(string Caption, string SomeText)
        {
            InitializeComponent();
            this.Text = Caption;
            if (string.IsNullOrEmpty(SomeText))
                this.lblSomeText.Text = "";
            else
                this.lblSomeText.Text = SomeText;
        }