Files
lserp_cs_6.0/插件库/Lskj.Main/Hosting/IExternalMainShell.cs
T

22 lines
529 B
C#

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);
}
}