123456789101112131415161718192021222324 |
- <UserControl x:Class="Aitex.Triton160.UI.Views.GasPanelView"
- 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:control="clr-namespace:Aitex.Triton160.UI.Views.Control"
- mc:Ignorable="d" x:Name="self"
- d:DesignHeight="200" d:DesignWidth="320" Background="Transparent">
- <Grid Width="320" Height="200">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="*"></ColumnDefinition>
- <ColumnDefinition Width="*"></ColumnDefinition>
- <ColumnDefinition Width="*"></ColumnDefinition>
- <ColumnDefinition Width="*"></ColumnDefinition>
- <ColumnDefinition Width="*"></ColumnDefinition>
- </Grid.ColumnDefinitions>
- <control:GasLineView Grid.Column="0" Visibility="{Binding ElementName=self, Path=Gas1Visible}" ValveData="{Binding ElementName=self, Path=Gas1Valve}" MFCData="{Binding ElementName=self, Path=Gas1MFC}" Command="{Binding ElementName=self, Path=Command}"></control:GasLineView>
- <control:GasLineView Grid.Column="1" Visibility="{Binding ElementName=self, Path=Gas2Visible}" ValveData="{Binding ElementName=self, Path=Gas2Valve}" MFCData="{Binding ElementName=self, Path=Gas2MFC}" Command="{Binding ElementName=self, Path=Command}"></control:GasLineView>
- <control:GasLineView Grid.Column="2" Visibility="{Binding ElementName=self, Path=Gas3Visible}" ValveData="{Binding ElementName=self, Path=Gas3Valve}" MFCData="{Binding ElementName=self, Path=Gas3MFC}" Command="{Binding ElementName=self, Path=Command}"></control:GasLineView>
- <control:GasLineView Grid.Column="3" Visibility="{Binding ElementName=self, Path=Gas4Visible}" ValveData="{Binding ElementName=self, Path=Gas4Valve}" MFCData="{Binding ElementName=self, Path=Gas4MFC}" Command="{Binding ElementName=self, Path=Command}"></control:GasLineView>
- <control:GasLineView Grid.Column="4" Visibility="{Binding ElementName=self, Path=Gas5Visible}" ValveData="{Binding ElementName=self, Path=Gas5Valve}" MFCData="{Binding ElementName=self, Path=Gas5MFC}" Command="{Binding ElementName=self, Path=Command}"></control:GasLineView>
- </Grid>
- </UserControl>
|