4 changed files with 70 additions and 3 deletions
@ -0,0 +1,50 @@ |
|||
<c:BWindow x:Class="BBWY.Client.Views.Purchase._1688Purchase" |
|||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
|||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
|||
xmlns:local="clr-namespace:BBWY.Client.Views.Purchase" |
|||
xmlns:c="clr-namespace:BBWY.Controls;assembly=BBWY.Controls" |
|||
mc:Ignorable="d" |
|||
Title="提交订单" Height="450" Width="800" |
|||
Style="{StaticResource bwstyle}" |
|||
MinButtonVisibility="Collapsed" |
|||
MaxButtonVisibility="Collapsed"> |
|||
<Grid> |
|||
<Grid.RowDefinitions> |
|||
<RowDefinition Height="30"/> |
|||
<RowDefinition/> |
|||
<RowDefinition Height="60"/> |
|||
<RowDefinition Height="100"/> |
|||
<RowDefinition Height="40"/> |
|||
</Grid.RowDefinitions> |
|||
<Border BorderThickness="0,0,0,1" BorderBrush="{StaticResource MainMenu.BorderBrush}" |
|||
Background="{StaticResource Border.Background}"> |
|||
<TextBlock Text="提交订单" HorizontalAlignment="Center" VerticalAlignment="Center"/> |
|||
</Border> |
|||
|
|||
<Grid Grid.Row="2" Margin="5,0"> |
|||
<Grid.ColumnDefinitions> |
|||
<ColumnDefinition Width="0.8*"/> |
|||
<ColumnDefinition Width="0.2*"/> |
|||
</Grid.ColumnDefinitions> |
|||
<c:BTextBox Text="留言信息" |
|||
WaterRemark="留言信息" |
|||
VerticalAlignment="Stretch" Height="Auto" VerticalContentAlignment="Top" Padding="3,5,0,0" |
|||
TextWrapping="Wrap"/> |
|||
</Grid> |
|||
|
|||
<StackPanel HorizontalAlignment="Left" VerticalAlignment="Center" Grid.Row="3" Margin="5,0"> |
|||
<c:BTextBox Text="收货人" WaterRemark="收货人"/> |
|||
<c:BTextBox Text="福建泉州鲤城区浮桥街龙景华庭B栋1008" Margin="0,2.5" Width="300" WaterRemark="地址"/> |
|||
<c:BTextBox Text="18996038927" WaterRemark="电话"/> |
|||
</StackPanel> |
|||
|
|||
<TextBlock Grid.Row="4" HorizontalAlignment="Left" VerticalAlignment="Center" Margin="5,0,0,0" FontSize="16"> |
|||
<Run Text="应付总额(含运费)"/> |
|||
<Run Text="163.3" Foreground="Pink"/> |
|||
<Run Text="元"/> |
|||
</TextBlock> |
|||
<c:BButton Content="提交订单" Grid.Row="4" Width="80" HorizontalAlignment="Right" Margin="0,0,8,0"/> |
|||
</Grid> |
|||
</c:BWindow> |
@ -0,0 +1,15 @@ |
|||
using BBWY.Controls; |
|||
|
|||
namespace BBWY.Client.Views.Purchase |
|||
{ |
|||
/// <summary>
|
|||
/// _1688Purchase.xaml 的交互逻辑
|
|||
/// </summary>
|
|||
public partial class _1688Purchase : BWindow |
|||
{ |
|||
public _1688Purchase() |
|||
{ |
|||
InitializeComponent(); |
|||
} |
|||
} |
|||
} |
Loading…
Reference in new issue