星火微课系统客户端
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

PromptWindow.xaml 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <Window
  2. x:Class="XHWK.WKTool.PromptWindow"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  7. Title="PromptWindow"
  8. Width="553"
  9. Height="210"
  10. AllowsTransparency="True"
  11. BorderThickness="7"
  12. ResizeMode="NoResize"
  13. ShowInTaskbar="True"
  14. WindowStartupLocation="CenterOwner"
  15. WindowState="Normal"
  16. WindowStyle="None"
  17. mc:Ignorable="d">
  18. <Window.Effect>
  19. <DropShadowEffect
  20. BlurRadius="10"
  21. Direction="80"
  22. ShadowDepth="0"
  23. Color="#bababa" />
  24. </Window.Effect>
  25. <Grid Background="#FFFFFF">
  26. <Grid.RowDefinitions>
  27. <RowDefinition Height="auto" />
  28. <RowDefinition Height="auto" />
  29. <RowDefinition Height="auto" />
  30. </Grid.RowDefinitions>
  31. <TextBlock
  32. Grid.Row="0"
  33. Margin="25,26,0,0"
  34. FontSize="24"
  35. Text="确定删除" />
  36. <StackPanel
  37. Grid.Row="1"
  38. Margin="25,36,0,0"
  39. Orientation="Horizontal">
  40. <TextBlock
  41. FontSize="18"
  42. Foreground="#919191"
  43. Text="删除" />
  44. <TextBlock
  45. x:Name="txbName"
  46. FontSize="18"
  47. Foreground="#919191"
  48. Text="微课01" />
  49. </StackPanel>
  50. <StackPanel
  51. Grid.Row="2"
  52. Margin="0,30,0,0"
  53. HorizontalAlignment="Right"
  54. Orientation="Horizontal">
  55. <Border
  56. x:Name="borCancel"
  57. Background="#E5E5E5"
  58. CornerRadius="6">
  59. <Button
  60. x:Name="btnCancel"
  61. Width="104"
  62. Height="42"
  63. Background="Transparent"
  64. Content="取消"
  65. FontSize="18" />
  66. </Border>
  67. <Border
  68. Margin="30,0,20,0"
  69. Background="#E5E5E5"
  70. CornerRadius="6">
  71. <Button
  72. Width="104"
  73. Height="42"
  74. Background="Transparent"
  75. Content="确定"
  76. FontSize="18" />
  77. </Border>
  78. </StackPanel>
  79. </Grid>
  80. </Window>