shanji 3 years ago
parent
commit
5f2895f29c
  1. 13
      BBWY.Client/Views/Order/OrderList.xaml

13
BBWY.Client/Views/Order/OrderList.xaml

@ -306,12 +306,21 @@
<c:BButton x:Name="btn_decodeCommand" Content="解密收货信息" Style="{StaticResource LinkButton}" Margin="5,0,0,0"
Command="{Binding DataContext.DecodeConsigneeCommand,RelativeSource={RelativeSource Mode=FindAncestor,AncestorType={x:Type ListBox}}}"
CommandParameter="{Binding }"/>
<TextBlock x:Name="txt_consignee" VerticalAlignment="Center" Margin="5,0,0,0" Visibility="Collapsed">
<!--<TextBlock x:Name="txt_consignee" VerticalAlignment="Center" Margin="5,0,0,0" Visibility="Collapsed">
<Run Text="收货人:"/>
<Run Text="{Binding Consignee.ContactName}"/>
<Run Text="联系电话:"/>
<Run Text="{Binding Consignee.Mobile}"/>
</TextBlock>
</TextBlock>-->
<StackPanel x:Name="txt_consignee" Margin="5,0,0,0" Orientation="Horizontal" VerticalAlignment="Center">
<TextBlock Text="收货人:"/>
<TextBox Text="{Binding Consignee.ContactName}" Foreground="{StaticResource Text.Color}"
IsReadOnly="True" Background="Transparent" BorderThickness="0"/>
<TextBlock Text="联系电话:"/>
<TextBox Text="{Binding Consignee.Mobile}" Foreground="{StaticResource Text.Color}"
IsReadOnly="True" Background="Transparent" BorderThickness="0"/>
</StackPanel>
</StackPanel>
<Border VerticalAlignment="Bottom" Height="1" Background="{StaticResource Border.Brush}"/>
</Grid>

Loading…
Cancel
Save