コード例 #1
0
ファイル: DockPanel.cs プロジェクト: thepirateclub/netgore
        protected virtual void OnContentRemoved(DockContentEventArgs e)
        {
            var handler = (EventHandler <DockContentEventArgs>)Events[ContentRemovedEvent];

            if (handler != null)
            {
                handler(this, e);
            }
        }
コード例 #2
0
ファイル: DockPanel.cs プロジェクト: mateuscezar/netgore
 protected virtual void OnContentRemoved(DockContentEventArgs e)
 {
     var handler = (EventHandler<DockContentEventArgs>)Events[ContentRemovedEvent];
     if (handler != null)
         handler(this, e);
 }