LoadPortView.xaml 1.1 KB

123456789101112131415161718
  1. <UserControl x:Class="EfemUI.Views.Maintenance.LoadPortView"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:controls1="clr-namespace:EfemUI.Controls"
  7. mc:Ignorable="d"
  8. d:DesignHeight="600" d:DesignWidth="1900">
  9. <Grid x:Name="root" IsEnabled="{Binding EnablePageControl}" VerticalAlignment="Center" HorizontalAlignment="Center">
  10. <Grid.ColumnDefinitions>
  11. <ColumnDefinition Width="*"></ColumnDefinition>
  12. <ColumnDefinition Width="*"></ColumnDefinition>
  13. </Grid.ColumnDefinitions>
  14. <controls1:LoadPortControl Margin="10" DataContext="{Binding LP1Data}"></controls1:LoadPortControl>
  15. <controls1:LoadPortControl Grid.Column="1" Margin="10" DataContext="{Binding LP2Data}"></controls1:LoadPortControl>
  16. </Grid>
  17. </UserControl>