123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <UserControl
- x:Class="PDF_Office.Views.PropertyPanel.ViewModular.SplitScreenContent"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:AnnotPanel="clr-namespace:PDF_Office.Views.PropertyPanel.AnnotPanel"
- xmlns:Convert="clr-namespace:PDF_Office.DataConvert"
- xmlns:ViewModular="clr-namespace:PDF_Office.ViewModels.PropertyPanel.ViewModular"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:PDF_Office.Views.PropertyPanel.ViewModular"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:prism="http://prismlibrary.com/"
- Width="500"
- d:DataContext="{d:DesignInstance Type=ViewModular:SplitScreenContentViewModel}"
- d:DesignHeight="700"
- d:DesignWidth="500"
- prism:ViewModelLocator.AutoWireViewModel="True"
- mc:Ignorable="d" Background="Red">
- <Grid>
- <StackPanel
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- Orientation="Vertical">
- <Border BorderThickness="2" CornerRadius="4">
- <Border.BorderBrush>
- <VisualBrush>
- <VisualBrush.Visual>
- <Rectangle
- Width="{Binding RelativeSource={RelativeSource AncestorType={x:Type Border}}, Path=ActualWidth}"
- Height="{Binding RelativeSource={RelativeSource AncestorType={x:Type Border}}, Path=ActualHeight}"
- Stroke="Black"
- StrokeDashArray="4 3" />
- </VisualBrush.Visual>
- </VisualBrush>
- </Border.BorderBrush>
- <Button
- x:Name="BtnAddFiles"
- Width="124"
- Height="164"
- Background="Transparent"
- Style="{StaticResource btn.icon-fill}">
- <Button.Content>
- <Path Data="M13.3333 16.6667V30H16.6667V16.6667H30V13.3333H16.6667V0H13.3333V13.3333H0V16.6667H13.3333Z" Fill="#94989C" />
- </Button.Content>
- </Button>
- </Border>
- <Grid Margin="0,50,0,0">
- <Grid.ColumnDefinitions>
- <ColumnDefinition />
- <ColumnDefinition />
- </Grid.ColumnDefinitions>
- <Button
- Grid.Column="0"
- Margin="20,5"
- Background="White"
- Content="Select PDF"
- Foreground="#252629"
- Style="{StaticResource btn.link}" />
- <StackPanel
- Grid.Column="1"
- Background="Transparent"
- Orientation="Vertical">
- <Button
- x:Name="BtnSelectedFiles"
- Width="25"
- Height="25"
- Background="#EDEEF0"
- Style="{StaticResource btn.icon-fill}">
- <Button.Content>
- <Path Data="M6 7.56427L2.03039 3.59467L0.969727 4.65533L5.46967 9.15526C5.76256 9.44816 6.23743 9.44816 6.53033 9.15526L11.0303 4.65533L9.9696 3.59467L6 7.56427Z" Fill="#94989C" />
- </Button.Content>
- </Button>
- <ListBox x:Name="ListSelectedFiles" />
- </StackPanel>
- </Grid>
- </StackPanel>
- </Grid>
- </UserControl>
|