it feels good to me! -Thoys git-svn-id: https://lsleditor.svn.sourceforge.net/svnroot/lsleditor@26 3f4676ac-adda-40fd-8265-58d1435b1672
19 lines
306 B
C#
19 lines
306 B
C#
using System;
|
|
|
|
namespace LSLEditor.Docking
|
|
{
|
|
public class DockContentEventArgs : EventArgs
|
|
{
|
|
private IDockContent m_content;
|
|
|
|
public DockContentEventArgs(IDockContent content)
|
|
{
|
|
m_content = content;
|
|
}
|
|
|
|
public IDockContent Content
|
|
{
|
|
get { return m_content; }
|
|
}
|
|
}
|
|
}
|