33 lines
1.4 KiB
XML
33 lines
1.4 KiB
XML
<UserControl
|
|
d:DesignHeight="450"
|
|
d:DesignWidth="800"
|
|
mc:Ignorable="d"
|
|
x:Class="FileTime.GuiApp.App.Views.PathPresenter"
|
|
xmlns="https://github.com/avaloniaui"
|
|
xmlns:coremodels="using:FileTime.Core.Models"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
<ItemsControl ItemsSource="{Binding Converter={StaticResource SplitStringConverter}, ConverterParameter={x:Static coremodels:Constants.SeparatorChar}}">
|
|
<ItemsControl.ItemsPanel>
|
|
<ItemsPanelTemplate>
|
|
<StackPanel Orientation="Horizontal" />
|
|
</ItemsPanelTemplate>
|
|
</ItemsControl.ItemsPanel>
|
|
<ItemsControl.ItemTemplate>
|
|
<DataTemplate>
|
|
<StackPanel Orientation="Horizontal">
|
|
<TextBlock
|
|
Classes="PathPresenterItem"
|
|
PointerPressed="InputElement_OnPointerPressed"
|
|
Text="{Binding}" />
|
|
<TextBlock
|
|
Foreground="{DynamicResource LightForegroundBrush}"
|
|
Margin="5,0,5,0"
|
|
Text="/" />
|
|
</StackPanel>
|
|
</DataTemplate>
|
|
</ItemsControl.ItemTemplate>
|
|
</ItemsControl>
|
|
</UserControl>
|