System.Windows.Forms.ComboBox.ObjectCollection.OnUIACollectionChangedEvent C# (CSharp) Method

OnUIACollectionChangedEvent() private method

private OnUIACollectionChangedEvent ( CollectionChangeEventArgs args ) : void
args System.ComponentModel.CollectionChangeEventArgs
return void
			internal void OnUIACollectionChangedEvent (CollectionChangeEventArgs args)
			{
				CollectionChangeEventHandler eh = (CollectionChangeEventHandler)owner.Events[UIACollectionChangedEvent];
				if (eh != null)
					eh (owner, args);
			}