S7NetView.xaml 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. <UserControl x:Class="S7NetModule.Views.S7NetView"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:local="clr-namespace:S7NetModule.Views"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  7. mc:Ignorable="d"
  8. xmlns:control="clr-namespace:WpfControlLibrary.IpAddress;assembly=WpfControlLibrary"
  9. d:DesignHeight="300"
  10. d:DesignWidth="300"
  11. Background="#141414"
  12. xmlns:prism="http://prismlibrary.com/"
  13. prism:ViewModelLocator.AutoWireViewModel="True">
  14. <UserControl.Resources>
  15. <Style x:Key="TextBlackStyle"
  16. TargetType="TextBlock">
  17. <Setter Property="FontSize"
  18. Value="15" />
  19. <Setter Property="Foreground"
  20. Value="White" />
  21. <Setter Property="Margin"
  22. Value="0,0,15,0" />
  23. <Setter Property="TextAlignment"
  24. Value="Right" />
  25. <Setter Property="Width"
  26. Value="80" />
  27. </Style>
  28. </UserControl.Resources>
  29. <Border>
  30. <Grid>
  31. <Grid.RowDefinitions>
  32. <RowDefinition Height="50" />
  33. <RowDefinition Height="50" />
  34. <RowDefinition Height="50" />
  35. <RowDefinition Height="50" />
  36. <RowDefinition Height="50" />
  37. <RowDefinition Height="50" />
  38. <RowDefinition />
  39. </Grid.RowDefinitions>
  40. <!-- IP地址 -->
  41. <StackPanel Orientation="Horizontal"
  42. VerticalAlignment="Center"
  43. Grid.Row="0">
  44. <TextBlock Text="IP:"
  45. Style="{ StaticResource TextBlackStyle}" />
  46. <control:IpAddressControl BorderThickness="1"
  47. Name="ip"
  48. BorderBrush="#666"
  49. Grid.Row="0"
  50. DataContext="{Binding IpAddressViewModel, UpdateSourceTrigger=PropertyChanged, NotifyOnSourceUpdated=True}"
  51. Width="150"
  52. Height="25" />
  53. </StackPanel>
  54. <!-- 端口 -->
  55. <StackPanel Orientation="Horizontal"
  56. VerticalAlignment="Center"
  57. Grid.Row="1">
  58. <TextBlock Text="端口:"
  59. Style="{ StaticResource TextBlackStyle}" />
  60. <TextBox Width="{Binding ElementName=ip,Path=ActualWidth}"
  61. Text="{Binding S7NetModule.Port}" />
  62. </StackPanel>
  63. <!-- PlcCPU类型 -->
  64. <StackPanel Orientation="Horizontal"
  65. VerticalAlignment="Center"
  66. Grid.Row="2">
  67. <TextBlock Text="型号:"
  68. Style="{ StaticResource TextBlackStyle}" />
  69. <ComboBox ItemsSource="{Binding CpuTypes}"
  70. Margin="10,0,0,0"
  71. SelectedItem="{Binding S7NetModule.CpuType}"
  72. Width="{Binding ElementName=ip,Path=ActualWidth}">
  73. </ComboBox>
  74. </StackPanel>
  75. <!-- 机架号 -->
  76. <StackPanel Orientation="Horizontal"
  77. VerticalAlignment="Center"
  78. Grid.Row="3">
  79. <TextBlock Text="机架号:"
  80. Style="{ StaticResource TextBlackStyle}" />
  81. <TextBox Width="{Binding ElementName=ip,Path=ActualWidth}"
  82. Text="{Binding S7NetModule.Rack}" />
  83. </StackPanel>
  84. <!-- 槽号 -->
  85. <StackPanel Orientation="Horizontal"
  86. VerticalAlignment="Center"
  87. Grid.Row="4">
  88. <TextBlock Text="槽号:"
  89. Style="{ StaticResource TextBlackStyle}" />
  90. <TextBox Width="{Binding ElementName=ip,Path=ActualWidth}"
  91. Text="{Binding S7NetModule.Slot}" />
  92. </StackPanel>
  93. <!-- 连接 -->
  94. <StackPanel Orientation="Horizontal"
  95. VerticalAlignment="Center"
  96. HorizontalAlignment="Right"
  97. Grid.Row="5">
  98. <Button Content="{Binding UiOpenText}"
  99. Height="35"
  100. Width="60"
  101. Command="{Binding S7Opencommand}" />
  102. </StackPanel>
  103. <!-- 连接列表 -->
  104. <StackPanel Orientation="Vertical"
  105. VerticalAlignment="Bottom"
  106. Grid.Row="6">
  107. <TextBlock Text="连接列表"
  108. Style="{ StaticResource TextBlackStyle}" />
  109. <ListBox ItemsSource="{Binding S7NetModels}"
  110. SelectedItem="{Binding SelectS7Netmodel}">
  111. <ListBox.ItemTemplate>
  112. <DataTemplate>
  113. <StackPanel Orientation="Horizontal">
  114. <TextBlock Text="{Binding IpAddress}"
  115. Margin="5" />
  116. <TextBlock Text="{Binding Port}"
  117. Margin="5" />
  118. <TextBlock Text="{Binding Rack}"
  119. Margin="5" />
  120. <TextBlock Text="{Binding Slot}"
  121. Margin="5" />
  122. </StackPanel>
  123. </DataTemplate>
  124. </ListBox.ItemTemplate>
  125. </ListBox>
  126. </StackPanel>
  127. </Grid>
  128. </Border>
  129. </UserControl>