53 lines
2.3 KiB
XML
53 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">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="100*" />
|
|
<ColumnDefinition Width="185*" />
|
|
<ColumnDefinition Width="185*" />
|
|
<ColumnDefinition Width="30*" />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="6*" />
|
|
<RowDefinition Height="7*" />
|
|
</Grid.RowDefinitions>
|
|
<Canvas x:Name="CanvasLinks"
|
|
Grid.Column="1"
|
|
Grid.ColumnSpan="2"
|
|
Grid.Row="0"
|
|
Height="560">
|
|
<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}" />
|
|
<ScrollViewer Canvas.Top="56"
|
|
Canvas.Left="0"
|
|
Width="{Binding ActualWidth, ElementName=CanvasLinks, Mode=OneWay}"
|
|
MinHeight="60"
|
|
MaxHeight="494"
|
|
HorizontalScrollBarVisibility="Disabled"
|
|
VerticalScrollBarVisibility="Auto">
|
|
<StackPanel x:Name="CustomLinkPanel"
|
|
x:FieldModifier="private"
|
|
Orientation="Vertical" />
|
|
</ScrollViewer>
|
|
</Canvas>
|
|
</Grid>
|
|
</UserControl>
|