12345678910111213141516171819202122232425262728 |
- <UserControl
- x:Class="PDF_Master.CustomControl.CompositeControl.SlidContent"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:cus="clr-namespace:PDF_Master.CustomControl"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:PDF_Master.CustomControl.CompositeControl"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- d:DesignHeight="450"
- d:DesignWidth="800"
- mc:Ignorable="d">
- <Grid>
- <RadioButton
- x:Name="BtnOpeContenu"
- Width="24"
- Height="24"
- VerticalContentAlignment="Center"
- Background="Transparent"
- Click="BtnOpeContenu_Click"
- Foreground="#616469"
- Style="{DynamicResource GreyBgRadioBtnStyle}">
- <RadioButton.Content>
- <Path Data="M12.473 9.82024L12.4724 9.8149C12.3025 8.31539 11.3804 6.54816 10.2125 4.89471C9.44101 3.80253 8.62377 2.84468 7.99999 2.16068C7.37588 2.84502 6.55811 3.8035 5.78629 4.89637C4.61796 6.55068 3.69612 8.31844 3.52726 9.81789C3.50933 9.97714 3.50032 10.1303 3.50001 10.2774M3.50001 10.2774L3.5 10.2855C3.5 12.5449 5.44491 14.4998 8 14.4998C10.5551 14.4998 12.5 12.5449 12.5 10.2855C12.5 10.1277 12.4908 9.9725 12.473 9.82024M2.00001 10.2742C2.00045 10.0682 2.01304 9.85997 2.03668 9.65003C2.46214 5.87193 6.46711 1.54973 7.66387 0.333469C7.85091 0.143391 8.14911 0.143405 8.33614 0.333486C9.53248 1.54935 13.535 5.86891 13.9629 9.64605C13.9874 9.85598 14 10.0693 14 10.2855C14 13.4414 11.3137 15.9998 8 15.9998C4.68629 15.9998 2 13.4414 2 10.2855L2.00001 10.2742Z" Fill="#616469" />
- </RadioButton.Content>
- </RadioButton>
- </Grid>
- </UserControl>
|