VixenModules.Editor.TimedSequenceEditor.MarkManager.textBoxCollectionName_TextChanged C# (CSharp) Method

textBoxCollectionName_TextChanged() private method

private textBoxCollectionName_TextChanged ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void textBoxCollectionName_TextChanged(object sender, EventArgs e)
        {
            if (_displayedCollection != null && _displayedCollection.Name != textBoxCollectionName.Text) {
                _displayedCollection.Name = textBoxCollectionName.Text;
                UpdateMarkCollectionInList(_displayedCollection);
            }
        }