feat: 支持外部 WPF 主界面接管

This commit is contained in:
2026-07-21 10:02:11 +08:00
parent 6be6607a40
commit 0a1d027407
8 changed files with 136 additions and 7 deletions
@@ -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);
}
}