26 lines
599 B
C#
26 lines
599 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 RequestLock();
|
|
|
|
void RequestSubscriptRefresh();
|
|
|
|
void RequestExit(string message);
|
|
}
|
|
}
|