📄 ximchathistory.cs
字号:
namespace Imps.Client.Pc.BizControls
{
using System;
using System.Windows.Forms;
public class XIMChatHistory : FormEx
{
public XIMChatHistory() : base(false, XFormStyle.ChatHistroy)
{
}
protected override void CreateExtendControl()
{
this.SetPadding();
}
protected override void CreateMaximizedExtendControl()
{
this.SetPadding();
}
protected override void SetPadding()
{
if (base.WindowState == FormWindowState.Maximized)
{
base.set_Padding(new Padding(SystemInformation.Border3DSize.Width, base.TitleHeight, SystemInformation.Border3DSize.Width, SystemInformation.Border3DSize.Height + 1));
}
else
{
base.SetPadding();
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -