Files
CustomerPanel-Test/UserControls/CustomLinks.xaml

55 lines
2.3 KiB
XML

<UserControl x:Class="C4IT_CustomerPanel.UserControls.CustomLinks"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:C4IT_CustomerPanel.UserControls"
xmlns:resx="clr-namespace:C4IT_CustomerPanel.Properties"
mc:Ignorable="d"
d:DesignHeight="450"
d:DesignWidth="800">
<Grid Width="500"
Height="560">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="100*" />
<ColumnDefinition Width="370*" />
<ColumnDefinition Width="30*" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="110" />
<RowDefinition Height="450" />
</Grid.RowDefinitions>
<Canvas Grid.Column="1"
Grid.ColumnSpan="2"
Grid.Row="0">
<Image Source="{DynamicResource appbar_star}"
Width="36"
Height="36"
Margin="0,6,0,0"
Tag="MAINICO" />
<Label Foreground="{DynamicResource sectionTitleColor}"
FontSize="19"
FontWeight="SemiBold"
Canvas.Top="8"
Canvas.Left="40"
Content="{x:Static resx:Resources.CustomLink}" />
</Canvas>
<Canvas Grid.Column="1"
Grid.ColumnSpan="2"
Grid.Row="1"
Height="450">
<ScrollViewer Canvas.Top="56"
Canvas.Left="0"
Width="350"
Height="374"
HorizontalScrollBarVisibility="Disabled"
VerticalScrollBarVisibility="Auto">
<StackPanel x:Name="CustomLinkPanel"
x:FieldModifier="private"
Orientation="Vertical" />
</ScrollViewer>
</Canvas>
</Grid>
</UserControl>