liuwf 1 year ago
parent 11be83bf64
commit 9c15f9c837

@ -2206,12 +2206,27 @@
ElementStyle="{StaticResource dgCell}" ElementStyle="{StaticResource dgCell}"
/> />
<DataGridTextColumn <!--<DataGridTextColumn
Header="箱体携带数量" Header="箱体携带数量"
Binding="{Binding thisOutAmount}" Binding="{Binding thisOutAmount}"
ElementStyle="{StaticResource dgCell}" ElementStyle="{StaticResource dgCell}"
Width="3*" Width="3*"
/> />-->
<DataGridTemplateColumn
Width="3*"
CanUserSort="False"
Header="箱体携带数量"
IsReadOnly="True" >
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<TextBlock TextWrapping="Wrap" Text="{Binding thisOutAmount}" ToolTip="{Binding thisOutAmount}" VerticalAlignment="Center" HorizontalAlignment="Center" FontSize="20" />
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
</DataGridTemplateColumn>
</DataGrid.Columns> </DataGrid.Columns>
<DataGrid.CellStyle> <DataGrid.CellStyle>
<Style TargetType="{x:Type DataGridCell}"> <Style TargetType="{x:Type DataGridCell}">

Loading…
Cancel
Save