You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
284 B
C#
20 lines
284 B
C#
7 months ago
|
using System;
|
||
|
|
||
|
namespace Mesnac.Docking
|
||
|
{
|
||
|
public class DockContentEventArgs : EventArgs
|
||
|
{
|
||
|
private IDockContent m_content;
|
||
|
|
||
|
public DockContentEventArgs(IDockContent content)
|
||
|
{
|
||
|
m_content = content;
|
||
|
}
|
||
|
|
||
|
public IDockContent Content
|
||
|
{
|
||
|
get { return m_content; }
|
||
|
}
|
||
|
}
|
||
|
}
|