mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
Work on resource and settings managers, added some documentation.
This commit is contained in:
60
RainmeterStudio/Properties/Settings.Designer.cs
generated
60
RainmeterStudio/Properties/Settings.Designer.cs
generated
@ -87,5 +87,65 @@ namespace RainmeterStudio.Properties {
|
||||
this["DocumentCloseCommand_Shortcut"] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Configuration.UserScopedSettingAttribute()]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Configuration.DefaultSettingValueAttribute("800")]
|
||||
public double MainWindow_Width {
|
||||
get {
|
||||
return ((double)(this["MainWindow_Width"]));
|
||||
}
|
||||
set {
|
||||
this["MainWindow_Width"] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Configuration.UserScopedSettingAttribute()]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Configuration.DefaultSettingValueAttribute("600")]
|
||||
public double MainWindow_Height {
|
||||
get {
|
||||
return ((double)(this["MainWindow_Height"]));
|
||||
}
|
||||
set {
|
||||
this["MainWindow_Height"] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Configuration.UserScopedSettingAttribute()]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Configuration.DefaultSettingValueAttribute("Normal")]
|
||||
public global::System.Windows.WindowState MainWindow_WindowState {
|
||||
get {
|
||||
return ((global::System.Windows.WindowState)(this["MainWindow_WindowState"]));
|
||||
}
|
||||
set {
|
||||
this["MainWindow_WindowState"] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Configuration.UserScopedSettingAttribute()]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Configuration.DefaultSettingValueAttribute("10")]
|
||||
public double MainWindow_Left {
|
||||
get {
|
||||
return ((double)(this["MainWindow_Left"]));
|
||||
}
|
||||
set {
|
||||
this["MainWindow_Left"] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Configuration.UserScopedSettingAttribute()]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Configuration.DefaultSettingValueAttribute("10")]
|
||||
public double MainWindow_Top {
|
||||
get {
|
||||
return ((double)(this["MainWindow_Top"]));
|
||||
}
|
||||
set {
|
||||
this["MainWindow_Top"] = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -17,5 +17,20 @@
|
||||
<Setting Name="DocumentCloseCommand_Shortcut" Roaming="true" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)">Ctrl+W</Value>
|
||||
</Setting>
|
||||
<Setting Name="MainWindow_Width" Type="System.Double" Scope="User">
|
||||
<Value Profile="(Default)">800</Value>
|
||||
</Setting>
|
||||
<Setting Name="MainWindow_Height" Type="System.Double" Scope="User">
|
||||
<Value Profile="(Default)">600</Value>
|
||||
</Setting>
|
||||
<Setting Name="MainWindow_WindowState" Type="System.Windows.WindowState" Scope="User">
|
||||
<Value Profile="(Default)">Normal</Value>
|
||||
</Setting>
|
||||
<Setting Name="MainWindow_Left" Type="System.Double" Scope="User">
|
||||
<Value Profile="(Default)">10</Value>
|
||||
</Setting>
|
||||
<Setting Name="MainWindow_Top" Type="System.Double" Scope="User">
|
||||
<Value Profile="(Default)">10</Value>
|
||||
</Setting>
|
||||
</Settings>
|
||||
</SettingsFile>
|
Reference in New Issue
Block a user