⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 settings.cs

📁 A group of programs which describes the use of different encoding systems
💻 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 + -