ColorDropBox.xaml 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. <UserControl
  2. x:Class="PDF_Master.CustomControl.ColorDropBox"
  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:local="clr-namespace:PDF_Master.CustomControl"
  7. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8. MinWidth="0"
  9. d:DesignHeight="450"
  10. d:DesignWidth="800"
  11. Background="#01000000"
  12. mc:Ignorable="d">
  13. <Grid>
  14. <Ellipse
  15. Width="20"
  16. Height="20"
  17. HorizontalAlignment="Center"
  18. VerticalAlignment="Center">
  19. <Ellipse.Fill>
  20. <DrawingBrush>
  21. <DrawingBrush.Drawing>
  22. <ImageDrawing ImageSource="../Resources/PropertyPanel/colorIcon.png">
  23. <ImageDrawing.Rect>
  24. <Rect Width="16" Height="16" />
  25. </ImageDrawing.Rect>
  26. </ImageDrawing>
  27. </DrawingBrush.Drawing>
  28. </DrawingBrush>
  29. </Ellipse.Fill>
  30. </Ellipse>
  31. </Grid>
  32. </UserControl>