using SpaceEngineersBlueprintEditor.Model;
using XFEExtension.NetCore.DelegateExtension;
using XFEExtension.NetCore.WinUIHelper.Interface.Services;
namespace SpaceEngineersBlueprintEditor.Interface.Services;
///
/// 全局Tab视图标题服务
///
public interface ITabViewTitleService : IGlobalService
{
///
/// 更改标题请求事件
///
event XFEEventHandler ChangeTitleRequest;
///
/// 设置Tab视图控件标题
///
/// 标题
/// 蓝图模型
void SetTabViewTitle(string title, BlueprintModel blueprintModel);
}