Files
aistudio-wpf-diagram/Dragablz/DragablzDemo/BasicExampleInterTabClient.cs
2021-07-23 09:42:22 +08:00

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;
}
}
}