greenshot/GreenshotConfluencePlugin/Forms/ConfluenceTreePicker.xaml
2012-02-02 10:49:14 +00:00

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>