1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <UserControl x:Class="CyberX8_MainPages.Views.PMCounterView"
- 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:CyberX8_MainPages.Views"
- xmlns:ctrls="clr-namespace:CyberX8_Themes.UserControls;assembly=CyberX8_Themes"
- xmlns:prism="http://prismlibrary.com/"
- prism:ViewModelLocator.AutoWireViewModel="True"
- mc:Ignorable="d"
- d:DesignHeight="800" d:DesignWidth="1500">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="5"/>
- <RowDefinition Height="170"/>
- <RowDefinition Height="200"/>
- <RowDefinition Height="175"/>
- <RowDefinition Height="250"/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="700"></ColumnDefinition>
- <ColumnDefinition Width="470"></ColumnDefinition>
- <ColumnDefinition Width="320"></ColumnDefinition>
- <ColumnDefinition/>
- </Grid.ColumnDefinitions>
- <Grid Grid.Row="1" Grid.Column="0">
- <ctrls:ReservoirsInformationPanel HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Center"
- RecipeContentValue="{Binding CurrentRecipe.Ppid}"
- StateValue="{Binding State}" IsEnabled="{Binding IsEnabled}"
- OperatingModeValue="{Binding ReservoirsPersistent.OperatingMode}"
- ModuleTitle="{Binding Module}"/>
- </Grid>
- <Grid Grid.Row="3" Grid.Column="2">
- <Button Style="{StaticResource SysBtnStyle}" Grid.Column="1" Height="30" Width="100" HorizontalAlignment="Right" Content="Back" Command="{Binding BackCommand}"/>
- </Grid>
- <Grid Grid.Row="2" Grid.Column="0" Grid.ColumnSpan="2" Grid.RowSpan="3">
- <ctrls:PMCounterComponent Margin="20,0,20,10" IsEnabled="{Binding IsAutoEnabled}"
- ComponentNodes="{Binding ComponentNodes}"
- />
- </Grid>
- </Grid>
- </UserControl>
|