Free cookie consent management tool by TermsFeed Policy Generator

source: tags/3.3.1/HeuristicLab.ExtLibs/HeuristicLab.WinFormsUI/2.3.1/WinFormsUI-2.3.1/Docking/DockContentEventArgs.cs @ 17791

Last change on this file since 17791 was 2645, checked in by mkommend, 15 years ago

extracted external libraries and adapted dependent plugins (ticket #837)

File size: 317 bytes
Line 
1using System;
2
3namespace WeifenLuo.WinFormsUI.Docking
4{
5  public class DockContentEventArgs : EventArgs
6  {
7    private IDockContent m_content;
8
9    public DockContentEventArgs(IDockContent content)
10    {
11      m_content = content;
12    }
13
14    public IDockContent Content
15    {
16      get { return m_content; }
17    }
18  }
19}
Note: See TracBrowser for help on using the repository browser.