Files
CustomerPanel-Test/UserControls/CustomLinks.xaml
2026-03-05 09:56:57 +01:00

44 lines
1.8 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="370*" />
<ColumnDefinition Width="30*" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="6*" />
<RowDefinition Height="7*" />
</Grid.RowDefinitions>
<Canvas Grid.Column="1"
Grid.ColumnSpan="2"
Grid.Row="0">
<Image Source="{DynamicResource appbar_star}"
Width="48"
Tag="MAINICO" />
<Label Foreground="{DynamicResource mainForeground}"
FontSize="16"
Canvas.Top="10"
Canvas.Left="40"
Content="{x:Static resx:Resources.CustomLink}" />
</Canvas>
<Canvas Grid.Column="1"
Grid.ColumnSpan="2"
Grid.Row="1">
<StackPanel x:Name="CustomLinkPanel"
x:FieldModifier="private"
Orientation="Vertical"
Canvas.Top="50" />
</Canvas>
</Grid>
</UserControl>