QualityTracing.xaml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. <UserControl x:Class="LogoForceTestApp.Modules.MainModule.Views.QualityTracing"
  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:LogoForceTestApp.Modules.MainModule.Views"
  7. xmlns:viewmodels="clr-namespace:LogoForceTestApp.Modules.MainModule.ViewModels"
  8. xmlns:hc="https://handyorg.github.io/handycontrol"
  9. d:DataContext="{d:DesignInstance Type=viewmodels:QualityTracingViewModel}"
  10. mc:Ignorable="d"
  11. d:DesignHeight="450" d:DesignWidth="800">
  12. <Grid>
  13. <Grid.RowDefinitions>
  14. <RowDefinition Height="auto" />
  15. <RowDefinition Height="auto" />
  16. <RowDefinition Height="auto" />
  17. <RowDefinition Height="*" />
  18. <RowDefinition Height="auto" />
  19. </Grid.RowDefinitions>
  20. <StackPanel Orientation="Horizontal">
  21. <hc:DatePicker Margin="4,0"
  22. hc:InfoElement.Title="选择开始时间"
  23. SelectedDate="{Binding SelectedStartDate}" />
  24. <hc:DatePicker Margin="4,0"
  25. hc:InfoElement.Title="选择结束时间"
  26. SelectedDate="{Binding SelectedEndDate}" />
  27. <!--<TextBlock Text="人员ID:"
  28. Margin="5"
  29. FontSize="16"
  30. VerticalAlignment="Center" />-->
  31. <hc:ComboBox HorizontalAlignment="Center"
  32. VerticalAlignment="Center"
  33. Margin="4,0"
  34. Width="150"
  35. Height="40"
  36. SelectedItem="{Binding SelectedNames}"
  37. ItemsSource="{Binding ChoiceNames}"
  38. FontSize="16" />
  39. <TextBox Width="200"
  40. VerticalAlignment="Center"
  41. FontSize="20"
  42. Text="{Binding FindContent,UpdateSourceTrigger=PropertyChanged}"
  43. Margin="4,0"/>
  44. <Button Margin="4,0"
  45. VerticalAlignment="Center"
  46. Command="{Binding QueryCommand}"
  47. FontSize="14"
  48. Content="查询" />
  49. </StackPanel>
  50. <!--<GroupBox Header="产品单价(元/个)"
  51. Grid.Row="1">
  52. <StackPanel Orientation="Horizontal"
  53. VerticalAlignment="Center">
  54. <TextBlock VerticalAlignment="Center"
  55. FontSize="16"
  56. Margin="3"
  57. Text="P60:" />
  58. <TextBox Text="{Binding P60_Price,UpdateSourceTrigger=PropertyChanged}"
  59. Width="100"
  60. Height="30" />
  61. <TextBlock VerticalAlignment="Center"
  62. FontSize="16"
  63. Margin="3"
  64. Text="P70:" />
  65. <TextBox Text="{Binding P70_Price,UpdateSourceTrigger=PropertyChanged}"
  66. Width="100"
  67. Height="30" />
  68. <TextBlock VerticalAlignment="Center"
  69. FontSize="16"
  70. Margin="3"
  71. Text="P80:" />
  72. <TextBox Text="{Binding P80_Price,UpdateSourceTrigger=PropertyChanged}"
  73. Width="100"
  74. Height="30" />
  75. <TextBlock VerticalAlignment="Center"
  76. FontSize="16"
  77. Margin="3"
  78. Text="P90:" />
  79. <TextBox Text="{Binding P90_Price,UpdateSourceTrigger=PropertyChanged}"
  80. Width="100"
  81. Height="30" />
  82. <TextBlock VerticalAlignment="Center"
  83. FontSize="16"
  84. Margin="3"
  85. Text="T29:" />
  86. <TextBox Text="{Binding T29_Price,UpdateSourceTrigger=PropertyChanged}"
  87. Width="100"
  88. Height="30" />
  89. <TextBlock VerticalAlignment="Center"
  90. FontSize="16"
  91. Margin="3"
  92. Text="DH-88:" />
  93. <TextBox Text="{Binding DH88_Price,UpdateSourceTrigger=PropertyChanged}"
  94. Width="100"
  95. Height="30" />
  96. <TextBlock VerticalAlignment="Center"
  97. FontSize="16"
  98. Margin="3"
  99. Text="QL-1:" />
  100. <TextBox Text="{Binding QL1_Price,UpdateSourceTrigger=PropertyChanged}"
  101. Width="100"
  102. Height="30" />
  103. </StackPanel>
  104. </GroupBox>-->
  105. <GroupBox Header="信息显示"
  106. Grid.Row="2">
  107. <Grid>
  108. <Grid.ColumnDefinitions>
  109. <ColumnDefinition />
  110. <ColumnDefinition Width="300"/>
  111. </Grid.ColumnDefinitions>
  112. <StackPanel Orientation="Horizontal"
  113. VerticalAlignment="Center">
  114. <TextBlock VerticalAlignment="Center"
  115. FontSize="16"
  116. Margin="3"
  117. Text="生产总数:" />
  118. <TextBlock Text="{Binding AllNumber}"
  119. FontSize="16"
  120. Margin="3"
  121. VerticalAlignment="Center" />
  122. <TextBlock Text="总用时(秒):"
  123. FontSize="16"
  124. Margin="20,3,0,3"
  125. VerticalAlignment="Center" />
  126. <TextBlock Text="{Binding GeneralTime}"
  127. FontSize="16"
  128. Margin="3"
  129. VerticalAlignment="Center" />
  130. <!--<TextBlock Text="P60:"
  131. FontSize="16"
  132. Margin="20,3,0,3"
  133. VerticalAlignment="Center" />
  134. <TextBlock Text="{Binding P60Num}"
  135. FontSize="16"
  136. Margin="3"
  137. VerticalAlignment="Center" />
  138. <TextBlock Text="P70:"
  139. FontSize="16"
  140. Margin="20,3,0,3"
  141. VerticalAlignment="Center" />
  142. <TextBlock Text="{Binding P70Num}"
  143. FontSize="16"
  144. Margin="3"
  145. VerticalAlignment="Center" />
  146. <TextBlock Text="P80:"
  147. FontSize="16"
  148. Margin="20,3,0,3"
  149. VerticalAlignment="Center" />
  150. <TextBlock Text="{Binding P80Num}"
  151. FontSize="16"
  152. Margin="3"
  153. VerticalAlignment="Center" />
  154. <TextBlock Text="P90:"
  155. FontSize="16"
  156. Margin="20,3,0,3"
  157. VerticalAlignment="Center" />
  158. <TextBlock Text="{Binding P90Num}"
  159. FontSize="16"
  160. Margin="3"
  161. VerticalAlignment="Center" />
  162. <TextBlock Text="T29:"
  163. FontSize="16"
  164. Margin="20,3,0,3"
  165. VerticalAlignment="Center" />
  166. <TextBlock Text="{Binding T29Num}"
  167. FontSize="16"
  168. Margin="3"
  169. VerticalAlignment="Center" />
  170. <TextBlock Text="DH-88:"
  171. FontSize="16"
  172. Margin="20,3,0,3"
  173. VerticalAlignment="Center" />
  174. <TextBlock Text="{Binding DH88Num}"
  175. FontSize="16"
  176. Margin="3"
  177. VerticalAlignment="Center" />
  178. <TextBlock Text="QL-1:"
  179. FontSize="16"
  180. Margin="20,3,0,3"
  181. VerticalAlignment="Center" />
  182. <TextBlock Text="{Binding QL1Num}"
  183. FontSize="16"
  184. Margin="3"
  185. VerticalAlignment="Center" />-->
  186. </StackPanel>
  187. <!--<StackPanel Grid.Column="1"
  188. Orientation="Horizontal">
  189. <Button Margin="4,0"
  190. VerticalAlignment="Center"
  191. Command="{Binding ShowMoneyCommand}"
  192. FontSize="14"
  193. Content="显示工资" />
  194. <TextBlock Text="{Binding Money}"
  195. FontSize="16"
  196. Margin="3"
  197. VerticalAlignment="Center" />
  198. </StackPanel>-->
  199. </Grid>
  200. </GroupBox>
  201. <DataGrid Grid.Row="3"
  202. AutoGenerateColumns="False"
  203. IsReadOnly="True"
  204. ItemsSource="{Binding InfNew}">
  205. <DataGrid.Columns>
  206. <DataGridTextColumn Binding="{Binding CreateTime}"
  207. Header="日期" />
  208. <DataGridTextColumn Binding="{Binding OperatorCode}"
  209. Header="员工码" />
  210. <DataGridTextColumn Binding="{Binding WorkDev}"
  211. Header="工作机台" />
  212. <DataGridTextColumn Binding="{Binding OrderNo}"
  213. Header="订单编号" />
  214. <DataGridTextColumn Binding="{Binding ProType}"
  215. Header="产品型号" />
  216. <DataGridTextColumn Binding="{Binding ProCode}"
  217. Header="产品码" />
  218. <DataGridTextColumn Binding="{Binding TestResult}"
  219. Header="检测结果" />
  220. <DataGridTextColumn Binding="{Binding SpendTime}"
  221. Header="用时(秒)" />
  222. <DataGridTextColumn Binding="{Binding ItemCode}"
  223. Header="物料码" />
  224. </DataGrid.Columns>
  225. </DataGrid>
  226. <hc:Pagination Grid.Row="4"
  227. HorizontalAlignment="Center"
  228. IsJumpEnabled="True"
  229. MaxPageCount="{Binding MaxCount}"
  230. PageIndex="{Binding PageIndex}">
  231. <hc:Interaction.Triggers>
  232. <hc:EventTrigger EventName="PageUpdated">
  233. <hc:EventToCommand Command="{Binding PageUpdatedCmd}"
  234. PassEventArgsToCommand="True" />
  235. </hc:EventTrigger>
  236. </hc:Interaction.Triggers>
  237. </hc:Pagination>
  238. </Grid>
  239. </UserControl>