64ed432c0c
- Aggiunto EgtWPFLibDarkDictionary.xaml per il cambio tema e adattamento delle altre classi
34 lines
1.6 KiB
XML
34 lines
1.6 KiB
XML
<Window x:Class="EgtMsgBox"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Title="EgtMsgBox" Height="213.3" Width="341.3" ShowInTaskbar="False" ResizeMode="NoResize" WindowStyle="None"
|
|
AllowsTransparency="True">
|
|
|
|
<Window.Resources>
|
|
<ResourceDictionary>
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<ResourceDictionary Source="EgtWPFLibDictionary.xaml"/>
|
|
<ResourceDictionary Source="EgtWPFLibDarkDictionary.xaml"/>
|
|
</ResourceDictionary.MergedDictionaries>
|
|
</ResourceDictionary>
|
|
</Window.Resources>
|
|
|
|
<!-- Definizione della MessageBox -->
|
|
<Border Style="{DynamicResource EgtMsgBox_Border}">
|
|
<Grid Name="EgtMsgBoxGrid">
|
|
<TextBlock Name="TitleTxBl" FontSize="{DynamicResource EgtMsgBox_TitleFontSize}"
|
|
VerticalAlignment="Center" HorizontalAlignment="Center" />
|
|
<Image Name="IconImg" HorizontalAlignment="left" VerticalAlignment="Top" Height="70" Width="70"/>
|
|
<TextBlock Name="TextTxBl" FontSize="{DynamicResource EgtMsgBox_TextFontSize}"
|
|
VerticalAlignment="Center" HorizontalAlignment="Left" TextWrapping="WrapWithOverflow" />
|
|
<ProgressBar Name="LoadingPrBr" Grid.Row="2" Minimum="0" Maximum="100"/>
|
|
<Button Name="Btn1" FontSize="20" Style="{DynamicResource EgtMsgBox_Button}"/>
|
|
<Button Name="Btn2" FontSize="20" Style="{DynamicResource EgtMsgBox_Button}"/>
|
|
<Button Name="Btn3" FontSize="20" Style="{DynamicResource EgtMsgBox_Button}"/>
|
|
|
|
</Grid>
|
|
|
|
</Border>
|
|
|
|
</Window>
|