| 123456789101112131415161718192021222324252627282930313233343536 |
- <UserControl x:Class="PLCIOPointTool.Views.StatusBar"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:PLCIOPointTool.Views"
- xmlns:prism="http://prismlibrary.com/"
- prism:ViewModelLocator.AutoWireViewModel="True"
- Width="580" Height="60"
- mc:Ignorable="d">
- <Grid Background="#FFCECECE">
- <Grid.RowDefinitions>
- <RowDefinition Height="30"/>
- <RowDefinition Height="30"/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="200"/>
- <ColumnDefinition Width="200"/>
- <ColumnDefinition Width="180"/>
- </Grid.ColumnDefinitions>
- <StackPanel Grid.Row="0" Grid.Column="0" Orientation="Horizontal" Margin="2,2,2,2" HorizontalAlignment="Center" VerticalAlignment="Center">
- <Label>AMSID:</Label>
- <TextBox Text="{Binding NetID}" IsEnabled="{Binding IsInputEnable}" Width="130" Height="20"/>
- </StackPanel>
- <StackPanel Grid.Row="0" Grid.Column="1" Orientation="Horizontal" Margin="2,2,2,2" HorizontalAlignment="Center" VerticalAlignment="Center">
- <Label>Port:</Label>
- <TextBox Text="{Binding Port}" IsEnabled="{Binding IsInputEnable}" Width="80" Height="20"/>
- </StackPanel>
- <Button Content="{Binding ButtonContent}" Command="{Binding ConnectOrDisconnectCommand}" Grid.Row="0" Grid.Column="2" Height="20" Width="80" HorizontalAlignment="Center" VerticalAlignment="Center"/>
- <StackPanel Grid.Row="1" Grid.Column="1" Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
- <Label>Status:</Label>
- <Label Content="{Binding Status}"></Label>
- </StackPanel>
- </Grid>
- </UserControl>
|