123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- <UserControl x:Class="S7NetModule.Views.S7NetView"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:local="clr-namespace:S7NetModule.Views"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- mc:Ignorable="d"
- xmlns:control="clr-namespace:WpfControlLibrary.IpAddress;assembly=WpfControlLibrary"
- d:DesignHeight="300"
- d:DesignWidth="300"
- Background="#141414"
- xmlns:prism="http://prismlibrary.com/"
- prism:ViewModelLocator.AutoWireViewModel="True">
- <UserControl.Resources>
- <Style x:Key="TextBlackStyle"
- TargetType="TextBlock">
- <Setter Property="FontSize"
- Value="15" />
- <Setter Property="Foreground"
- Value="White" />
- <Setter Property="Margin"
- Value="0,0,15,0" />
- <Setter Property="TextAlignment"
- Value="Right" />
- <Setter Property="Width"
- Value="80" />
- </Style>
- </UserControl.Resources>
- <Border>
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="50" />
- <RowDefinition Height="50" />
- <RowDefinition Height="50" />
- <RowDefinition Height="50" />
- <RowDefinition Height="50" />
- <RowDefinition Height="50" />
- <RowDefinition />
- </Grid.RowDefinitions>
- <!-- IP地址 -->
- <StackPanel Orientation="Horizontal"
- VerticalAlignment="Center"
- Grid.Row="0">
- <TextBlock Text="IP:"
- Style="{ StaticResource TextBlackStyle}" />
- <control:IpAddressControl BorderThickness="1"
- Name="ip"
- BorderBrush="#666"
- Grid.Row="0"
- DataContext="{Binding IpAddressViewModel, UpdateSourceTrigger=PropertyChanged, NotifyOnSourceUpdated=True}"
- Width="150"
- Height="25" />
- </StackPanel>
- <!-- 端口 -->
- <StackPanel Orientation="Horizontal"
- VerticalAlignment="Center"
- Grid.Row="1">
- <TextBlock Text="端口:"
- Style="{ StaticResource TextBlackStyle}" />
- <TextBox Width="{Binding ElementName=ip,Path=ActualWidth}"
- Text="{Binding S7NetModule.Port}" />
- </StackPanel>
- <!-- PlcCPU类型 -->
- <StackPanel Orientation="Horizontal"
- VerticalAlignment="Center"
- Grid.Row="2">
- <TextBlock Text="型号:"
- Style="{ StaticResource TextBlackStyle}" />
- <ComboBox ItemsSource="{Binding CpuTypes}"
- Margin="10,0,0,0"
- SelectedItem="{Binding S7NetModule.CpuType}"
- Width="{Binding ElementName=ip,Path=ActualWidth}">
- </ComboBox>
- </StackPanel>
- <!-- 机架号 -->
- <StackPanel Orientation="Horizontal"
- VerticalAlignment="Center"
- Grid.Row="3">
- <TextBlock Text="机架号:"
- Style="{ StaticResource TextBlackStyle}" />
- <TextBox Width="{Binding ElementName=ip,Path=ActualWidth}"
- Text="{Binding S7NetModule.Rack}" />
- </StackPanel>
- <!-- 槽号 -->
- <StackPanel Orientation="Horizontal"
- VerticalAlignment="Center"
- Grid.Row="4">
- <TextBlock Text="槽号:"
- Style="{ StaticResource TextBlackStyle}" />
- <TextBox Width="{Binding ElementName=ip,Path=ActualWidth}"
- Text="{Binding S7NetModule.Slot}" />
- </StackPanel>
- <!-- 连接 -->
- <StackPanel Orientation="Horizontal"
- VerticalAlignment="Center"
- HorizontalAlignment="Right"
- Grid.Row="5">
- <Button Content="{Binding UiOpenText}"
- Height="35"
- Width="60"
- Command="{Binding S7Opencommand}" />
- </StackPanel>
- <!-- 连接列表 -->
- <StackPanel Orientation="Vertical"
- VerticalAlignment="Bottom"
- Grid.Row="6">
- <TextBlock Text="连接列表"
- Style="{ StaticResource TextBlackStyle}" />
- <ListBox ItemsSource="{Binding S7NetModels}"
- SelectedItem="{Binding SelectS7Netmodel}">
- <ListBox.ItemTemplate>
- <DataTemplate>
- <StackPanel Orientation="Horizontal">
- <TextBlock Text="{Binding IpAddress}"
- Margin="5" />
- <TextBlock Text="{Binding Port}"
- Margin="5" />
- <TextBlock Text="{Binding Rack}"
- Margin="5" />
- <TextBlock Text="{Binding Slot}"
- Margin="5" />
- </StackPanel>
- </DataTemplate>
- </ListBox.ItemTemplate>
- </ListBox>
- </StackPanel>
- </Grid>
- </Border>
- </UserControl>
|