[Projects] Editor: Main page: fix layout if there are many apps, launch button not disappearing on the right side

This commit is contained in:
donlaci
2024-06-14 11:50:56 +02:00
parent 9cac577b7f
commit 68a66ff03d

View File

@@ -178,8 +178,12 @@
<Border Background="{DynamicResource SecondaryBackgroundBrush}" <Border Background="{DynamicResource SecondaryBackgroundBrush}"
HorizontalAlignment="Stretch" HorizontalAlignment="Stretch"
CornerRadius="5"> CornerRadius="5">
<DockPanel HorizontalAlignment="Stretch"> <Grid HorizontalAlignment="Stretch">
<StackPanel Orientation="Vertical" HorizontalAlignment="Stretch" Margin="12,14,10,10"> <Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="120" />
</Grid.ColumnDefinitions>
<StackPanel Orientation="Vertical" HorizontalAlignment="Left" Margin="12,14,10,10">
<TextBlock <TextBlock
Text="{Binding Name, Mode=OneWay,UpdateSourceTrigger=PropertyChanged}" Text="{Binding Name, Mode=OneWay,UpdateSourceTrigger=PropertyChanged}"
FontSize="16" FontSize="16"
@@ -210,7 +214,7 @@
<TextBlock Text="{Binding LastLaunched, Mode=OneWay, UpdateSourceTrigger=PropertyChanged}"/> <TextBlock Text="{Binding LastLaunched, Mode=OneWay, UpdateSourceTrigger=PropertyChanged}"/>
</StackPanel> </StackPanel>
</StackPanel> </StackPanel>
<StackPanel Orientation="Vertical" DockPanel.Dock="Left" Margin="12,12,12,12"> <StackPanel Orientation="Vertical" Grid.Column="1" Margin="12,12,12,12">
<StackPanel <StackPanel
Orientation="Horizontal" Orientation="Horizontal"
HorizontalAlignment="Right"> HorizontalAlignment="Right">
@@ -259,7 +263,7 @@
BorderThickness="1" BorderThickness="1"
Click="LaunchButton_Click"/> Click="LaunchButton_Click"/>
</StackPanel> </StackPanel>
</DockPanel> </Grid>
</Border> </Border>
</Button> </Button>
</DataTemplate> </DataTemplate>