controlflatstyle.cs
来自「Some time during my development works I 」· CS 代码 · 共 20 行
CS
20 行
using System;
using System.Windows.Forms;
class ControlFlatStyle
{
public static void SetFlatStyleSystem(Control parent)
{
foreach (Control control in parent.Controls)
{
ButtonBase button = control as ButtonBase;
GroupBox group = control as GroupBox;
Label label = control as Label;
if (button!=null) button.FlatStyle = FlatStyle.System;
else if (group!=null) group.FlatStyle = FlatStyle.System;
else if (label!=null) label.FlatStyle = FlatStyle.System;
ControlFlatStyle.SetFlatStyleSystem(control);
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?