12345678910111213141516171819 |
- <Window x:Class="Aitex.UI.Charting.View.About"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- Title="About DataAnalysis System" Height="146" Width="360"
- WindowStartupLocation="CenterOwner"
- ResizeMode="NoResize"
- Icon="/DataAnalysisControl;component/Charting/View/charting.ico">
- <Window.Resources>
- <Style TargetType="{x:Type Label}">
- <Setter Property="Foreground" Value="Black"/>
- </Style>
- </Window.Resources>
- <Grid>
- <Label Content="Aitex Limited" Height="28" HorizontalAlignment="Left" Margin="121,44,0,0" Name="label1" VerticalAlignment="Top" />
- <Label Content="Copyright © 2016" Height="28" HorizontalAlignment="Left" Margin="120,69,0,0" Name="label2" VerticalAlignment="Top" />
- <Label Content="DataAnalysis Tool" Height="28" HorizontalAlignment="Left" Margin="121,14,0,0" Name="label3" VerticalAlignment="Top" FontWeight="Bold" />
- </Grid>
- </Window>
|