About.xaml 1.0 KB

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