Properties.Setting.Default保存配置信息的方法

Properties.Setting.Default保存配置信息的方法

1.定义---将保存信息在Properties.Setting.Designer.cs中定义
        [global::System.Configuration.UserScopedSettingAttribute()]
        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
        [global::System.Configuration.DefaultSettingValueAttribute("30.93")]
        public double MainMapLat
        {
            get
            {
                return ((double)(this["MainMapLat"]));
            }
            set
            {
                this["MainMapLat"] = value;
            }
        }
        [global::System.Configuration.UserScopedSettingAttribute()]
        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
        [global::System.Configuration.DefaultSettingValueAttribute("115.10")]
        public double MainMapLng
        {
            get
            {
                return ((double)(this["MainMapLng"]));
            }
            set
            {
                this["MainMapLng"] = value;
            }
        }

2.保存---windform窗体关闭时将当前Lat,Lng保存
         Properties.Settings.Default.MainMapLat = MainMap.Position.Lat;
         Properties.Settings.Default.MainMapLng = MainMap.Position.Lng;
         Properties.Settings.Default.Save();

3.获取-- cs文件直接使用
         double theCenterLat = Properties.Settings.Default.MainMapLat;
         double theCenterLng = Properties.Settings.Default.MainMapLng;

你可能感兴趣的:(日常积累,.NET)