mirror of
https://github.com/greenshot/greenshot.git
synced 2025-01-10 15:52:48 -08:00
affbfb0ce6
git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@1621 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
16 lines
843 B
XML
16 lines
843 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Page x:Class="GreenshotConfluencePlugin.ConfluenceTreePicker"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:l="clr-namespace:TranslationByMarkupExtension"
|
|
Loaded="Page_Loaded">
|
|
<Grid Width="500">
|
|
<TreeView Name="ConfluenceTreeView" MaxHeight="500"
|
|
Height="Auto" Width="Auto" Margin="10,10,0,13"
|
|
VerticalAlignment="Top" HorizontalAlignment="Left" />
|
|
<Border Name="ShowBusy" BorderBrush="Black" BorderThickness="1" Background="#80000000" Visibility="Visible">
|
|
<TextBlock Margin="0" TextWrapping="Wrap" HorizontalAlignment="Center" VerticalAlignment="Center"
|
|
FontSize="18" FontWeight="Bold" Foreground="#7EFFFFFF" Text="{l:Translate loading}"/>
|
|
</Border>
|
|
</Grid>
|
|
</Page> |