Сделан новый проект VisualPABCLinux И пришлось склонировать PluginsSupport, поскольку он вносит зависимость по редактору Компоненты WeifenLuo для Linux надо после перекомпиляции скопировать в Libraries - подшить их к основному проекту просто не получилось
20 lines
367 B
C#
20 lines
367 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; }
|
|
}
|
|
}
|
|
}
|