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.
|
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; }
|
|
}
|
|
}
|
|
}
|