mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
27 lines
618 B
C#
27 lines
618 B
C#
|
|
using Dragablz;
|
||
|
|
|
||
|
|
namespace DragablzDemo
|
||
|
|
{
|
||
|
|
public class BasicExampleTemplateModel
|
||
|
|
{
|
||
|
|
private readonly IInterTabClient _interTabClient;
|
||
|
|
private readonly object _partition;
|
||
|
|
|
||
|
|
public BasicExampleTemplateModel(IInterTabClient interTabClient, object partition)
|
||
|
|
{
|
||
|
|
_interTabClient = interTabClient;
|
||
|
|
_partition = partition;
|
||
|
|
}
|
||
|
|
|
||
|
|
public IInterTabClient InterTabClient
|
||
|
|
{
|
||
|
|
get { return _interTabClient; }
|
||
|
|
}
|
||
|
|
|
||
|
|
public object Partition
|
||
|
|
{
|
||
|
|
get { return _partition; }
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|