settings.cs
来自「A group of programs which describes the 」· CS 代码 · 共 52 行
CS
52 行
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 + =
减小字号Ctrl + -
显示快捷键?