90 lines
4.7 KiB
XML
90 lines
4.7 KiB
XML
<Window x:Class="eDosStation.About"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
|
|
xmlns:local="clr-namespace:eDosStation"
|
|
mc:Ignorable="d"
|
|
Title="About" Height="658.389" Width="800" FontFamily="Segoe UI"
|
|
WindowStartupLocation="CenterScreen" WindowStyle="SingleBorderWindow" WindowState="Normal" >
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="*" />
|
|
<RowDefinition Height="auto" />
|
|
</Grid.RowDefinitions>
|
|
<FlowDocumentScrollViewer Grid.Row="1" ScrollViewer.CanContentScroll="False" ScrollViewer.VerticalScrollBarVisibility="Auto">
|
|
<FlowDocument>
|
|
|
|
<Paragraph FontSize="30" >
|
|
<Image Source="/Images/EPD-MK3.png" VerticalAlignment="Center" Stretch="None" />
|
|
<Run BaselineAlignment="Center">eDos EPD station</Run>
|
|
</Paragraph>
|
|
<Paragraph>2021-2024 Version
|
|
<TextBlock Name="aVersion" Text="1.1" />
|
|
</Paragraph>
|
|
<Table BorderBrush="#FF1E8CED" BorderThickness="1" >
|
|
<Table.Columns>
|
|
<TableColumn Width="200" ></TableColumn>
|
|
<TableColumn Width="auto" ></TableColumn>
|
|
</Table.Columns>
|
|
<TableRowGroup >
|
|
<TableRow>
|
|
<TableCell ><Paragraph TextAlignment="Right" Margin="0,5,20,0">Station ID</Paragraph></TableCell>
|
|
<TableCell>
|
|
<Paragraph>
|
|
<Run BaselineAlignment="Bottom" Name="stationID" Text="99" />
|
|
</Paragraph>
|
|
</TableCell>
|
|
</TableRow>
|
|
<TableRow>
|
|
<TableCell >
|
|
<Paragraph TextAlignment="Right" Margin="0,0,20,0" >Remote sql alias</Paragraph>
|
|
</TableCell>
|
|
<TableCell>
|
|
<Paragraph>
|
|
<Run BaselineAlignment="Bottom" x:Name="remoteSql" Text="sql"/>
|
|
</Paragraph>
|
|
</TableCell>
|
|
</TableRow>
|
|
<TableRow>
|
|
<TableCell >
|
|
<Paragraph TextAlignment="Right" Margin="0,0,20,0" >Local sql alias</Paragraph>
|
|
</TableCell>
|
|
<TableCell>
|
|
<Paragraph>
|
|
<Run BaselineAlignment="Bottom" x:Name="localSql" Text="sql"/>
|
|
</Paragraph>
|
|
</TableCell>
|
|
</TableRow>
|
|
<TableRow>
|
|
<TableCell >
|
|
<Paragraph TextAlignment="Right" Margin="0,0,20,0" >Check users quiz</Paragraph>
|
|
</TableCell>
|
|
<TableCell>
|
|
<Paragraph>
|
|
<Run BaselineAlignment="Bottom" x:Name="checkUser" Text=""/>
|
|
</Paragraph>
|
|
</TableCell>
|
|
</TableRow>
|
|
</TableRowGroup>
|
|
</Table>
|
|
|
|
<Paragraph Margin="50,10,0,10" FontStyle="Italic">
|
|
<Run>Architecture and testing by Isabelle Majkowski, Luc Praet, Raf Aarts, Eric Boogers, Kris Bruns</Run>
|
|
<LineBreak />
|
|
<Run>Feedback by Cools Job, Thijs Bart, Mutert Peter, Smets Gunter</Run>
|
|
<LineBreak />
|
|
<Run>Developed by Luc Vandenbroucke</Run>
|
|
<LineBreak />
|
|
<Run>Technical info by Thermo</Run>
|
|
<LineBreak/>
|
|
<Run>and lots of research ...</Run>
|
|
</Paragraph>
|
|
</FlowDocument>
|
|
</FlowDocumentScrollViewer>
|
|
|
|
<telerik:RadButton Grid.Row="2" Content="OK" Width="200" HorizontalAlignment="Center" Click="RadButton_Click" Style="{DynamicResource OkCancelButton}" />
|
|
</Grid>
|
|
</Window>
|