greenshot/GreenshotConfluencePlugin/Forms/ConfluencePagePicker.xaml
2016-08-16 10:37:55 +02:00

12 lines
584 B
XML

<Page x:Class="GreenshotConfluencePlugin.ConfluencePagePicker"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Loaded="Page_Loaded">
<ListView Name="PageListView" SelectionMode="Single" ItemsSource="{Binding}" SelectionChanged="PageListView_SelectionChanged" Width="480" Height="500">
<ListView.ItemTemplate>
<DataTemplate>
<Label Content="{Binding Title}"/>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</Page>