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

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