54 lines
2.3 KiB
XML
54 lines
2.3 KiB
XML
<UserControl
|
|
x:Class="OrpaonEMS.App.Views.DataLogView"
|
|
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:local="clr-namespace:OrpaonEMS.App.Views"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:syncfusion="http://schemas.syncfusion.com/wpf"
|
|
d:DesignHeight="450"
|
|
d:DesignWidth="800"
|
|
mc:Ignorable="d">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="180" />
|
|
<ColumnDefinition />
|
|
</Grid.ColumnDefinitions>
|
|
<syncfusion:SfTreeView
|
|
x:Name="sfTreeView"
|
|
ChildPropertyName="SubFiles"
|
|
ItemsSource="{Binding ImageNodeInfo}">
|
|
<syncfusion:SfTreeView.ItemTemplate>
|
|
<DataTemplate>
|
|
<Grid x:Name="grid">
|
|
<Grid Grid.Row="0">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="20" />
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid>
|
|
<Image
|
|
Width="16"
|
|
Height="16"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
Source="{Binding ImageIcon}" />
|
|
</Grid>
|
|
<Grid
|
|
Grid.Column="1"
|
|
Margin="1,0,0,0"
|
|
VerticalAlignment="Center">
|
|
<TextBlock
|
|
VerticalAlignment="Center"
|
|
FontSize="14"
|
|
Foreground="Black"
|
|
Text="{Binding ItemName}" />
|
|
</Grid>
|
|
</Grid>
|
|
</Grid>
|
|
</DataTemplate>
|
|
</syncfusion:SfTreeView.ItemTemplate>
|
|
</syncfusion:SfTreeView>
|
|
</Grid>
|
|
</UserControl>
|