<Window x:Class="XHandler.View.Consumables.TipLoadedTypeSet"
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
xmlns:local="clr-namespace:XHandler.View.Consumables"
|
xmlns:str="clr-namespace:XHandler.Properties"
|
xmlns:ctrls="clr-namespace:XHandler.Controls"
|
mc:Ignorable="d" WindowStartupLocation = "CenterOwner"
|
d:DesignHeight="650" d:DesignWidth="800" WindowStyle="None" AllowsTransparency="True" ResizeMode="NoResize" Background="#00FFFFFF"
|
PreviewKeyDown="Window_PreviewKeyDown">
|
<Grid>
|
<Grid.RowDefinitions>
|
<RowDefinition Height="*"/>
|
<RowDefinition Height="auto"/>
|
<RowDefinition Height="*"/>
|
</Grid.RowDefinitions>
|
<Grid.ColumnDefinitions>
|
<ColumnDefinition Width="*"/>
|
<ColumnDefinition Width="auto"/>
|
<ColumnDefinition Width="*"/>
|
</Grid.ColumnDefinitions>
|
<Grid Grid.Row="1" Grid.Column="1" HorizontalAlignment="Center" VerticalAlignment="Center" Width="600" Height="400">
|
<Grid.RowDefinitions>
|
<RowDefinition Height="40"/>
|
<RowDefinition Height="*"/>
|
</Grid.RowDefinitions>
|
<Border Grid.Row="0" Background="{DynamicResource blueBrush}" CornerRadius="10 10 0 0" BorderThickness="0" Margin="0,0,205,0">
|
<Grid MouseDown="Grid_MouseDown">
|
<TextBlock Text="{x:Static str:Resources.strChooseAdaptTips}" HorizontalAlignment="Left" VerticalAlignment="Center" Margin="20 0" FontSize="20"
|
Foreground="White" FontWeight="Bold"/>
|
<Button Content="×" x:Name="btnClose" HorizontalAlignment="Right" VerticalAlignment="Center" VerticalContentAlignment="Center" Margin="10 0" FontSize="28" Width="40" Height="40"
|
FontWeight="Bold" Foreground="White" Style="{DynamicResource BlueButtonStyle}" Background="{DynamicResource blueBrush}" Click="btnClose_Click"/>
|
</Grid>
|
</Border>
|
<Border Grid.Row="1" Background="White" CornerRadius="0 0 10 10" BorderThickness="0" Margin="0,0,205,-21">
|
<Grid>
|
<Grid.RowDefinitions>
|
<RowDefinition Height="350"/>
|
</Grid.RowDefinitions>
|
<Grid.ColumnDefinitions>
|
<ColumnDefinition Width="*"/>
|
</Grid.ColumnDefinitions>
|
<Grid Grid.Row="0" Grid.Column="0" Background="Azure" Margin="0,0,0,-75">
|
<Grid.RowDefinitions>
|
<RowDefinition Height="40"/>
|
<RowDefinition Height="325"/>
|
</Grid.RowDefinitions>
|
|
<TextBlock x:Name="txtError" Grid.Row="0" VerticalAlignment="Bottom" HorizontalAlignment="Left" Margin="10,0,0,0" FontSize="20" Foreground="Red" />
|
<Grid Grid.Row="1">
|
<Grid.RowDefinitions>
|
<RowDefinition Height="30"/>
|
<RowDefinition Height="*"/>
|
</Grid.RowDefinitions>
|
<ctrls:SearchTextBox x:Name="searchLabware" Grid.Row="0" Background="#FFF7F8FA" Watermark="{x:Static str:Resources.strInputSearch}" VerticalAlignment="Center" Height="30" Margin="10,0,10,0"
|
FontSize="20" VerticalContentAlignment="Center" PreviewKeyDown="searchLabware_PreviewKeyDown" />
|
<ListBox Grid.Row="1" x:Name="listboxPlates" Margin="10 5 10 0" ScrollViewer.CanContentScroll="True" SelectionChanged="listboxPlates_SelectionChanged">
|
</ListBox>
|
</Grid>
|
|
<!--<TextBlock x:Name="tbTips" Grid.Row="1" Grid.Column="1" Height="30" FontSize="12" Foreground="Red" Text="" VerticalAlignment="Top"
|
Margin="20 0"/>-->
|
<!--<Button x:Name="btnSave" Grid.Row="3" Grid.Column="1" Content="{x:Static str:Resources.btnSave}" HorizontalAlignment="Right" VerticalAlignment="Center" Margin="20 0" FontSize="16" Width="80" Height="40"
|
Foreground="White" Style="{DynamicResource BlueButtonStyle}" Background="{DynamicResource blueBrush}" />
|
<Button Grid.Row="3" Grid.Column="1" Content="{x:Static str:Resources.btnCancel}" HorizontalAlignment="Right" VerticalAlignment="Center" Margin="0 0 120 0" FontSize="16" Width="80" Height="40"
|
Foreground="White" Style="{DynamicResource BlueButtonStyle}" Background="LightGray" />-->
|
|
</Grid>
|
|
<Button x:Name="btnConfirm" Content="{x:Static str:Resources.btnSave}" HorizontalAlignment="Right" VerticalAlignment="Bottom" Margin="0,0,10,-66" FontSize="16" Width="80" Height="40"
|
Foreground="White" Style="{DynamicResource BlueButtonStyle}" Background="{DynamicResource blueBrush}" Click="btnConfirm_Click"/>
|
</Grid>
|
</Border>
|
</Grid>
|
</Grid>
|
</Window>
|