Browse Source

修改入库界面库位显示。

JXJAgvReake
ZhaoGang 1 year ago
parent
commit
3d3dfcce1c
2 changed files with 16 additions and 3 deletions
  1. +1
    -1
      BPASmartClient.MorkCL/Control_MorkCL.cs
  2. +15
    -2
      BPASmartClient.MorkCL/View/ItemStorageView.xaml

+ 1
- 1
BPASmartClient.MorkCL/Control_MorkCL.cs View File

@@ -85,8 +85,8 @@ namespace BPASmartClient.MorkCL
//devices[EDeviceType.外部设备].Init(Json<ConnectPar>.Data.PPortName);

#endif
ManualActionRegiester();
#endif
}

public override void MainTask()


+ 15
- 2
BPASmartClient.MorkCL/View/ItemStorageView.xaml View File

@@ -138,8 +138,15 @@
<UniformGrid
HorizontalAlignment="Center"
VerticalAlignment="Center"
Columns="4"
Rows="3" />
Columns="3"
Rows="4" >
<UniformGrid.LayoutTransform>
<TransformGroup>
<RotateTransform Angle="90"/>
<ScaleTransform ScaleX="-1"/>
</TransformGroup>
</UniformGrid.LayoutTransform>
</UniformGrid>
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>

@@ -151,6 +158,12 @@
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<Grid.LayoutTransform>
<TransformGroup>
<RotateTransform Angle="-90"/>
<ScaleTransform ScaleX="1" ScaleY="-1"/>
</TransformGroup>
</Grid.LayoutTransform>

<TextBlock
Margin="0,0,0,25"


Loading…
Cancel
Save