setup.cs
来自「青鸟影院」· CS 代码 · 共 38 行
CS
38 行
using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.Serialization.Formatters.Binary;
namespace GreenBirdCinema
{
[Serializable]
class Setup
{
private double opacity; //窗体透明度
public double Opacity
{
get { return opacity; }
set { opacity = value; }
}
//private
private bool openList; //是否打开购买清单
public bool OpenList
{
get { return openList; }
set { openList = value; }
}
private bool autoSave; //是否自动保存
public bool AutoSave
{
get { return autoSave; }
set { autoSave = value; }
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?