Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Persistence Test/WinFormsUI/Docking/DockContentEventArgs.cs @ 4539

Last change on this file since 4539 was 2134, checked in by gkronber, 15 years ago

Added up to date source of Weifen Luo dock panel suit in a separate project (and added strong name key). Removed binary versions of Weifen Luo dock panel suite and references to it. #687 (Update AdvancedOptimizationFrontend to use more recent version of Weifen Luo Docking library)

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.