Increase the default width and allow user to resize setting window, and reduce the margin for PluginDirectory

modified:   Flow.Launcher/SettingWindow.xaml

	modified:   Flow.Launcher/SettingWindow.xaml
This commit is contained in:
弘韬 张 2021-03-29 14:24:20 +08:00
parent b5e54a76b0
commit 1f0c0022ac

View file

@ -13,9 +13,9 @@
mc:Ignorable="d"
Icon="Images\app.ico"
Title="{DynamicResource flowlauncher_settings}"
ResizeMode="NoResize"
ResizeMode="CanResizeWithGrip"
WindowStartupLocation="CenterScreen"
Height="600" Width="800"
Height="600" Width="850"
Closed="OnClosed"
d:DataContext="{d:DesignInstance vm:SettingWindowViewModel}">
<Window.InputBindings>
@ -191,7 +191,7 @@
<TextBlock Text="{DynamicResource plugin_query_time}" Margin="10 0 0 0" MaxWidth="100"/>
<TextBlock Text="{Binding QueryTime}" Margin="5 0 0 0" MaxWidth="100"/>
<TextBlock Text="{DynamicResource pluginDirectory}"
MaxWidth="100" Cursor="Hand" Margin="40 0 0 0"
MaxWidth="120" Cursor="Hand" Margin="20 0 0 0"
MouseUp="OnPluginDirecotyClick" Foreground="Blue" />
</DockPanel>
</Grid>