Statistics
| Branch: | Revision:

root / trunk / Pithos.Client.WPF / Shell / FeedbackView.xaml @ 6b0de454

History | View | Annotate | Download (1.6 kB)

1
<Window x:Class="Pithos.Client.WPF.Shell.FeedbackView"
2
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4
        Title="FeedbackView" Height="389" Width="455" xmlns:my="clr-namespace:Pithos.Client.WPF.Converters" Icon="/PithosPlus;component/Images/PithosTaskbar.png">
5
    <Window.Resources>
6
        <my:EmptyToVisibilityConverter x:Key="EmptyToVisible" />
7
    </Window.Resources>
8
    <Grid>
9
        <Grid.RowDefinitions>
10
            <RowDefinition Height="Auto"/>
11
            <RowDefinition Height="Auto"/>
12
            <RowDefinition Height="*"/>
13
            <RowDefinition Height="Auto"/>
14
        </Grid.RowDefinitions>
15

    
16
        <StackPanel Grid.Row="0">
17
            <TextBlock Text="Pithos+ is currently in alpha test and we would appreciate any kind of feedback. We welcome any suggestions, questions and bug reports you may have" TextWrapping="Wrap" Margin="5,10" />
18
            <TextBlock Text="Please describe your problem here providing as many details as possible" Margin="5,10" FontWeight="Bold" TextWrapping="Wrap"/>
19
        </StackPanel>
20
        <TextBox x:Name="Message" Grid.Row="1" HorizontalAlignment="Stretch" TextWrapping="Wrap" AcceptsReturn="True" Height="100" />
21
        <Expander Header="Additional Data" IsExpanded="True" VerticalAlignment="Stretch" Grid.Row="2">
22
            <TextBox x:Name="Data" VerticalAlignment="Stretch" VerticalScrollBarVisibility="Auto" />
23
        </Expander>
24
        <Button Content="OK" x:Name="Send" Width="50" Margin="10" HorizontalAlignment="Center" VerticalAlignment="Bottom" Grid.Row="3"/>
25
    </Grid>
26
</Window>