QuoteDesigns.xaml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <UserControl x:Class="PRSDesktop.QuoteDesigns"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:PRSDesktop"
  7. xmlns:syncfusion="http://schemas.syncfusion.com/wpf"
  8. mc:Ignorable="d"
  9. d:DesignHeight="450" d:DesignWidth="800">
  10. <UserControl.Resources>
  11. <ControlTemplate x:Key="VerticalSplitter">
  12. <Grid Background="{TemplateBinding Background}" Width="4">
  13. <Button x:Name="PART_Left" Visibility="Collapsed" />
  14. <Button x:Name="PART_Right" Visibility="Collapsed" />
  15. <StackPanel Margin="0" Orientation="Vertical" VerticalAlignment="Center" HorizontalAlignment="Center">
  16. <Ellipse Fill="Silver" HorizontalAlignment="Center" Height="2" Width="2" Opacity="1"
  17. Margin="0,2,0,0" />
  18. <Ellipse Fill="Silver" HorizontalAlignment="Center" Height="2" Width="2" Opacity="1"
  19. Margin="0,2,0,0" />
  20. <Ellipse Fill="Silver" HorizontalAlignment="Center" Height="2" Width="2" Opacity="1"
  21. Margin="0,2,0,0" />
  22. <Ellipse Fill="Silver" HorizontalAlignment="Center" Height="2" Width="2" Opacity="1"
  23. Margin="0,2,0,0" />
  24. <Ellipse Fill="Silver" HorizontalAlignment="Center" Height="2" Width="2" Opacity="1"
  25. Margin="0,2,0,0" />
  26. <Ellipse Fill="Silver" HorizontalAlignment="Center" Height="2" Width="2" Opacity="1"
  27. Margin="0,2,0,0" />
  28. <Ellipse Fill="Silver" HorizontalAlignment="Center" Height="2" Width="2" Opacity="1"
  29. Margin="0,2,0,0" />
  30. </StackPanel>
  31. </Grid>
  32. </ControlTemplate>
  33. </UserControl.Resources>
  34. <Grid>
  35. <Grid.ColumnDefinitions>
  36. <ColumnDefinition Width="350" />
  37. <ColumnDefinition Width="4" />
  38. <ColumnDefinition Width="*" />
  39. </Grid.ColumnDefinitions>
  40. <local:QuoteDesignGrid Grid.Column="0" x:Name="Designs" />
  41. <syncfusion:SfGridSplitter Grid.Column="1" Grid.ColumnSpan="2" Name="PART_DetailSplitter"
  42. ResizeBehavior="PreviousAndNext" Height="4" Background="Transparent"
  43. Template="{StaticResource VerticalSplitter}">
  44. <syncfusion:SfGridSplitter.PreviewStyle>
  45. <Style TargetType="Control">
  46. <Setter Property="Background" Value="Gray" />
  47. <Setter Property="Template">
  48. <Setter.Value>
  49. <ControlTemplate TargetType="Control">
  50. <Grid x:Name="Root" Opacity="0.5">
  51. <Rectangle Fill="{TemplateBinding Background}" />
  52. </Grid>
  53. </ControlTemplate>
  54. </Setter.Value>
  55. </Setter>
  56. </Style>
  57. </syncfusion:SfGridSplitter.PreviewStyle>
  58. </syncfusion:SfGridSplitter>
  59. <local:QuoteDesignItemGrid Grid.Column="2" x:Name="Items" />
  60. </Grid>
  61. </UserControl>