|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <Window
- x:Class="XHWK.WKTool.MessageWindow"
- 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:local="clr-namespace:XHWK.WKTool"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- Title="星火微课"
- Width="446"
- Height="188"
- d:DesignHeight="250"
- AllowsTransparency="True"
- MouseMove="Window_MouseMove"
- ResizeMode="NoResize"
- ShowInTaskbar="False"
- Topmost="True"
- WindowStartupLocation="CenterScreen"
- WindowState="Normal"
- WindowStyle="None"
- mc:Ignorable="d">
-
- <Border BorderBrush="#3f6fff" BorderThickness="1">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="42" />
- <RowDefinition Height="*" />
- <RowDefinition Height="60" />
- </Grid.RowDefinitions>
- <Grid Grid.Row="0" Background="#3f6fff">
- <Label
- x:Name="lblTitle"
- Margin="14,0,0,0"
- HorizontalAlignment="Left"
- VerticalAlignment="Center"
- HorizontalContentAlignment="Stretch"
- VerticalContentAlignment="Stretch"
- Content="提示"
- FontSize="16"
- Foreground="White" />
-
- <Button
- x:Name="borCancel"
- Grid.Row="0"
- Width="46"
- HorizontalAlignment="Right"
- VerticalAlignment="Stretch"
- Click="BtnCancel_Click"
- Content="×"
- Cursor="Hand"
- FontSize="30"
- Foreground="White" />
- </Grid>
- <Grid Grid.Row="1">
- <TextBlock
- x:Name="tbkContent"
- Grid.Row="1"
- Margin="20,0,20,0"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- FontSize="16"
- Foreground="#333333"
- Text=""
- TextWrapping="Wrap" />
- </Grid>
- <Grid Grid.Row="2" Margin="0,0,0,0">
-
- <Border
- x:Name="borOk"
- Margin="0,0,10,0"
- HorizontalAlignment="Right"
- VerticalAlignment="Center"
- Background="#3f6fff"
- CornerRadius="6">
- <Button
- x:Name="BtnOK"
- Width="76"
- Height="30"
- Background="#00000000"
- BorderBrush="{x:Null}"
- Click="BtnOK_Click"
- Content="确定"
- Cursor="Hand"
- FontSize="14"
- Foreground="White"
- IsDefault="True" />
- </Border>
-
- </Grid>
-
- </Grid>
-
- </Border>
-
-
- </Window>
|