11 lines
891 B
XML
11 lines
891 B
XML
<localView:BeWoView x:Class="BeWo.View.Report.FLSReport.FLSOverview" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:localView="clr-namespace:BeWo.View" xmlns:localFLSReportView="clr-namespace:BeWo.View.Report.FLSReport" Height="Auto" Width="Auto" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Focusable="True">
|
|
|
|
<ListView BorderThickness="0" HorizontalContentAlignment="Stretch" ScrollViewer.CanContentScroll="False" HorizontalAlignment="Stretch" SelectionChanged="listview_list_SelectionChanged" VerticalAlignment="Stretch" Name="listview_list" ItemsSource="{Binding}" Background="{x:Null}">
|
|
<ListView.ItemTemplate>
|
|
<DataTemplate>
|
|
<localFLSReportView:FLSOverviewItem OverviewRow="{Binding}" />
|
|
</DataTemplate>
|
|
</ListView.ItemTemplate>
|
|
</ListView>
|
|
|
|
</localView:BeWoView> |