fix: ConfigureWorkspace window width (#458)

This commit is contained in:
Gadfly 2024-09-11 11:07:30 +08:00
parent 0c31c982be
commit f6fa31f287
No known key found for this signature in database

View file

@ -12,10 +12,10 @@
x:Name="ThisControl" x:Name="ThisControl"
Icon="/App.ico" Icon="/App.ico"
Title="{DynamicResource Text.ConfigureWorkspace}" Title="{DynamicResource Text.ConfigureWorkspace}"
Width="494" SizeToContent="Height" SizeToContent="WidthAndHeight"
CanResize="False" CanResize="False"
WindowStartupLocation="CenterOwner"> WindowStartupLocation="CenterOwner">
<Grid RowDefinitions="Auto,Auto"> <Grid RowDefinitions="Auto,Auto" MinWidth="494">
<!-- TitleBar --> <!-- TitleBar -->
<Grid Grid.Row="0" ColumnDefinitions="Auto,*,Auto" Height="30" IsVisible="{Binding !#ThisControl.UseSystemWindowFrame}"> <Grid Grid.Row="0" ColumnDefinitions="Auto,*,Auto" Height="30" IsVisible="{Binding !#ThisControl.UseSystemWindowFrame}">
<Border Grid.Column="0" Grid.ColumnSpan="3" <Border Grid.Column="0" Grid.ColumnSpan="3"