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="BBWY.Client.Views.QualityTipWindows.QualityProductWindow"
|
|
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.QualityTipWindows"
|
|
xmlns:c="clr-namespace:BBWY.Controls;assembly=BBWY.Controls"
|
|
WindowStartupLocation="CenterScreen"
|
|
CloseButtonVisibility="Visible"
|
|
xmlns:hc="https://handyorg.github.io/handycontrol"
|
|
CloseButtonColor="{StaticResource WindowButtonColor}"
|
|
MinButtonVisibility="Collapsed"
|
|
MaxButtonVisibility="Collapsed"
|
|
Width="330" Height="200" ResizeMode="NoResize"
|
|
RightButtonGroupMargin="0,5,5,0">
|
|
<!--CloseButtonColor="{StaticResource WindowButtonColor}" -->
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="35"/>
|
|
<RowDefinition/>
|
|
|
|
|
|
</Grid.RowDefinitions>
|
|
<Border BorderThickness="0,0,0,1" BorderBrush="{StaticResource MainMenu.BorderBrush}"
|
|
Background="{StaticResource Border.Background}">
|
|
<TextBlock Text="{Binding Title}" HorizontalAlignment="Center" Margin="20 0 0 0" VerticalAlignment="Center"/>
|
|
</Border>
|
|
<Grid Grid.Row="1" Margin="50 0 50 0">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
|
|
</Grid.RowDefinitions>
|
|
<c:BButton Grid.Row="0" Name="btn_true" Click="btn_true_Click" Content="{Binding IsTrueMsg}" Margin="0,20,0,0" VerticalAlignment="Top" HorizontalAlignment="Stretch" Height="40"/>
|
|
<c:BButton Grid.Row="1" Name="btn_false" Click="btn_false_Click" Content="{Binding IsFalseMsg}" Margin="0,10,0,0" VerticalAlignment="Top" HorizontalAlignment="Stretch" Height="40"/>
|
|
</Grid>
|
|
</Grid>
|
|
</c:BWindow>
|
|
|