feat: expose legacy login runtime for WPF host

This commit is contained in:
2026-07-28 14:19:28 +08:00
parent 6be6607a40
commit fa48419bd8
4 changed files with 562 additions and 5 deletions
@@ -0,0 +1,21 @@
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 ShowLoginDialog(object loginRuntime);
DialogResult ShowDialog();
void RequestRelogin();
void RequestExit(string message);
}
}