Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.WinFormsUI/2.3.1/WinFormsUI-2.3.1/Docking/DockContentEventArgs.cs @ 2645

Last change on this file since 2645 was 2645, checked in by mkommend, 14 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.