source:
branches/PersistenceOverhaul/HeuristicLab.ExtLibs/HeuristicLab.WinFormsUI/2.7.0/WinFormsUI-2.7.0/Docking/DockContentEventArgs.cs
@
13401
Last change on this file since 13401 was 8616, checked in by mkommend, 12 years ago | |
---|---|
File size: 317 bytes |
Line | |
---|---|
1 | using System; |
2 | |
3 | namespace 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.