You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
1.6 KiB
81 lines
1.6 KiB
6 months ago
|
using System.CodeDom.Compiler;
|
||
|
using System.Configuration;
|
||
|
using System.Diagnostics;
|
||
|
using System.Runtime.CompilerServices;
|
||
|
|
||
|
namespace KGIS.Plugin.LayerProperty.Utils
|
||
|
{
|
||
|
[GeneratedCode("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "8.0.0.0"), CompilerGenerated]
|
||
|
internal sealed class Settings : ApplicationSettingsBase
|
||
|
{
|
||
|
private static Settings defaultInstance = (Settings)SettingsBase.Synchronized(new Settings());
|
||
|
public static Settings Default
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
return Settings.defaultInstance;
|
||
|
}
|
||
|
}
|
||
|
[DefaultSettingValue("确定"), UserScopedSetting, DebuggerNonUserCode]
|
||
|
public string btnOK
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
return (string)this["btnOK"];
|
||
|
}
|
||
|
set
|
||
|
{
|
||
|
this["btnOK"] = value;
|
||
|
}
|
||
|
}
|
||
|
[DefaultSettingValue("取消"), UserScopedSetting, DebuggerNonUserCode]
|
||
|
public string btnCancel
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
return (string)this["btnCancel"];
|
||
|
}
|
||
|
set
|
||
|
{
|
||
|
this["btnCancel"] = value;
|
||
|
}
|
||
|
}
|
||
|
[DefaultSettingValue("应用"), UserScopedSetting, DebuggerNonUserCode]
|
||
|
public string btnApply
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
return (string)this["btnApply"];
|
||
|
}
|
||
|
set
|
||
|
{
|
||
|
this["btnApply"] = value;
|
||
|
}
|
||
|
}
|
||
|
[DefaultSettingValue("放弃修改"), UserScopedSetting, DebuggerNonUserCode]
|
||
|
public string btnAbandonModify
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
return (string)this["btnAbandonModify"];
|
||
|
}
|
||
|
set
|
||
|
{
|
||
|
this["btnAbandonModify"] = value;
|
||
|
}
|
||
|
}
|
||
|
[DefaultSettingValue("重置"), UserScopedSetting, DebuggerNonUserCode]
|
||
|
public string btnReset
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
return (string)this["btnReset"];
|
||
|
}
|
||
|
set
|
||
|
{
|
||
|
this["btnReset"] = value;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|