feat: 支持外部 WPF 主界面接管
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace Lskj.Main.Hosting
|
||||
{
|
||||
/// <summary>
|
||||
/// 旧启动流程与可选新主界面之间的中立扩展点。
|
||||
/// 此接口只使用 .NET Framework 4.0/WinForms 基础类型,不引用 WPF 或 DevExpress 25.2。
|
||||
/// </summary>
|
||||
public interface IExternalMainShell
|
||||
{
|
||||
bool IsOpen { get; }
|
||||
|
||||
DialogResult ShowDialog();
|
||||
|
||||
void RequestRelogin();
|
||||
|
||||
void RequestExit(string message);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user