CBButtonControls.xaml 971 B

12345678910111213141516
  1. <UserControl x:Class="CollaborativePlatformProject.FormLibrary.CheckboxButton.CBButtonControls"
  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:CollaborativePlatformProject.FormLibrary.CheckboxButton"
  7. mc:Ignorable="d" Width="80" Height="80" Background="Transparent">
  8. <StackPanel PreviewMouseLeftButtonUp="UIElement_OnPreviewMouseLeftButtonUp">
  9. <StackPanel Margin="5" Height="32" Width="32" Background="Aquamarine">
  10. </StackPanel>
  11. <TextBlock Name="tb_name" HorizontalAlignment="Center" />
  12. <CheckBox Name="cb_check" Click="Cb_check_OnClick" Margin="0 5 0 0" HorizontalAlignment="Center" />
  13. </StackPanel>
  14. </UserControl>