mirror of
https://github.com/greenshot/greenshot
synced 2025-07-16 10:03:44 -07:00
12 lines
No EOL
584 B
XML
12 lines
No EOL
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> |