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