|
- <UserControl
- x:Class="BPASmartClient.DosingSystem.View.TempManageControlView"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:BPASmartClient.DosingSystem.View"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:pry="clr-namespace:BPASmartClient.CustomResource.UserControls;assembly=BPASmartClient.CustomResource"
- xmlns:vm="clr-namespace:BPASmartClient.DosingSystem.ViewModel"
- d:DesignHeight="450"
- d:DesignWidth="800"
- mc:Ignorable="d">
-
- <UserControl.DataContext>
- <vm:TempManageControlViewModel />
- </UserControl.DataContext>
-
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition />
- <RowDefinition />
- <RowDefinition />
- </Grid.RowDefinitions>
-
- <Grid Margin="8">
- <Grid
- Name="cy"
- Grid.Row="0"
- Margin="5">
- <pry:ImageBorder
- Grid.RowSpan="2"
- Width="{Binding ElementName=cy, Path=ActualWidth}"
- Height="{Binding ElementName=cy, Path=ActualHeight}" />
-
- <StackPanel Background="Transparent">
- <Grid Height="40">
- <Image
- Margin="2,3,0,0"
- HorizontalAlignment="Left"
- VerticalAlignment="Top"
- Source="/BPASmartClient.CustomResource;component/Image/标签.png" />
- <TextBlock
- Margin="10,10,0,0"
- VerticalAlignment="Top"
- FontSize="16"
- Foreground="Aqua"
- Text="{Binding Name}" />
- <StackPanel
- Margin="0,0,20,0"
- HorizontalAlignment="Right"
- Orientation="Horizontal">
- <TextBlock
- Margin="0,0,2,0"
- Style="{StaticResource TextBlockStyle}"
- Text="输送带反转控制" />
- <ToggleButton
- Width="80"
- Height="30"
- Margin="5,0,5,0"
- Background="Transparent"
- FontSize="20"
- IsChecked="{Binding Reversal}"
- Style="{StaticResource SwitchToggleButtonStyle}" />
-
- <TextBlock
- Margin="20,0,5,0"
- VerticalAlignment="Center"
- FontSize="20"
- Foreground="#00c2f4"
- Text="输送带正转控制" />
-
- <ToggleButton
- Width="80"
- Height="30"
- Margin="5,0,5,0"
- Background="Transparent"
- FontSize="20"
- IsChecked="{Binding Foreward}"
- Style="{StaticResource SwitchToggleButtonStyle}" />
-
- </StackPanel>
-
- </Grid>
- <Grid Name="gr" Height="200">
- <pry:ConveyBelt2
- Grid.RowSpan="4"
- Margin="-12,0,10,0"
- BeltDashThickess="50"
- BeltDirection="{Binding BeltDirection}"
- BeltHeight="{Binding ElementName=gr, Path=ActualHeight}"
- BeltWidth="{Binding ElementName=gr, Path=ActualWidth}"
- IsRun="{Binding IsRun}" />
- </Grid>
- </StackPanel>
- </Grid>
- </Grid>
-
- </Grid>
- </UserControl>
|