Improve layout, add settings, kill button

This commit is contained in:
Chord 2016-06-19 16:02:10 -04:00
parent 36e6f67319
commit c280f72de1
11 changed files with 741 additions and 338 deletions

View file

@ -46,5 +46,41 @@ namespace PSLauncher.Properties {
this["ExtraArgs"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
public bool OutputShown {
get {
return ((bool)(this["OutputShown"]));
}
set {
this["OutputShown"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
public bool SkipLauncher {
get {
return ((bool)(this["SkipLauncher"]));
}
set {
this["SkipLauncher"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("True")]
public bool ClearOutputOnLaunch {
get {
return ((bool)(this["ClearOutputOnLaunch"]));
}
set {
this["ClearOutputOnLaunch"] = value;
}
}
}
}

View file

@ -8,5 +8,14 @@
<Setting Name="ExtraArgs" Type="System.String" Scope="User">
<Value Profile="(Default)" />
</Setting>
<Setting Name="OutputShown" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">False</Value>
</Setting>
<Setting Name="SkipLauncher" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">False</Value>
</Setting>
<Setting Name="ClearOutputOnLaunch" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">True</Value>
</Setting>
</Settings>
</SettingsFile>