feat: expose legacy login runtime for WPF host

This commit is contained in:
2026-07-28 14:19:28 +08:00
parent 9c0fdac9ba
commit b843ee30b1
3 changed files with 415 additions and 0 deletions
+3
View File
@@ -675,6 +675,9 @@ namespace Lskj.Main.Model
/// <returns>DialogResult.</returns>
private static DialogResult RunLoginForm()
{
if (ExternalMainShell != null)
return ExternalMainShell.ShowLoginDialog(new LegacyLoginRuntime());
FrmLogin frmLogin = new FrmLogin();
return frmLogin.ShowDialog();
}