Missing file
[opentx.git] / sound / speaker / aboutWindow.xaml
blobc808ba68854ab5b457ccf3dea4e8aaf10865ee08
1 <Window x:Class="OpenTXspeak.AboutWindow"
2         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4         Title="OpenTX About Window" Height="350" Width="357" Icon="/OpenTXspeaker;component/icon.ico">
5     <Grid>
6         <StackPanel>
7             <StackPanel Orientation="Horizontal">
8                 <StackPanel Orientation="Vertical">
9                     <StackPanel Orientation="Horizontal" Width="240" HorizontalAlignment="Left">
10                         <Label Content="Product:">
11                         </Label>
12                         <Label Content="Product Name" Name="lblProductName"/>
13                     </StackPanel>
14                     <StackPanel Orientation="Horizontal"  HorizontalAlignment="Left">
15                         <Label Content="Version:"/>
16                         <Label Content="Version" Name="lblVersion"/>
17                     </StackPanel>
18                     <StackPanel Orientation="Horizontal" HorizontalAlignment="Left">
19                         <Label Content="Company:" />
20                         <Label Content="Company" Name="lblCompanyName"/>
21                     </StackPanel>
22                     <Label Content="Copyright" Name="lblCopyright" HorizontalAlignment="Left" />
23                 </StackPanel>
24                 <TextBlock>
25                         <Hyperlink NavigateUri="http://www.open-tx.org/" RequestNavigate="Hyperlink_RequestNavigate">
26                         <Image Stretch="Uniform" Height="90" Width="90" Cursor="Hand" Source="/OpenTXspeaker;component/icon.ico" />
27                     </Hyperlink>
28                 </TextBlock>
29             </StackPanel>
30             <StackPanel Orientation="Vertical">
31                 <TextBlock Margin="5,5,5,0" TextWrapping="Wrap"
32                     Text="This application is used to edit OpenTX voice strings and generate audio files for use in the FrSky Taranis radio." />
33                 <TextBlock Margin="5,10,5,0" TextWrapping="Wrap"
34                     Text= "This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version." />
35                 <TextBlock Margin="5,5,5,0" TextWrapping="Wrap"
36                     Text= "This program is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose." />
37                 <StackPanel Orientation="Horizontal">
38                     <TextBlock TextWrapping="Wrap" Margin="5,5,5,0" Width="230"
39                         Text= "See the GNU General Public License for more details."  />
40                     <TextBlock>
41                         <Hyperlink NavigateUri="http://www.gnu.org/licenses/" RequestNavigate="Hyperlink_RequestNavigate">
42                             <Image  Width="88"  Margin="0,5,0,0" Cursor="Hand" Source="/OpenTXspeaker;component/GPLv3_Logo.png" />
43                         </Hyperlink>
44                     </TextBlock>
45                 </StackPanel>
46             </StackPanel>
47         </StackPanel>
48     </Grid>
49 </Window>