rawaccel/grapher/App.config
Ruud Schouten 499add5806 Added Closing and Load events
These events will store and retrieve the windows position and size, so the windows size and position on startup will be the same as when the user closed them.
2022-05-09 17:03:58 +02:00

21 lines
No EOL
1 KiB
XML

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="grapher.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
</startup>
<userSettings>
<grapher.Properties.Settings>
<setting name="Location" serializeAs="String">
<value>0, 0</value>
</setting>
<setting name="Size" serializeAs="String">
<value>930, 990</value>
</setting>
</grapher.Properties.Settings>
</userSettings>
</configuration>