1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| #region Imports
|
| using System;
|
| #endregion
|
| namespace DPumpHydr.WinFrmUI.RLT.Docking.Crown
| {
| #region DockContentEventArgsDocking
|
| public class DockContentEventArgs : EventArgs
| {
| public CrownDockContent Content { get; private set; }
|
| public DockContentEventArgs(CrownDockContent content)
| {
| Content = content;
| }
| }
|
| #endregion
| }
|
|