mirror of
https://github.com/k1tbyte/Wand-Enhancer.git
synced 2026-08-28 17:01:04 +00:00
21 lines
1.0 KiB
XML
21 lines
1.0 KiB
XML
<UserControl x:Class="WandEnhancer.View.Popups.UpdatePopup"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:local="clr-namespace:WandEnhancer.View.Popups"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="Auto" d:DesignWidth="Auto"
|
|
Background="{DynamicResource Background}"
|
|
Foreground="{DynamicResource MutedForeground}"
|
|
FontWeight="Medium"
|
|
FontSize="13">
|
|
<StackPanel>
|
|
|
|
<TextBlock Foreground="Red" MaxWidth="320" TextAlignment="Center" Text="{DynamicResource up_warning}" TextWrapping="Wrap" />
|
|
|
|
<Button Padding="0 5 0 5" Margin="0 15 0 0" Content="{DynamicResource up_update_now}"
|
|
Click="OnUpdateClick" />
|
|
</StackPanel>
|
|
</UserControl>
|