mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-07 17:56:35 +08:00
10 lines
217 B
C#
10 lines
217 B
C#
using System.Windows;
|
|
|
|
namespace Dragablz
|
|
{
|
|
public interface INewTabHost<out TElement> where TElement : UIElement
|
|
{
|
|
TElement Container { get; }
|
|
TabablzControl TabablzControl { get; }
|
|
}
|
|
} |