DbConnConfig.xaml 3.0 KB

123456789101112131415161718192021222324252627282930
  1. <Window x:Class="Aitex.UI.Charting.View.DbConnConfig"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. Title="{DynamicResource GlobalLableDatabaseConnection}" WindowStartupLocation="CenterOwner"
  5. mc:Ignorable="d"
  6. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  7. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8. Height="214" Width="230"
  9. ResizeMode="NoResize">
  10. <Window.Resources>
  11. <Style TargetType="{x:Type Label}">
  12. <Setter Property="Foreground" Value="Black"/>
  13. </Style>
  14. </Window.Resources>
  15. <Grid>
  16. <Label Content="{DynamicResource GlobalLableAddress}" FontSize="13" Height="28" HorizontalAlignment="Left" Margin="0,12,0,0" Width="70" HorizontalContentAlignment="Right" Name="label1" VerticalAlignment="Top" />
  17. <Label Content="{DynamicResource GlobalLablePort}" FontSize="13" Height="28" HorizontalAlignment="Left" Margin="0,37,0,0" Name="label2" Width="70" HorizontalContentAlignment="Right" VerticalAlignment="Top" />
  18. <Label Content="{DynamicResource GlobalLableUserName}" FontSize="13" Height="28" HorizontalAlignment="Left" Margin="0,57,0,0" Name="label3" Width="70" HorizontalContentAlignment="Right" VerticalAlignment="Top" />
  19. <Label Content="{DynamicResource GlobalLablePassword}" FontSize="13" Height="28" HorizontalAlignment="Left" Margin="0,85,0,0" Name="label4" Width="79" HorizontalContentAlignment="Right" VerticalAlignment="Top" />
  20. <Label Content="{DynamicResource GlobalLableDatabaseName}" FontSize="13" Height="28" HorizontalAlignment="Left" Margin="0,110,0,0" Name="label5" Width="79" HorizontalContentAlignment="Right" VerticalAlignment="Top" />
  21. <TextBox FontSize="13" Height="23" HorizontalAlignment="Left" Margin="83,12,0,0" VerticalAlignment="Top" Width="120" Text="{Binding Ip,Mode=TwoWay}" />
  22. <TextBox FontSize="13" Height="23" HorizontalAlignment="Left" Margin="83,37,0,0" VerticalAlignment="Top" Width="120" Text="{Binding Port,Mode=TwoWay}"/>
  23. <TextBox FontSize="13" Height="23" HorizontalAlignment="Left" Margin="83,62,0,0" VerticalAlignment="Top" Width="120" Text="{Binding User,Mode=TwoWay}"/>
  24. <TextBox FontSize="13" Height="23" HorizontalAlignment="Left" Margin="83,112,0,0" VerticalAlignment="Top" Width="120" Text="{Binding DbName,Mode=TwoWay}"/>
  25. <Button Content="{DynamicResource GlobalLableOK}" Height="23" HorizontalAlignment="Left" Margin="22,148,0,0" VerticalAlignment="Top" Width="75" Command="{Binding TestDbConnectionCommand}" />
  26. <Button Content="{DynamicResource GlobalLableCancel}" Height="23" Margin="107,148,0,0" VerticalAlignment="Top" Command="{Binding CloseCommand}" HorizontalAlignment="Left" Width="75" />
  27. <PasswordBox Height="23" HorizontalAlignment="Left" Margin="83,87,0,0" VerticalAlignment="Top" Width="120" Name="pwdbox" />
  28. </Grid>
  29. </Window>