UStatusVariable.xaml 1018 B

12345678910111213141516
  1. <UserControl x:Class="EapClientSimulator.UStatusVariable"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:EapClientSimulator"
  7. mc:Ignorable="d"
  8. d:DesignHeight="60" d:DesignWidth="550">
  9. <Grid>
  10. <Label Content="SVID:" HorizontalAlignment="Left" Margin="40,0,0,0" VerticalAlignment="Center"/>
  11. <TextBox Name="txtCeId" HorizontalAlignment="Left" Margin="86,0,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Center" Width="162" Height="30" VerticalContentAlignment="Center"/>
  12. <Button Content="query" Name="btnQuery" HorizontalAlignment="Left" Margin="275,0,0,0" VerticalAlignment="Center" Height="30" Width="75" Click="btnQuery_Click"/>
  13. </Grid>
  14. </UserControl>