123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <UserControl x:Class="FurnaceUI.Views.Editors.RecipeProductPosView"
- 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:i="http://schemas.microsoft.com/expression/2010/interactivity"
- xmlns:cal="http://www.caliburn.org"
- xmlns:convert="clr-namespace:FurnaceUI.Converter"
- xmlns:local="clr-namespace:FurnaceUI.Views.Editors"
- mc:Ignorable="d" Height="73" Width="200">
- <UserControl.Resources>
- <convert:LayoutRecipeModeStatusConverter x:Key="LayoutRecipeModeStatusConverter"></convert:LayoutRecipeModeStatusConverter>
- </UserControl.Resources>
- <Border x:Name="DialogWindow" BorderThickness="1,1,0,0" BorderBrush="{DynamicResource Color_BD_Dialog}" Background="{DynamicResource Color_BD_Dialog}" >
- <Border BorderBrush="{DynamicResource Color_BG_Dialog_Shadow}" BorderThickness="0,0,1,1">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition />
- <RowDefinition Height="Auto"/>
- </Grid.RowDefinitions>
- <Rectangle Margin="5" Grid.RowSpan="2" Fill="{DynamicResource Color_BG_Dialog_Inner}"/>
- <Canvas>
- <RadioButton Content="Auto" Canvas.Left="10" Canvas.Top="19" Width="80" IsChecked="{Binding IsAutoChecked}">
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="Click">
- <cal:ActionMessage MethodName="AutoButtonClick">
- </cal:ActionMessage>
- </i:EventTrigger>
- </i:Interaction.Triggers>
- </RadioButton>
- <RadioButton Content="Slot" Canvas.Left="106" Canvas.Top="19" Width="80" IsChecked="{Binding IsSlotChecked}">
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="Click">
- <cal:ActionMessage MethodName="SlotButtonClick">
- </cal:ActionMessage>
- </i:EventTrigger>
- </i:Interaction.Triggers>
- </RadioButton>
- </Canvas>
- </Grid>
- </Border>
- </Border>
-
- </UserControl>
|