123456789101112131415161718192021222324252627282930 |
- <Window x:Class="Aitex.Core.UI.Dialog.NotificationDialogNoDelay"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- BorderThickness="0"
- Title="information" ShowInTaskbar="False" Topmost="True"
- WindowStartupLocation="CenterOwner" ResizeMode="NoResize" FontFamily="SimSun" SizeToContent="WidthAndHeight">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="45" />
- <RowDefinition Height="150" />
- <RowDefinition Height="45"/>
- </Grid.RowDefinitions>
- <Grid Background="DodgerBlue" Name="topGrid">
- <TextBlock Height="31" HorizontalAlignment="Left" Margin="45,9,0,0" Name="_msgTitle" Text=" " VerticalAlignment="Top" Width="437" FontFamily="Arial,SimSun" FontSize="22" Foreground="White" />
- <Image Height="37" HorizontalAlignment="Left" Margin="3,5,0,0" Name="image1" Stretch="Fill" VerticalAlignment="Top" Width="37" Source="/MECF.Framework.Common;component/Resources/CustomDialogInformation.png" />
- </Grid>
- <Grid Grid.Row="1">
- <ScrollViewer>
- <ScrollViewer.Content>
- <Border BorderThickness="0,1" BorderBrush="Gray">
- <TextBlock Grid.Row="1" Height="Auto" HorizontalAlignment="Left" Margin="12,10,0,0" Name="_msgContent" Text=" " VerticalAlignment="Top" Width="450" TextWrapping="Wrap" FontSize="16" FontFamily="Arial,SimSun" />
- </Border>
- </ScrollViewer.Content>
- </ScrollViewer>
- </Grid>
- <Grid Grid.Row="2">
- <Button Content="{DynamicResource GlobalLableButtonOk}" Height="30" HorizontalAlignment="Left" Margin="355,7,0,0" Name="buttonOK" VerticalAlignment="Top" Width="111" FontSize="18" FontFamily="Arial,SimSun" Click="buttonOK_Click" IsDefault="True" IsCancel="True" />
- </Grid>
- </Grid>
- </Window>
|