You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
1.4 KiB
20 lines
1.4 KiB
<Window x:Class="IOTContainer.View.MessBoxWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:local="clr-namespace:IOTContainer.View"
|
|
mc:Ignorable="d"
|
|
Title="MessBoxWindow" Height="259" Width="480" ResizeMode="NoResize" WindowStyle="None" WindowStartupLocation="CenterOwner" Topmost="True" Background="Transparent" AllowsTransparency="True">
|
|
<Border Background="#FFFFFF" CornerRadius="7">
|
|
<Grid>
|
|
<Grid Height="30" VerticalAlignment="Top" Background="Transparent" MouseMove="Grid_MouseMove"/>
|
|
<Button Style="{StaticResource CloseButtonStyle}" Click="CloseWinClick"/>
|
|
<StackPanel Margin="0,65.5,0,0">
|
|
<Image x:Name="img" Source="/IOTContainer;component/Resources/MainViewRes/success.jpg" Height="72" Width="72" HorizontalAlignment="Center" VerticalAlignment="Top"/>
|
|
<TextBox x:Name="text" Style="{StaticResource MesLabelStyle}" Text="{Binding Text}"/>
|
|
<TextBox x:Name="detail" Style="{StaticResource MesDetailLabelStyle}" Text="{Binding Detail}"/>
|
|
</StackPanel>
|
|
</Grid>
|
|
</Border>
|
|
</Window>
|
|
|