星火微课系统客户端
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.

PromptWindow.xaml 2.0KB

4 anni fa
4 anni fa
123456789101112131415161718192021222324252627282930313233343536
  1. <Window x:Class="XHWK.WKTool.PromptWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:XHWK.WKTool"
  7. mc:Ignorable="d"
  8. Title="PromptWindow" Height="210" Width="553" WindowStartupLocation="CenterOwner"
  9. WindowStyle="None" AllowsTransparency="True" WindowState="Normal"
  10. ShowInTaskbar="True" ResizeMode="NoResize"
  11. BorderThickness="7">
  12. <Window.Effect>
  13. <DropShadowEffect BlurRadius="10" Color="#bababa" Direction="80" ShadowDepth="0"/>
  14. </Window.Effect>
  15. <Grid Background="#FFFFFF">
  16. <Grid.RowDefinitions>
  17. <RowDefinition Height="auto"/>
  18. <RowDefinition Height="auto"/>
  19. <RowDefinition Height="auto"/>
  20. </Grid.RowDefinitions>
  21. <TextBlock Grid.Row="0" Text="确定删除" FontSize="24" Margin="25,26,0,0"/>
  22. <StackPanel Grid.Row="1" Orientation="Horizontal" Margin="25,36,0,0">
  23. <TextBlock Text="删除" FontSize="18" Foreground="#919191" />
  24. <TextBlock x:Name="txbName" Text="微课01" FontSize="18" Foreground="#919191"/>
  25. </StackPanel>
  26. <StackPanel Grid.Row="2" Orientation="Horizontal" HorizontalAlignment="Right" Margin="0,30,0,0">
  27. <Border x:Name="borCancel" Background="#E5E5E5" CornerRadius="6" >
  28. <Button x:Name="btnCancel" Width="104" Height="42" Content="取消" FontSize="18" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Background="Transparent"/>
  29. </Border>
  30. <Border Background="#E5E5E5" CornerRadius="6" Margin="30,0,20,0">
  31. <Button Width="104" Height="42" Content="确定" FontSize="18" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Background="Transparent"/>
  32. </Border>
  33. </StackPanel>
  34. </Grid>
  35. </Window>