mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-06 01:30:52 +08:00
项目结构调整
This commit is contained in:
27
Others/Dragablz/DragablzDemo/BasicExampleTemplateModel.cs
Normal file
27
Others/Dragablz/DragablzDemo/BasicExampleTemplateModel.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
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; }
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user