mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-13 21:40:41 +00:00
20 lines
376 B
C#
20 lines
376 B
C#
using System;
|
|
|
|
namespace WeifenLuo.WinFormsUI.Docking
|
|
{
|
|
public class DockContentEventArgs : EventArgs
|
|
{
|
|
private IDockContent m_content;
|
|
|
|
public DockContentEventArgs(IDockContent content)
|
|
{
|
|
m_content = content;
|
|
}
|
|
|
|
public IDockContent Content
|
|
{
|
|
get { return m_content; }
|
|
}
|
|
}
|
|
}
|