12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <UserControl x:Class="FurnaceRT.Backends.BackendPressureTuneView"
- 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:FurnaceRT.Backends"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="50"></RowDefinition>
- <RowDefinition Height="*"></RowDefinition>
- </Grid.RowDefinitions>
- <Canvas>
- <Button Width="100" Height="30" Content="Save" Command="{Binding SaveCommand}" Canvas.Left="33" Canvas.Top="10"></Button>
- <Button Width="100" Height="30" Content="Cancel" Command="{Binding ReloadCommand}" Canvas.Left="189" Canvas.Top="10"></Button>
- </Canvas>
- <StackPanel Grid.Row="1" Orientation="Horizontal">
- <GroupBox VerticalAlignment="Top" HorizontalAlignment="Left" Header="PM1" Width="300" Height="200">
- <Canvas>
- <CheckBox Content="Enable Tune" IsChecked="{Binding IsEnable1, UpdateSourceTrigger=PropertyChanged}" Canvas.Left="19" Canvas.Top="20"></CheckBox>
- <TextBlock Text="Tuning (%)" Canvas.Left="19" Canvas.Top="67"></TextBlock>
- <TextBox Text="{Binding Tuning1, UpdateSourceTrigger=PropertyChanged}" Canvas.Left="19" Canvas.Top="87" Height="29" Width="132"></TextBox>
- </Canvas>
- </GroupBox>
- <GroupBox VerticalAlignment="Top" HorizontalAlignment="Left" Header="PM2" Width="300" Height="200">
- <Canvas>
- <CheckBox Content="Enable Tune" IsChecked="{Binding IsEnable2, UpdateSourceTrigger=PropertyChanged}" Canvas.Left="19" Canvas.Top="20"></CheckBox>
- <TextBlock Text="Tuning (%)" Canvas.Left="19" Canvas.Top="67"></TextBlock>
- <TextBox Text="{Binding Tuning2, UpdateSourceTrigger=PropertyChanged}" Canvas.Left="19" Canvas.Top="87" Height="29" Width="132"></TextBox>
- </Canvas>
- </GroupBox>
- </StackPanel>
- </Grid>
- </UserControl>
|