This repository has been archived on 2022-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
DevOpsOpenHack/MobileApps/MyDriving/MyDriving.UWP/Controls/SplitViewButtonContent.xaml

15 lines
792 B
Plaintext
Raw Permalink Normal View History

2022-11-03 20:41:13 +00:00
<UserControl
x:Class="MyDriving.UWP.Controls.SplitViewButtonContent"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
d:DesignHeight="300"
d:DesignWidth="400">
<StackPanel Orientation="Horizontal" HorizontalAlignment="Left" Background="Transparent">
<Image Name="Image" Style="{StaticResource SplitViewIconStyle}" Source="{x:Bind DefaultImageSource}"/>
<TextBlock Name="Label" Style="{StaticResource SplitViewText}" Foreground="{x:Bind defaultTextColor}" Text="{x:Bind LabelText}"/>
</StackPanel>
</UserControl>