greenshot/GreenshotConfluencePlugin/Forms/ConfluencePagePicker.xaml

12 lines
590 B
XML

<Page x:Class="GreenshotConfluencePlugin.Forms.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>