mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
27 lines
825 B
C#
27 lines
825 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
using System.Windows;
|
|||
|
|
using Dragablz;
|
|||
|
|
|
|||
|
|
namespace DragablzDemo
|
|||
|
|
{
|
|||
|
|
public class BasicExampleInterTabClient : IInterTabClient
|
|||
|
|
{
|
|||
|
|
public INewTabHost<Window> GetNewHost(IInterTabClient interTabClient, object partition, TabablzControl source)
|
|||
|
|
{
|
|||
|
|
var view = new BasicExampleTemplateWindow();
|
|||
|
|
var model = new BasicExampleTemplateModel(interTabClient, partition);
|
|||
|
|
view.DataContext = model;
|
|||
|
|
return new NewTabHost<Window>(view, view.TabablzControl);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public TabEmptiedResponse TabEmptiedHandler(TabablzControl tabControl, Window window)
|
|||
|
|
{
|
|||
|
|
return TabEmptiedResponse.CloseWindowOrLayoutBranch;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|