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

MinToolbar.xaml 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <Window
  2. x:Class="XHWK.WKTool.MinToolbar"
  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="MinToolbar"
  8. Width="20"
  9. Height="50"
  10. Margin="0"
  11. AllowsTransparency="True"
  12. Left="0"
  13. ShowInTaskbar="False"
  14. Top="0"
  15. Topmost="True"
  16. WindowStyle="None"
  17. mc:Ignorable="d">
  18. <Window.Background>
  19. <SolidColorBrush Opacity="0" Color="#00000000" />
  20. </Window.Background>
  21. <Viewbox>
  22. <Grid>
  23. <Border Background="White" CornerRadius="3">
  24. <Grid
  25. x:Name="ButtonMin"
  26. Width="3"
  27. Height="25"
  28. Margin="0.5"
  29. MouseEnter="buttonMin_MouseEnter">
  30. <Border
  31. x:Name="BorderBlack"
  32. Background="#2d8cf0"
  33. BorderBrush="{TemplateBinding Control.BorderBrush}"
  34. BorderThickness="0"
  35. CornerRadius="3" />
  36. </Grid>
  37. </Border>
  38. </Grid>
  39. </Viewbox>
  40. </Window>