ARCed.Controls.NoteTextBox.NoteTextBox_Load C# (CSharp) Method

NoteTextBox_Load() private method

private NoteTextBox_Load ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return 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;
            }
        }