You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.9 KiB
38 lines
1.9 KiB
<c:BWindow x:Class="BBWYB.Client.Views.PackPurchaseTask.TipsWindow"
|
|
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"
|
|
mc:Ignorable="d"
|
|
Title="TipsWindow" Height="200" Width="321"
|
|
xmlns:c="clr-namespace:SJ.Controls;assembly=SJ.Controls"
|
|
xmlns:b="http://schemas.microsoft.com/xaml/behaviors"
|
|
xmlns:ctr="clr-namespace:BBWYB.Client.Converters"
|
|
xmlns:cmodel="clr-namespace:BBWYB.Client.Models"
|
|
xmlns:sys="clr-namespace:System;assembly=mscorlib"
|
|
|
|
WindowStartupLocation="CenterScreen"
|
|
|
|
MinButtonVisibility="Collapsed"
|
|
MaxButtonVisibility="Collapsed"
|
|
CloseButtonVisibility ="Collapsed"
|
|
RightButtonGroupMargin="0,5,5,0">
|
|
<!--CloseButtonColor="{StaticResource WindowButtonColor}" -->
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="40"/>
|
|
<RowDefinition/>
|
|
<!--<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>
|
|
<TextBox Name="tbContent" IsReadOnly="True" AcceptsReturn="True" TextWrapping="Wrap" Grid.Row="1" Margin="10"
|
|
Text="请设置合格证内容 请设置合格证内容" BorderBrush="White" VerticalAlignment="Center" HorizontalAlignment="Center"/>
|
|
|
|
|
|
<!--<c:BButton Grid.Row="2" Content="确定" HorizontalAlignment="Right" Width="100" VerticalAlignment="Stretch" Click="BButton_Click" />-->
|
|
|
|
</Grid>
|
|
</c:BWindow>
|