UpdateDialog: Swap buttons

This commit is contained in:
2024-03-05 10:58:34 +01:00
parent 77cf47e154
commit a5a6915db1

View File

@ -22,12 +22,12 @@
HorizontalAlignment="Center" VerticalAlignment="Center" HorizontalAlignment="Center" VerticalAlignment="Center"
Height="27" Width="300" SnapsToDevicePixels="True"/> Height="27" Width="300" SnapsToDevicePixels="True"/>
<Button x:Name="CancelButton" Content="Abbrechen" Margin="10,10,115,10" IsCancel="True" IsDefault="True" <Button x:Name="InstallButton" Content="Installieren" Margin="10,10,115,10"
FontSize="14" HorizontalAlignment="Right" VerticalAlignment="Bottom"
Width="100" Height="27"/>
<Button x:Name="InstallButton" Content="Installieren" Margin="10,10,10,10"
FontSize="14" HorizontalAlignment="Right" VerticalAlignment="Bottom" FontSize="14" HorizontalAlignment="Right" VerticalAlignment="Bottom"
Width="100" Height="27" Width="100" Height="27"
Click="InstallButton_Click"/> Click="InstallButton_Click"/>
<Button x:Name="CancelButton" Content="Abbrechen" Margin="10,10,10,10" IsCancel="True" IsDefault="True"
FontSize="14" HorizontalAlignment="Right" VerticalAlignment="Bottom"
Width="100" Height="27"/>
</Grid> </Grid>
</Window> </Window>