mirror of
https://github.com/jie65535/GrasscutterCommandGenerator.git
synced 2025-06-08 23:19:14 +08:00
68 lines
1.8 KiB
C#
68 lines
1.8 KiB
C#
using System;
|
|
using System.Drawing;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
using GrasscutterTools.Game;
|
|
using GrasscutterTools.Utils;
|
|
|
|
namespace GrasscutterTools.Pages
|
|
{
|
|
internal class BasePage : UserControl
|
|
{
|
|
public BasePage()
|
|
{
|
|
Font = new Font("Microsoft YaHei UI", 9, GraphicsUnit.Point);
|
|
//Size = new Size(652, 245);
|
|
Size = new Size(646, 239);
|
|
BackColor = Color.FromArgb(0xF9, 0xF9, 0xF9);
|
|
Margin = new Padding(0);
|
|
}
|
|
|
|
#region - 命令相关 -
|
|
|
|
protected static CommandVersion CommandVersion => Common.CommandVersion;
|
|
|
|
public delegate void SetCommandHandler(string command, string args = "");
|
|
|
|
/// <summary>
|
|
/// 设置命令
|
|
/// </summary>
|
|
/// <param name="command">命令</param>
|
|
/// <param name="args">参数</param>
|
|
public SetCommandHandler SetCommand { get; set; }
|
|
|
|
public delegate Task<bool> RunCommandsHandler(string[] commands);
|
|
|
|
/// <summary>
|
|
/// 运行命令
|
|
/// </summary>
|
|
public RunCommandsHandler RunCommands { get; set; }
|
|
|
|
/// <summary>
|
|
/// 获取当前输入框命令
|
|
/// </summary>
|
|
public Func<string> GetCommand { get; set; }
|
|
|
|
#endregion
|
|
|
|
#region - 生命周期事件 -
|
|
|
|
/// <summary>
|
|
/// 加载时触发(修改语言时会再次触发)
|
|
/// </summary>
|
|
public virtual void OnLoad() { }
|
|
|
|
/// <summary>
|
|
/// 进入页面时触发(可触发多次)
|
|
/// </summary>
|
|
public virtual void OnEnter() { }
|
|
|
|
/// <summary>
|
|
/// 关闭时触发(用于保存页面数据)
|
|
/// </summary>
|
|
public virtual void OnClosed() { }
|
|
|
|
#endregion
|
|
}
|
|
} |