diff options
author | Grant Limberg <grant.limberg@zerotier.com> | 2016-11-18 15:23:07 -0800 |
---|---|---|
committer | Grant Limberg <grant.limberg@zerotier.com> | 2016-11-18 15:23:07 -0800 |
commit | 3fb224cb227ee4a84d9a8f46140efaa641bfb461 (patch) | |
tree | d1fba95a5cfd8c0c02ba4324cfdc885373d3d798 /windows | |
parent | 5ca5af619db529aa3a958a6c4a3725e8eb0ce1c3 (diff) | |
download | infinitytier-3fb224cb227ee4a84d9a8f46140efaa641bfb461.tar.gz infinitytier-3fb224cb227ee4a84d9a8f46140efaa641bfb461.zip |
add a checkbox for startup option in preferences
Diffstat (limited to 'windows')
-rw-r--r-- | windows/WinUI/PreferencesView.xaml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/windows/WinUI/PreferencesView.xaml b/windows/WinUI/PreferencesView.xaml index 09440236..51c30d9a 100644 --- a/windows/WinUI/PreferencesView.xaml +++ b/windows/WinUI/PreferencesView.xaml @@ -5,8 +5,9 @@ xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:local="clr-namespace:WinUI" mc:Ignorable="d" - Title="PreferencesView" Height="300" Width="300" Icon="ZeroTierIcon.ico"> + Title="PreferencesView" SizeToContent="WidthAndHeight" Height="Auto" Width="Auto" Icon="ZeroTierIcon.ico"> <Grid> - + <CheckBox x:Name="checkBox" Content="Launch ZeroTier On Startup" HorizontalAlignment="Left" Margin="10,10,10,10" VerticalAlignment="Top"/> + </Grid> </Window> |