mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
Work on project panel, trees, added settings
This commit is contained in:
60
RainmeterStudio/Properties/Settings.Designer.cs
generated
60
RainmeterStudio/Properties/Settings.Designer.cs
generated
@ -25,12 +25,66 @@ namespace RainmeterStudio.Properties {
|
||||
|
||||
[global::System.Configuration.UserScopedSettingAttribute()]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public global::System.Windows.Input.KeyGestureConverter asdf {
|
||||
[global::System.Configuration.DefaultSettingValueAttribute("Ctrl+Shift+N")]
|
||||
[global::System.Configuration.SettingsManageabilityAttribute(global::System.Configuration.SettingsManageability.Roaming)]
|
||||
public string ProjectCreateCommand_Shortcut {
|
||||
get {
|
||||
return ((global::System.Windows.Input.KeyGestureConverter)(this["asdf"]));
|
||||
return ((string)(this["ProjectCreateCommand_Shortcut"]));
|
||||
}
|
||||
set {
|
||||
this["asdf"] = value;
|
||||
this["ProjectCreateCommand_Shortcut"] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Configuration.UserScopedSettingAttribute()]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Configuration.DefaultSettingValueAttribute("F5")]
|
||||
[global::System.Configuration.SettingsManageabilityAttribute(global::System.Configuration.SettingsManageability.Roaming)]
|
||||
public string ProjectPanel_RefreshCommand_Shortcut {
|
||||
get {
|
||||
return ((string)(this["ProjectPanel_RefreshCommand_Shortcut"]));
|
||||
}
|
||||
set {
|
||||
this["ProjectPanel_RefreshCommand_Shortcut"] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Configuration.UserScopedSettingAttribute()]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Configuration.DefaultSettingValueAttribute("Ctrl+N")]
|
||||
[global::System.Configuration.SettingsManageabilityAttribute(global::System.Configuration.SettingsManageability.Roaming)]
|
||||
public string DocumentCreateCommand_Shortcut {
|
||||
get {
|
||||
return ((string)(this["DocumentCreateCommand_Shortcut"]));
|
||||
}
|
||||
set {
|
||||
this["DocumentCreateCommand_Shortcut"] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Configuration.UserScopedSettingAttribute()]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Configuration.DefaultSettingValueAttribute("Ctrl+Shift+O")]
|
||||
[global::System.Configuration.SettingsManageabilityAttribute(global::System.Configuration.SettingsManageability.Roaming)]
|
||||
public string ProjectOpenCommand_Shortcut {
|
||||
get {
|
||||
return ((string)(this["ProjectOpenCommand_Shortcut"]));
|
||||
}
|
||||
set {
|
||||
this["ProjectOpenCommand_Shortcut"] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Configuration.UserScopedSettingAttribute()]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Configuration.DefaultSettingValueAttribute("Ctrl+W")]
|
||||
[global::System.Configuration.SettingsManageabilityAttribute(global::System.Configuration.SettingsManageability.Roaming)]
|
||||
public string DocumentCloseCommand_Shortcut {
|
||||
get {
|
||||
return ((string)(this["DocumentCloseCommand_Shortcut"]));
|
||||
}
|
||||
set {
|
||||
this["DocumentCloseCommand_Shortcut"] = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,7 +1,21 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<SettingsFile xmlns="uri:settings" CurrentProfile="(Default)">
|
||||
<Profiles>
|
||||
<Profile Name="(Default)" />
|
||||
</Profiles>
|
||||
<Settings />
|
||||
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" GeneratedClassNamespace="RainmeterStudio.Properties" GeneratedClassName="Settings">
|
||||
<Profiles />
|
||||
<Settings>
|
||||
<Setting Name="ProjectCreateCommand_Shortcut" Roaming="true" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)">Ctrl+Shift+N</Value>
|
||||
</Setting>
|
||||
<Setting Name="ProjectPanel_RefreshCommand_Shortcut" Roaming="true" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)">F5</Value>
|
||||
</Setting>
|
||||
<Setting Name="DocumentCreateCommand_Shortcut" Roaming="true" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)">Ctrl+N</Value>
|
||||
</Setting>
|
||||
<Setting Name="ProjectOpenCommand_Shortcut" Roaming="true" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)">Ctrl+Shift+O</Value>
|
||||
</Setting>
|
||||
<Setting Name="DocumentCloseCommand_Shortcut" Roaming="true" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)">Ctrl+W</Value>
|
||||
</Setting>
|
||||
</Settings>
|
||||
</SettingsFile>
|
Reference in New Issue
Block a user