Inheritance: System.EventArgs
Beispiel #1
0
        /// <include file='CodeDoc\DockPanel.xml' path='//CodeDoc/Class[@name="DockPanel"]/Method[@name="OnContentRemoved(DockContentEventArgs)"]/*' />
        protected virtual void OnContentRemoved(DockContentEventArgs e)
        {
            DockContentEventHandler handler = (DockContentEventHandler)Events[ContentRemovedEvent];

            if (handler != null)
            {
                handler(this, e);
            }
        }
Beispiel #2
0
 /// <include file='CodeDoc\DockPanel.xml' path='//CodeDoc/Class[@name="DockPanel"]/Method[@name="OnContentRemoved(DockContentEventArgs)"]/*' />
 protected virtual void OnContentRemoved(DockContentEventArgs e)
 {
     DockContentEventHandler handler = (DockContentEventHandler)Events[ContentRemovedEvent];
     if (handler != null)
         handler(this, e);
 }