2024-09-28 23:55:19 +08:00
|
|
|
|
using Net461DllTest.Signal;
|
2024-09-27 10:30:19 +08:00
|
|
|
|
using Net461DllTest.ViewModel;
|
|
|
|
|
|
using Serein.Library.Api;
|
|
|
|
|
|
using Serein.Library.Attributes;
|
|
|
|
|
|
using Serein.Library.Enums;
|
|
|
|
|
|
using Serein.Library.Utils;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
|
2024-09-28 23:55:19 +08:00
|
|
|
|
namespace Net461DllTest.LogicControl
|
2024-09-27 10:30:19 +08:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
public class ViewManagement
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
private List<Form> forms = new List<Form>();
|
2024-09-27 23:47:25 +08:00
|
|
|
|
public void OpenView(Form form, bool isTop)
|
2024-09-27 10:30:19 +08:00
|
|
|
|
{
|
|
|
|
|
|
form.FormClosing += (s, e) =>
|
|
|
|
|
|
{
|
|
|
|
|
|
// 关闭窗体时执行一些关于逻辑层的操作
|
|
|
|
|
|
};
|
2024-09-27 23:47:25 +08:00
|
|
|
|
form.TopMost = isTop;
|
2024-09-27 10:30:19 +08:00
|
|
|
|
form.Show();
|
|
|
|
|
|
forms.Add(form);
|
|
|
|
|
|
}
|
|
|
|
|
|
public void CloseView(Type formType)
|
|
|
|
|
|
{
|
|
|
|
|
|
var remoteForms = forms.Where(f => f.GetType() == formType).ToArray();
|
|
|
|
|
|
foreach (Form f in remoteForms)
|
|
|
|
|
|
{
|
|
|
|
|
|
f.Close();
|
|
|
|
|
|
f.Dispose();
|
|
|
|
|
|
this.forms.Remove(f);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-09-28 23:55:19 +08:00
|
|
|
|
|
2024-09-27 10:30:19 +08:00
|
|
|
|
|
|
|
|
|
|
[DynamicFlow]
|
|
|
|
|
|
public class ViewLogicControl
|
|
|
|
|
|
{
|
|
|
|
|
|
[AutoInjection]
|
|
|
|
|
|
public ViewManagement ViewManagement { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[NodeAction(NodeType.Init)]
|
|
|
|
|
|
public void Init(IDynamicContext context)
|
|
|
|
|
|
{
|
|
|
|
|
|
context.Env.IOC.Register<ViewManagement>();
|
|
|
|
|
|
context.Env.IOC.Register<FromWorkBenchViewModel>();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[NodeAction(NodeType.Action, "打开窗体(指定枚举值)")]
|
2024-09-28 23:55:19 +08:00
|
|
|
|
public void OpenForm(IDynamicContext context, FromValue fromId = FromValue.None, bool isTop = true)
|
2024-09-27 10:30:19 +08:00
|
|
|
|
{
|
2024-09-28 23:55:19 +08:00
|
|
|
|
var fromType = EnumHelper.GetBoundValue<FromValue, Type>(fromId, attr => attr.Value);
|
2024-09-27 10:30:19 +08:00
|
|
|
|
if (fromType is null) return;
|
|
|
|
|
|
if (context.Env.IOC.Instantiate(fromType) is Form form)
|
|
|
|
|
|
{
|
2024-09-27 23:47:25 +08:00
|
|
|
|
ViewManagement.OpenView(form, isTop);
|
2024-09-27 10:30:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
[NodeAction(NodeType.Action, "打开窗体(使用转换器)")]
|
2024-09-28 23:55:19 +08:00
|
|
|
|
public void OpenForm2([EnumTypeConvertor(typeof(FromValue))] Form form, bool isTop = true)
|
2024-09-27 10:30:19 +08:00
|
|
|
|
{
|
2024-09-27 23:47:25 +08:00
|
|
|
|
ViewManagement.OpenView(form, isTop);
|
2024-09-27 10:30:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-09-28 23:55:19 +08:00
|
|
|
|
|
2024-09-27 10:30:19 +08:00
|
|
|
|
[NodeAction(NodeType.Action, "关闭窗体")]
|
2024-09-28 23:55:19 +08:00
|
|
|
|
public void CloseForm(IDynamicContext context, FromValue fromId = FromValue.None)
|
2024-09-27 10:30:19 +08:00
|
|
|
|
{
|
2024-09-28 23:55:19 +08:00
|
|
|
|
var fromType = EnumHelper.GetBoundValue<FromValue, Type>(fromId, attr => attr.Value);
|
2024-09-27 10:30:19 +08:00
|
|
|
|
if (fromType is null) return;
|
|
|
|
|
|
ViewManagement.CloseView(fromType);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-09-28 23:55:19 +08:00
|
|
|
|
|
2024-09-27 10:30:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|