📄 settings.cs
字号:
using System;
using System.Drawing;
[System.Serializable()]
public class Settings
{
private Point location;
private Font font;
private int height;
private int width;
private bool wrapping;
public Point Location
{
get
{ return location; }
set
{ location = value; }
}
public Font Font
{
get
{ return font; }
set
{ font = value; }
}
public int Height
{
get
{ return height; }
set
{ height = value; }
}
public int Width
{
get
{ return width; }
set
{ width = value; }
}
public bool Wrapping
{
get
{ return wrapping; }
set
{ wrapping = value; }
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -