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