|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <Window
- x:Class="XHWK.WKTool.PromptWindow"
- 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"
- Title="PromptWindow"
- Width="553"
- Height="210"
- AllowsTransparency="True"
- BorderThickness="7"
- ResizeMode="NoResize"
- ShowInTaskbar="True"
- WindowStartupLocation="CenterOwner"
- WindowState="Normal"
- WindowStyle="None"
- mc:Ignorable="d">
- <Window.Effect>
- <DropShadowEffect
- BlurRadius="10"
- Direction="80"
- ShadowDepth="0"
- Color="#bababa" />
- </Window.Effect>
- <Grid Background="#FFFFFF">
- <Grid.RowDefinitions>
- <RowDefinition Height="auto" />
- <RowDefinition Height="auto" />
- <RowDefinition Height="auto" />
- </Grid.RowDefinitions>
- <TextBlock
- Grid.Row="0"
- Margin="25,26,0,0"
- FontSize="24"
- Text="确定删除" />
- <StackPanel
- Grid.Row="1"
- Margin="25,36,0,0"
- Orientation="Horizontal">
- <TextBlock
- FontSize="18"
- Foreground="#919191"
- Text="删除" />
- <TextBlock
- x:Name="txbName"
- FontSize="18"
- Foreground="#919191"
- Text="微课01" />
- </StackPanel>
-
- <StackPanel
- Grid.Row="2"
- Margin="0,30,0,0"
- HorizontalAlignment="Right"
- Orientation="Horizontal">
- <Border
- x:Name="borCancel"
- Background="#E5E5E5"
- CornerRadius="6">
- <Button
- x:Name="btnCancel"
- Width="104"
- Height="42"
- Background="Transparent"
- Content="取消"
- FontSize="18" />
- </Border>
- <Border
- Margin="30,0,20,0"
- Background="#E5E5E5"
- CornerRadius="6">
- <Button
- Width="104"
- Height="42"
- Background="Transparent"
- Content="确定"
- FontSize="18" />
- </Border>
- </StackPanel>
- </Grid>
- </Window>
|