ARCed.Controls.NoteTextBox.NoteTextBox_Load C# (CSharp) Метод

NoteTextBox_Load() приватный Метод

private NoteTextBox_Load ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
Результат void
        private void NoteTextBox_Load(object sender, EventArgs e)
        {
            if (!DesignMode && this.textBoxNotes.DataBindings.Count == 0)
            {
                this.textBoxNotes.DataBindings.Add("Font", Editor.Settings, "NoteFont",
                    false, DataSourceUpdateMode.OnPropertyChanged);
                this.textBoxNotes.ContextMenuStrip = this.contextMenuNotes;
            }
        }