Skip to content
This repository was archived by the owner on Aug 23, 2025. It is now read-only.

Commit 8f94808

Browse files
committed
Description column in listview, cleanup
Added the description column to the VM listview from issue #79 Main window size and position is now saved and restored as per issue #82 VM list is now reloaded after a VM is edited VM window is now focused when opening settings as well Removed the VM description tooltip as it's no longer needed Removed unused Win32 imports
1 parent 1687505 commit 8f94808

File tree

10 files changed

+247
-171
lines changed

10 files changed

+247
-171
lines changed

86BoxManager/Properties/Settings.Designer.cs

Lines changed: 37 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
<?xml version='1.0' encoding='utf-8'?>
2-
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)">
3-
<Profiles>
4-
<Profile Name="(Default)" />
5-
</Profiles>
6-
<Settings />
7-
</SettingsFile>
2+
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" GeneratedClassNamespace="_86boxManager.Properties" GeneratedClassName="Settings">
3+
<Profiles />
4+
<Settings>
5+
<Setting Name="WindowSize" Type="System.Drawing.Size" Scope="User">
6+
<Value Profile="(Default)">700, 534</Value>
7+
</Setting>
8+
<Setting Name="WindowPosition" Type="System.Drawing.Point" Scope="User">
9+
<Value Profile="(Default)">200, 200</Value>
10+
</Setting>
11+
<Setting Name="WindowState" Type="System.Windows.Forms.FormWindowState" Scope="User">
12+
<Value Profile="(Default)">Normal</Value>
13+
</Setting>
14+
</Settings>
15+
</SettingsFile>

86BoxManager/app.config

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
3-
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6"/></startup></configuration>
3+
<configSections>
4+
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
5+
<section name="_86boxManager.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
6+
</sectionGroup>
7+
</configSections>
8+
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6"/></startup><userSettings>
9+
<_86boxManager.Properties.Settings>
10+
<setting name="WindowSize" serializeAs="String">
11+
<value>700, 534</value>
12+
</setting>
13+
<setting name="WindowPosition" serializeAs="String">
14+
<value>200, 200</value>
15+
</setting>
16+
<setting name="WindowState" serializeAs="String">
17+
<value>Normal</value>
18+
</setting>
19+
</_86boxManager.Properties.Settings>
20+
</userSettings>
21+
</configuration>

86BoxManager/dlgAddVM.Designer.cs

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

86BoxManager/dlgCloneVM.Designer.cs

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

86BoxManager/dlgEditVM.Designer.cs

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

86BoxManager/dlgSettings.Designer.cs

Lines changed: 54 additions & 53 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)