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

📄 setup.cs

📁 青鸟影院
💻 CS
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -