123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116 |
- <UserControl x:Class="FurnaceUI.Views.Jobs.JOBStatusView"
- 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:ed ="http://schemas.microsoft.com/expression/2010/drawing"
- xmlns:cal="http://www.caliburn.org"
- xmlns:local="clr-namespace:FurnaceUI.Views.Jobs"
- mc:Ignorable="d"
- Height="510" Width="780" FontFamily="Segoe">
- <!--<Border BorderBrush="Gray" BorderThickness="0,1,0,0" Background="{DynamicResource Tab_BG}" Padding="5">-->
- <Grid Background="White">
- <Grid.RowDefinitions>
- <RowDefinition Height="*" />
- <RowDefinition Height="60"/>
- </Grid.RowDefinitions>
- <TabControl Grid.Row="0" Margin="10,10,10,0" Background="Transparent">
- <TabItem Header="Transfer Job Status">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="*"/>
- </Grid.ColumnDefinitions>
- <StackPanel Grid.Column="0">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="40"/>
- <RowDefinition Height="*"/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="200"/>
- <ColumnDefinition Width="*"/>
- </Grid.ColumnDefinitions>
- <Border Grid.Row="0" Grid.Column="0" BorderBrush="Green" BorderThickness="1,1,1,1" Margin="10,0,0,0">
- <TextBlock Text="Job Name :" FontSize="20" TextAlignment="Right" VerticalAlignment="Center" Padding="0,0,10,0"/>
- </Border>
- <Border Grid.Row="0" Grid.Column="1" BorderBrush="Green" BorderThickness="0,1,1,1" Margin="0,0,10,0">
- <TextBlock Text="{Binding JobName}" FontSize="20" TextAlignment="Left" VerticalAlignment="Center" Padding="10,0,0,0"/>
- </Border>
- <Border Grid.Row="3" Grid.Column="0" Grid.ColumnSpan="2" Margin="10">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="*"/>
- <ColumnDefinition Width="*"/>
- <ColumnDefinition Width="*"/>
- </Grid.ColumnDefinitions>
- <Border Grid.Column="0" Grid.ColumnSpan="2">
- <Border BorderBrush="Green" BorderThickness="2" CornerRadius="6">
- <WrapPanel Orientation="Vertical" Margin="10" HorizontalAlignment="Center">
- <Border BorderBrush="Black" BorderThickness="1" Background="{Binding LoadingBk}" Width="180" Height="40" Margin="5,100,5,20">
- <TextBlock Text="Loading" FontSize="20" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="Black" BorderThickness="1" Background="{Binding UnloadingBk}" Width="180" Height="40" Margin="5,20,5,100">
- <TextBlock Text="Unloading" FontSize="20" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- </WrapPanel>
- </Border>
- </Border>
- <Border Grid.Column="2" BorderBrush="Green" BorderThickness="2" CornerRadius="6" Margin="10,0,0,0">
- <WrapPanel Orientation="Vertical" HorizontalAlignment="Center" Margin="5">
- <Border Margin="5,140,5,10">
- <Button Content="Abort" Width="120" Height="40" IsEnabled="{Binding TransferJobEnabledAbort}">
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="Click">
- <cal:ActionMessage MethodName="Abort">
- </cal:ActionMessage>
- </i:EventTrigger>
- </i:Interaction.Triggers>
- </Button>
- </Border>
- </WrapPanel>
- </Border>
- </Grid>
- </Border>
- </Grid>
- </StackPanel>
- <!--<Grid Grid.Column="1">
- <Border BorderBrush="Green" BorderThickness="2" Margin="10">
- <Canvas>
- <Border Background="White" BorderBrush="Black" BorderThickness="2" Canvas.Left="30" Canvas.Top="60" Width="200" Height="70">
- <TextBlock Text="TR-JOB CREATED" Canvas.Left="79" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border Background="{Binding ActiveBk}" BorderBrush="Black" BorderThickness="2" Canvas.Left="30" Canvas.Top="170" Width="200" Height="140">
- <TextBlock Text="TR-JOB ACTIVE" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <TextBlock Text="TR-JOB 1" FontSize="30" Canvas.Left="285" Canvas.Top="33"/>
- <Button Content="Job Abort" Canvas.Left="295" Canvas.Top="128" Width="120" Height="50"/>
- <Border Background="White" BorderBrush="Black" BorderThickness="1" Canvas.Left="250" Canvas.Top="260" Width="100" Height="50">
- <WrapPanel Orientation="Vertical" HorizontalAlignment="Center" Margin="3">
- <TextBlock Text="TR-JOB" TextAlignment="Center"/>
- <TextBlock Text="ABORT" TextAlignment="Center"/>
- </WrapPanel>
- </Border>
- <TextBlock Text="(Idle)" Canvas.Left="112" Canvas.Top="347"/>
- <Path Stroke="Black" Fill="Black">
- <Path.Data>
- <EllipseGeometry RadiusX="5" RadiusY="5" Center="290,95"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="290,95" EndPoint="242,95"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="0" Fill="Black" Canvas.Top="90" Canvas.Left="230">
- <Path.Data>
- <PathGeometry>
- <PathGeometry.Figures>
- <PathFigure StartPoint="0,5" IsClosed="True">
- <LineSegment Point="12,0" />
- <LineSegment Point="12,10" />
- </PathFigure>
- </PathGeometry.Figures>
- </PathGeometry>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="130,130" EndPoint="130,158"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="0" Fill="Black" Canvas.Top="158" Canvas.Left="125">
- <Path.Data>
- <PathGeometry>
- <PathGeometry.Figures>
- <PathFigure StartPoint="5,12" IsClosed="True">
- <LineSegment Point="0,0" />
- <LineSegment Point="10,0" />
- </PathFigure>
- </PathGeometry.Figures>
- </PathGeometry>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="130,310" EndPoint="130,336"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="0" Fill="Black" Canvas.Top="336" Canvas.Left="125">
- <Path.Data>
- <PathGeometry>
- <PathGeometry.Figures>
- <PathFigure StartPoint="5,12" IsClosed="True">
- <LineSegment Point="0,0" />
- <LineSegment Point="10,0" />
- </PathFigure>
- </PathGeometry.Figures>
- </PathGeometry>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="230,200" EndPoint="300,200"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="300,199" EndPoint="300,248"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="0" Fill="Black" Canvas.Top="248" Canvas.Left="295">
- <Path.Data>
- <PathGeometry>
- <PathGeometry.Figures>
- <PathFigure StartPoint="5,12" IsClosed="True">
- <LineSegment Point="0,0" />
- <LineSegment Point="10,0" />
- </PathFigure>
- </PathGeometry.Figures>
- </PathGeometry>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="300,310" EndPoint="300,356"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="301,356" EndPoint="160,356"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="0" Fill="Black" Canvas.Top="351" Canvas.Left="150">
- <Path.Data>
- <PathGeometry>
- <PathGeometry.Figures>
- <PathFigure StartPoint="0,5" IsClosed="True">
- <LineSegment Point="12,0" />
- <LineSegment Point="12,10" />
- </PathFigure>
- </PathGeometry.Figures>
- </PathGeometry>
- </Path.Data>
- </Path>
- </Canvas>
- </Border>
- </Grid>-->
- </Grid>
- </TabItem>
- <TabItem Header="A Batch Job Status">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="*"/>
- </Grid.ColumnDefinitions>
- <StackPanel Grid.Column="0">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="40"/>
- <RowDefinition Height="40"/>
- <RowDefinition Height="40"/>
- <RowDefinition Height="*"/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="47.75"/>
- <ColumnDefinition Width="152.25"/>
- <ColumnDefinition Width="*"/>
- </Grid.ColumnDefinitions>
- <Border Grid.Row="0" Grid.Column="0" BorderBrush="Green" BorderThickness="1,1,1,1" Margin="10,0,0,0" Grid.ColumnSpan="2">
- <TextBlock Text="Job Name :" FontSize="20" TextAlignment="Right" VerticalAlignment="Center" Padding="0,0,10,0"/>
- </Border>
- <Border Grid.Row="0" Grid.Column="2" BorderBrush="Green" BorderThickness="0,1,1,1" Margin="0,0,10,0">
- <TextBlock Text="{Binding Process1JobName}" FontSize="20" TextAlignment="Left" VerticalAlignment="Center" Padding="10,0,0,0"/>
- </Border>
- <Border Grid.Row="1" Grid.Column="0" BorderBrush="Green" BorderThickness="1,0,1,1" Margin="10,0,0,0" Grid.ColumnSpan="2">
- <TextBlock Text="Recipe Name :" FontSize="20" TextAlignment="Right" VerticalAlignment="Center" Padding="0,0,10,0"/>
- </Border>
- <Border Grid.Row="1" Grid.Column="2" BorderBrush="Green" BorderThickness="0,0,1,1" Margin="0,0,10,0">
- <TextBlock Text="{Binding Process1RcpName}" FontSize="20" TextAlignment="Left" VerticalAlignment="Center" Padding="10,0,0,0"/>
- </Border>
- <Border Grid.Row="2" Grid.Column="0" BorderBrush="Green" BorderThickness="1,0,1,1" Margin="10,0,0,0" Grid.ColumnSpan="2">
- <TextBlock Text="Batch Name :" FontSize="20" TextAlignment="Right" VerticalAlignment="Center" Padding="0,0,10,0"/>
- </Border>
- <Border Grid.Row="2" Grid.Column="2" BorderBrush="Green" BorderThickness="0,0,1,1" Margin="0,0,10,0">
- <TextBlock Text="{Binding Process1BatchName}" FontSize="20" TextAlignment="Left" VerticalAlignment="Center" Padding="10,0,0,0"/>
- </Border>
- <Border Grid.Row="3" Grid.Column="0" Grid.ColumnSpan="3" Margin="10">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="*"/>
- <ColumnDefinition Width="*"/>
- <ColumnDefinition Width="*"/>
- </Grid.ColumnDefinitions>
- <Border Grid.Column="0" Grid.ColumnSpan="2">
- <Border BorderBrush="Green" BorderThickness="2" CornerRadius="6">
- <WrapPanel Orientation="Vertical" Margin="10" HorizontalAlignment="Center">
- <Border BorderBrush="Black" BorderThickness="1" Background="{Binding ProcessJob1ChargingBk}" Width="180" Height="40" Margin="5,10">
- <TextBlock Text="Charging" FontSize="20" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="Black" BorderThickness="1" Background="{Binding ProcessJob1ProcessingBk}" Width="180" Height="40" Margin="5,10">
- <TextBlock Text="Processing" FontSize="20" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="Black" BorderThickness="1" Background="{Binding ProcessJob1CoolingBk}" Width="180" Height="40" Margin="5,10">
- <TextBlock Text="Cooling" FontSize="20" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="Black" BorderThickness="1" Background="{Binding ProcessJob1DischargingBk}" Width="180" Height="40" Margin="5,10">
- <TextBlock Text="Discharging" FontSize="20" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- </WrapPanel>
- </Border>
- </Border>
- <Border Grid.Column="2" BorderBrush="Green" BorderThickness="2" CornerRadius="6" Margin="10,0,0,0">
- <WrapPanel Orientation="Vertical" HorizontalAlignment="Center" Margin="5">
- <Border Margin="5,10,5,10">
- <Button Content="Pause" Width="120" Height="40" IsEnabled="{Binding IsProcessJob1EnabledPause}">
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="Click">
- <cal:ActionMessage MethodName="Pause">
- </cal:ActionMessage>
- </i:EventTrigger>
- </i:Interaction.Triggers>
- </Button>
- </Border>
- <Border Margin="5,10,5,10">
- <Button Content="Resume" Width="120" Height="40" IsEnabled="{Binding IsProcessJob1EnabledResume}">
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="Click">
- <cal:ActionMessage MethodName="Resume">
- </cal:ActionMessage>
- </i:EventTrigger>
- </i:Interaction.Triggers>
- </Button>
- </Border>
- <Border Margin="5,10,5,10">
- <Button Content="Abort" Width="120" Height="40" IsEnabled="{Binding IsProcessJob1EnabledAbort}">
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="Click">
- <cal:ActionMessage MethodName="Abort">
- </cal:ActionMessage>
- </i:EventTrigger>
- </i:Interaction.Triggers>
- </Button>
- </Border>
- <Border Margin="5,10,5,10">
- <Button Content="Withdraw" Width="120" Height="40" IsEnabled="{Binding IsProcessJob1EnabledWithdraw}">
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="Click">
- <cal:ActionMessage MethodName="Withdraw">
- </cal:ActionMessage>
- </i:EventTrigger>
- </i:Interaction.Triggers>
- </Button>
- </Border>
- </WrapPanel>
- </Border>
- </Grid>
- </Border>
- </Grid>
- </StackPanel>
- <!--<Grid Grid.Column="1">
- <Border BorderBrush="Green" BorderThickness="2" Margin="10">
- <Canvas>
- <Border Background="White" BorderBrush="Black" BorderThickness="1" Canvas.Left="30" Canvas.Top="10" Width="260" Height="70">
- <Canvas>
- <TextBlock Text="PR-JOB CREATED" Canvas.Left="79" Canvas.Top="5"/>
- <RadioButton Content="Start" Canvas.Left="20" Canvas.Top="25" Width="100" Height="34" GroupName="Created" Visibility="Hidden"/>
- <RadioButton Content="Cancel" Canvas.Left="140" Canvas.Top="25" Width="100" Height="34" GroupName="Created" Visibility="Hidden"/>
- -->
- <!--<TextBox Text="{Binding ProcessJob1Status,UpdateSourceTrigger=PropertyChanged}" Width="220" Canvas.Left="20" FontSize="30" Canvas.Top="30"/>-->
- <!--
- </Canvas>
- </Border>
- <Border Background="Gainsboro" BorderBrush="Black" BorderThickness="1" Canvas.Left="30" Canvas.Top="86" Width="260" Height="245">
- <Canvas>
- <TextBlock Text="ACTIVE" Canvas.Left="201" Canvas.Top="10"/>
- <Border Background="{Binding ProcessJob1SetUpBk}" BorderBrush="Black" BorderThickness="1" Canvas.Left="5" Canvas.Top="20" Width="110" Height="48">
- <WrapPanel Orientation="Vertical" HorizontalAlignment="Center" Margin="3">
- <TextBlock Text="PR-JOB" TextAlignment="Center"/>
- <TextBlock Text="SET UP" TextAlignment="Center"/>
- </WrapPanel>
- </Border>
- <Border Background="{Binding ProcessJob1ProcessingBk}" BorderBrush="Black" BorderThickness="1" Canvas.Left="5" Canvas.Top="88" Width="110" Height="70">
- <WrapPanel Orientation="Vertical" HorizontalAlignment="Center" Margin="3">
- <TextBlock Text="PR-JOB" TextAlignment="Center"/>
- <TextBlock Text="BODY" TextAlignment="Center"/>
- <TextBlock Text="PROCESSING" TextAlignment="Center"/>
- </WrapPanel>
- </Border>
- <Border Background="{Binding ProcessJob1RestoreBk}" BorderBrush="Black" BorderThickness="1" Canvas.Left="5" Canvas.Top="178" Width="110" Height="48">
- <WrapPanel Orientation="Vertical" HorizontalAlignment="Center" Margin="3">
- <TextBlock Text="PR-JOB" TextAlignment="Center"/>
- <TextBlock Text="RESTORE" TextAlignment="Center"/>
- </WrapPanel>
- </Border>
- <Border Background="{Binding ProcessJob1NotStoppingBk}" BorderBrush="Black" BorderThickness="1" Canvas.Left="134" Canvas.Top="110" Width="120" Height="48">
- <WrapPanel Orientation="Vertical" HorizontalAlignment="Center" Margin="3">
- <TextBlock Text="PR-JOB" TextAlignment="Center"/>
- <TextBlock Text="NOT STOPPING" TextAlignment="Center"/>
- </WrapPanel>
- </Border>
- <Border Background="{Binding ProcessJob1StoppingBk}" BorderBrush="Black" BorderThickness="1" Canvas.Left="134" Canvas.Top="178" Width="120" Height="48">
- <WrapPanel Orientation="Vertical" HorizontalAlignment="Center" Margin="3">
- <TextBlock Text="PR-JOB" TextAlignment="Center"/>
- <TextBlock Text="STOPPING" TextAlignment="Center"/>
- </WrapPanel>
- </Border>
- </Canvas>
- </Border>
- <TextBlock Text="PR-JOB 1" FontSize="30" Canvas.Left="304" Canvas.Top="10"/>
- <Button Content="Job Abort" Canvas.Left="326" Canvas.Top="79" Width="100" Height="34"/>
- <Button Content="Detail" Canvas.Left="326" Canvas.Top="148" Width="100" Height="34" Visibility="Hidden"/>
- <Border Background="{Binding ProcessJob1AbortingBk}" BorderBrush="Black" BorderThickness="1" Canvas.Left="326" Canvas.Top="224" Width="100" Height="48">
- <WrapPanel Orientation="Vertical" HorizontalAlignment="Center" Margin="3">
- <TextBlock Text="PR-JOB" TextAlignment="Center"/>
- <TextBlock Text="ABORT" TextAlignment="Center"/>
- </WrapPanel>
- </Border>
- <TextBlock Text="(Idle)" Canvas.Left="74" Canvas.Top="347"/>
- <Path Stroke="Black" Fill="Black">
- <Path.Data>
- <EllipseGeometry RadiusX="5" RadiusY="5" Center="370,50"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="365,50" EndPoint="301,50"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="0" Fill="Black" Canvas.Top="45" Canvas.Left="290">
- <Path.Data>
- <PathGeometry>
- <PathGeometry.Figures>
- <PathFigure StartPoint="0,5" IsClosed="True">
- <LineSegment Point="12,0" />
- <LineSegment Point="12,10" />
- </PathFigure>
- </PathGeometry.Figures>
- </PathGeometry>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="30,40" EndPoint="15,40"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="15,39" EndPoint="15,356"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="14,356" EndPoint="59,356"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="0" Fill="Black" Canvas.Top="351" Canvas.Left="59">
- <Path.Data>
- <PathGeometry>
- <PathGeometry.Figures>
- <PathFigure StartPoint="12,5" IsClosed="True">
- <LineSegment Point="0,0" />
- <LineSegment Point="0,10" />
- </PathFigure>
- </PathGeometry.Figures>
- </PathGeometry>
- </Path.Data>
- </Path>
- -->
- <!--<Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="90,70" EndPoint="90,95"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="0" Fill="Black" Canvas.Top="95" Canvas.Left="85">
- <Path.Data>
- <PathGeometry>
- <PathGeometry.Figures>
- <PathFigure StartPoint="5,12" IsClosed="True">
- <LineSegment Point="0,0" />
- <LineSegment Point="10,0" />
- </PathFigure>
- </PathGeometry.Figures>
- </PathGeometry>
- </Path.Data>
- </Path>-->
- <!--
- <Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="90,154" EndPoint="90,163"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="0" Fill="Black" Canvas.Top="163" Canvas.Left="85">
- <Path.Data>
- <PathGeometry>
- <PathGeometry.Figures>
- <PathFigure StartPoint="5,12" IsClosed="True">
- <LineSegment Point="0,0" />
- <LineSegment Point="10,0" />
- </PathFigure>
- </PathGeometry.Figures>
- </PathGeometry>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="90,244" EndPoint="90,253"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="0" Fill="Black" Canvas.Top="253" Canvas.Left="85">
- <Path.Data>
- <PathGeometry>
- <PathGeometry.Figures>
- <PathFigure StartPoint="5,12" IsClosed="True">
- <LineSegment Point="0,0" />
- <LineSegment Point="10,0" />
- </PathFigure>
- </PathGeometry.Figures>
- </PathGeometry>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="90,312" EndPoint="90,336"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="0" Fill="Black" Canvas.Top="336" Canvas.Left="85">
- <Path.Data>
- <PathGeometry>
- <PathGeometry.Figures>
- <PathFigure StartPoint="5,12" IsClosed="True">
- <LineSegment Point="0,0" />
- <LineSegment Point="10,0" />
- </PathFigure>
- </PathGeometry.Figures>
- </PathGeometry>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2" StrokeDashArray="1 1">
- <Path.Data>
- <LineGeometry StartPoint="156,164" EndPoint="290,164"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2" StrokeDashArray="1 1">
- <Path.Data>
- <LineGeometry StartPoint="156,164" EndPoint="156,331"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" Fill="Black">
- <Path.Data>
- <EllipseGeometry RadiusX="5" RadiusY="5" Center="175,176"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="180,176" EndPoint="224,176"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="224,175" EndPoint="224,186"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="0" Fill="Black" Canvas.Top="186" Canvas.Left="219">
- <Path.Data>
- <PathGeometry>
- <PathGeometry.Figures>
- <PathFigure StartPoint="5,12" IsClosed="True">
- <LineSegment Point="0,0" />
- <LineSegment Point="10,0" />
- </PathFigure>
- </PathGeometry.Figures>
- </PathGeometry>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="224,244" EndPoint="224,254"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="0" Fill="Black" Canvas.Top="254" Canvas.Left="219">
- <Path.Data>
- <PathGeometry>
- <PathGeometry.Figures>
- <PathFigure StartPoint="5,12" IsClosed="True">
- <LineSegment Point="0,0" />
- <LineSegment Point="10,0" />
- </PathFigure>
- </PathGeometry.Figures>
- </PathGeometry>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="224,312" EndPoint="224,344"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="0" Fill="Black" Canvas.Top="344" Canvas.Left="219">
- <Path.Data>
- <PathGeometry>
- <PathGeometry.Figures>
- <PathFigure StartPoint="5,12" IsClosed="True">
- <LineSegment Point="0,0" />
- <LineSegment Point="10,0" />
- </PathFigure>
- </PathGeometry.Figures>
- </PathGeometry>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="290,200" EndPoint="376,200"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="376,199" EndPoint="376,212"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="0" Fill="Black" Canvas.Top="212" Canvas.Left="371">
- <Path.Data>
- <PathGeometry>
- <PathGeometry.Figures>
- <PathFigure StartPoint="5,12" IsClosed="True">
- <LineSegment Point="0,0" />
- <LineSegment Point="10,0" />
- </PathFigure>
- </PathGeometry.Figures>
- </PathGeometry>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="376,272" EndPoint="376,356"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="377,356" EndPoint="122,356"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="0" Fill="Black" Canvas.Top="351" Canvas.Left="110">
- <Path.Data>
- <PathGeometry>
- <PathGeometry.Figures>
- <PathFigure StartPoint="0,5" IsClosed="True">
- <LineSegment Point="12,0" />
- <LineSegment Point="12,10" />
- </PathFigure>
- </PathGeometry.Figures>
- </PathGeometry>
- </Path.Data>
- </Path>
- </Canvas>
- </Border>
- </Grid>-->
- </Grid>
- </TabItem>
- <TabItem Header="B Batch Job Status">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="*"/>
- </Grid.ColumnDefinitions>
- <StackPanel Grid.Column="0">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="40"/>
- <RowDefinition Height="40"/>
- <RowDefinition Height="40"/>
- <RowDefinition Height="*"/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="200"/>
- <ColumnDefinition Width="*"/>
- </Grid.ColumnDefinitions>
- <Border Grid.Row="0" Grid.Column="0" BorderBrush="Green" BorderThickness="1,1,1,1" Margin="10,0,0,0">
- <TextBlock Text="Job Name :" FontSize="20" TextAlignment="Right" VerticalAlignment="Center" Padding="0,0,10,0"/>
- </Border>
- <Border Grid.Row="0" Grid.Column="1" BorderBrush="Green" BorderThickness="0,1,1,1" Margin="0,0,10,0">
- <TextBlock Text="{Binding Process2JobName}" FontSize="20" TextAlignment="Left" VerticalAlignment="Center" Padding="10,0,0,0"/>
- </Border>
- <Border Grid.Row="1" Grid.Column="0" BorderBrush="Green" BorderThickness="1,0,1,1" Margin="10,0,0,0">
- <TextBlock Text="Recipe Name :" FontSize="20" TextAlignment="Right" VerticalAlignment="Center" Padding="0,0,10,0"/>
- </Border>
- <Border Grid.Row="1" Grid.Column="1" BorderBrush="Green" BorderThickness="0,0,1,1" Margin="0,0,10,0">
- <TextBlock Text="{Binding Process2RcpName}" FontSize="20" TextAlignment="Left" VerticalAlignment="Center" Padding="10,0,0,0"/>
- </Border>
- <Border Grid.Row="2" Grid.Column="0" BorderBrush="Green" BorderThickness="1,0,1,1" Margin="10,0,0,0">
- <TextBlock Text="Batch Name :" FontSize="20" TextAlignment="Right" VerticalAlignment="Center" Padding="0,0,10,0"/>
- </Border>
- <Border Grid.Row="2" Grid.Column="1" BorderBrush="Green" BorderThickness="0,0,1,1" Margin="0,0,10,0">
- <TextBlock Text="{Binding Process2BatchName}" FontSize="20" TextAlignment="Left" VerticalAlignment="Center" Padding="10,0,0,0"/>
- </Border>
- <Border Grid.Row="3" Grid.Column="0" Grid.ColumnSpan="2" Margin="10">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="*"/>
- <ColumnDefinition Width="*"/>
- <ColumnDefinition Width="*"/>
- </Grid.ColumnDefinitions>
- <Border Grid.Column="0" Grid.ColumnSpan="2">
- <Border BorderBrush="Green" BorderThickness="2" CornerRadius="6">
- <WrapPanel Orientation="Vertical" Margin="10" HorizontalAlignment="Center">
- <Border BorderBrush="Black" BorderThickness="1" Background="{Binding ProcessJob2ChargingBk}" Width="180" Height="40" Margin="5,10">
- <TextBlock Text="Charging" FontSize="20" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="Black" BorderThickness="1" Background="{Binding ProcessJob2ProcessingBk}" Width="180" Height="40" Margin="5,10">
- <TextBlock Text="Processing" FontSize="20" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="Black" BorderThickness="1" Background="{Binding ProcessJob2CoolingBk}" Width="180" Height="40" Margin="5,10">
- <TextBlock Text="Cooling" FontSize="20" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="Black" BorderThickness="1" Background="{Binding ProcessJob2DischargingBk}" Width="180" Height="40" Margin="5,10">
- <TextBlock Text="Discharging" FontSize="20" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- </WrapPanel>
- </Border>
- </Border>
- <Border Grid.Column="2" BorderBrush="Green" BorderThickness="2" CornerRadius="6" Margin="10,0,0,0">
- <WrapPanel Orientation="Vertical" HorizontalAlignment="Center" Margin="5">
- <Border Margin="5,10,5,10">
- <Button Content="Pause" Width="120" Height="40" IsEnabled="{Binding IsProcessJob2EnabledPause}">
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="Click">
- <cal:ActionMessage MethodName="Pause">
- </cal:ActionMessage>
- </i:EventTrigger>
- </i:Interaction.Triggers>
- </Button>
- </Border>
- <Border Margin="5,10,5,10">
- <Button Content="Resume" Width="120" Height="40" IsEnabled="{Binding IsProcessJob2EnabledResume}">
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="Click">
- <cal:ActionMessage MethodName="Resume">
- </cal:ActionMessage>
- </i:EventTrigger>
- </i:Interaction.Triggers>
- </Button>
- </Border>
- <Border Margin="5,10,5,10">
- <Button Content="Abort" Width="120" Height="40" IsEnabled="{Binding IsProcessJob2EnabledAbort}">
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="Click">
- <cal:ActionMessage MethodName="Abort">
- </cal:ActionMessage>
- </i:EventTrigger>
- </i:Interaction.Triggers>
- </Button>
- </Border>
- <Border Margin="5,10,5,10">
- <Button Content="Withdraw" Width="120" Height="40" IsEnabled="{Binding IsProcessJob2EnabledWithdraw}">
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="Click">
- <cal:ActionMessage MethodName="Withdraw">
- </cal:ActionMessage>
- </i:EventTrigger>
- </i:Interaction.Triggers>
- </Button>
- </Border>
- </WrapPanel>
- </Border>
- </Grid>
- </Border>
- </Grid>
- </StackPanel>
- <!--<Grid Grid.Column="1">
- <Border BorderBrush="Green" BorderThickness="2" Margin="10">
- <Canvas>
- <Border Background="White" BorderBrush="Black" BorderThickness="1" Canvas.Left="30" Canvas.Top="10" Width="260" Height="70">
- <Canvas>
- <TextBlock Text="PR-JOB CREATED" Canvas.Left="79" Canvas.Top="5"/>
- <RadioButton Content="Start" Canvas.Left="20" Canvas.Top="25" Width="100" Height="34" GroupName="Created" Visibility="Hidden"/>
- <RadioButton Content="Cancel" Canvas.Left="140" Canvas.Top="25" Width="100" Height="34" GroupName="Created" Visibility="Hidden"/>
- -->
- <!--<TextBox Text="{Binding ProcessJob2Status,UpdateSourceTrigger=PropertyChanged}" Width="220" Canvas.Left="20" FontSize="30" Canvas.Top="30"/>-->
- <!--
- </Canvas>
- </Border>
- <Border Background="Gainsboro" BorderBrush="Black" BorderThickness="1" Canvas.Left="30" Canvas.Top="86" Width="260" Height="245">
- <Canvas>
- <TextBlock Text="ACTIVE" Canvas.Left="201" Canvas.Top="10"/>
- <Border Background="{Binding ProcessJob2SetUpBk}" BorderBrush="Black" BorderThickness="1" Canvas.Left="5" Canvas.Top="20" Width="110" Height="48">
- <WrapPanel Orientation="Vertical" HorizontalAlignment="Center" Margin="3">
- <TextBlock Text="PR-JOB" TextAlignment="Center"/>
- <TextBlock Text="SET UP" TextAlignment="Center"/>
- </WrapPanel>
- </Border>
- <Border Background="{Binding ProcessJob2ProcessingBk}" BorderBrush="Black" BorderThickness="1" Canvas.Left="5" Canvas.Top="88" Width="110" Height="70">
- <WrapPanel Orientation="Vertical" HorizontalAlignment="Center" Margin="3">
- <TextBlock Text="PR-JOB" TextAlignment="Center"/>
- <TextBlock Text="BODY" TextAlignment="Center"/>
- <TextBlock Text="PROCESSING" TextAlignment="Center"/>
- </WrapPanel>
- </Border>
- <Border Background="{Binding ProcessJob2RestoreBk}" BorderBrush="Black" BorderThickness="1" Canvas.Left="5" Canvas.Top="178" Width="110" Height="48">
- <WrapPanel Orientation="Vertical" HorizontalAlignment="Center" Margin="3">
- <TextBlock Text="PR-JOB" TextAlignment="Center"/>
- <TextBlock Text="RESTORE" TextAlignment="Center"/>
- </WrapPanel>
- </Border>
- <Border Background="{Binding ProcessJob2NotStoppingBk}" BorderBrush="Black" BorderThickness="1" Canvas.Left="134" Canvas.Top="110" Width="120" Height="48">
- <WrapPanel Orientation="Vertical" HorizontalAlignment="Center" Margin="3">
- <TextBlock Text="PR-JOB" TextAlignment="Center"/>
- <TextBlock Text="NOT STOPPING" TextAlignment="Center"/>
- </WrapPanel>
- </Border>
- <Border Background="{Binding ProcessJob2StoppingBk}" BorderBrush="Black" BorderThickness="1" Canvas.Left="134" Canvas.Top="178" Width="120" Height="48">
- <WrapPanel Orientation="Vertical" HorizontalAlignment="Center" Margin="3">
- <TextBlock Text="PR-JOB" TextAlignment="Center"/>
- <TextBlock Text="STOPPING" TextAlignment="Center"/>
- </WrapPanel>
- </Border>
- </Canvas>
- </Border>
- <TextBlock Text="PR-JOB 2" FontSize="30" Canvas.Left="304" Canvas.Top="10"/>
- <Button Content="Job Abort" Canvas.Left="326" Canvas.Top="79" Width="100" Height="34"/>
- <Button Content="Detail" Canvas.Left="326" Canvas.Top="148" Width="100" Height="34" Visibility="Hidden"/>
- <Border Background="{Binding ProcessJob2AbortingBk}" BorderBrush="Black" BorderThickness="1" Canvas.Left="326" Canvas.Top="224" Width="100" Height="48">
- <WrapPanel Orientation="Vertical" HorizontalAlignment="Center" Margin="3">
- <TextBlock Text="PR-JOB" TextAlignment="Center"/>
- <TextBlock Text="ABORT" TextAlignment="Center"/>
- </WrapPanel>
- </Border>
- <TextBlock Text="(Idle)" Canvas.Left="74" Canvas.Top="347"/>
- <Path Stroke="Black" Fill="Black">
- <Path.Data>
- <EllipseGeometry RadiusX="5" RadiusY="5" Center="370,50"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="365,50" EndPoint="301,50"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="0" Fill="Black" Canvas.Top="45" Canvas.Left="290">
- <Path.Data>
- <PathGeometry>
- <PathGeometry.Figures>
- <PathFigure StartPoint="0,5" IsClosed="True">
- <LineSegment Point="12,0" />
- <LineSegment Point="12,10" />
- </PathFigure>
- </PathGeometry.Figures>
- </PathGeometry>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="30,40" EndPoint="15,40"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="15,39" EndPoint="15,356"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="14,356" EndPoint="59,356"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="0" Fill="Black" Canvas.Top="351" Canvas.Left="59">
- <Path.Data>
- <PathGeometry>
- <PathGeometry.Figures>
- <PathFigure StartPoint="12,5" IsClosed="True">
- <LineSegment Point="0,0" />
- <LineSegment Point="0,10" />
- </PathFigure>
- </PathGeometry.Figures>
- </PathGeometry>
- </Path.Data>
- </Path>
- -->
- <!--<Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="90,70" EndPoint="90,95"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="0" Fill="Black" Canvas.Top="95" Canvas.Left="85">
- <Path.Data>
- <PathGeometry>
- <PathGeometry.Figures>
- <PathFigure StartPoint="5,12" IsClosed="True">
- <LineSegment Point="0,0" />
- <LineSegment Point="10,0" />
- </PathFigure>
- </PathGeometry.Figures>
- </PathGeometry>
- </Path.Data>
- </Path>-->
- <!--
- <Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="90,154" EndPoint="90,163"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="0" Fill="Black" Canvas.Top="163" Canvas.Left="85">
- <Path.Data>
- <PathGeometry>
- <PathGeometry.Figures>
- <PathFigure StartPoint="5,12" IsClosed="True">
- <LineSegment Point="0,0" />
- <LineSegment Point="10,0" />
- </PathFigure>
- </PathGeometry.Figures>
- </PathGeometry>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="90,244" EndPoint="90,253"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="0" Fill="Black" Canvas.Top="253" Canvas.Left="85">
- <Path.Data>
- <PathGeometry>
- <PathGeometry.Figures>
- <PathFigure StartPoint="5,12" IsClosed="True">
- <LineSegment Point="0,0" />
- <LineSegment Point="10,0" />
- </PathFigure>
- </PathGeometry.Figures>
- </PathGeometry>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="90,312" EndPoint="90,336"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="0" Fill="Black" Canvas.Top="336" Canvas.Left="85">
- <Path.Data>
- <PathGeometry>
- <PathGeometry.Figures>
- <PathFigure StartPoint="5,12" IsClosed="True">
- <LineSegment Point="0,0" />
- <LineSegment Point="10,0" />
- </PathFigure>
- </PathGeometry.Figures>
- </PathGeometry>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2" StrokeDashArray="1 1">
- <Path.Data>
- <LineGeometry StartPoint="156,164" EndPoint="290,164"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2" StrokeDashArray="1 1">
- <Path.Data>
- <LineGeometry StartPoint="156,164" EndPoint="156,331"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" Fill="Black">
- <Path.Data>
- <EllipseGeometry RadiusX="5" RadiusY="5" Center="175,176"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="180,176" EndPoint="224,176"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="224,175" EndPoint="224,186"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="0" Fill="Black" Canvas.Top="186" Canvas.Left="219">
- <Path.Data>
- <PathGeometry>
- <PathGeometry.Figures>
- <PathFigure StartPoint="5,12" IsClosed="True">
- <LineSegment Point="0,0" />
- <LineSegment Point="10,0" />
- </PathFigure>
- </PathGeometry.Figures>
- </PathGeometry>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="224,244" EndPoint="224,254"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="0" Fill="Black" Canvas.Top="254" Canvas.Left="219">
- <Path.Data>
- <PathGeometry>
- <PathGeometry.Figures>
- <PathFigure StartPoint="5,12" IsClosed="True">
- <LineSegment Point="0,0" />
- <LineSegment Point="10,0" />
- </PathFigure>
- </PathGeometry.Figures>
- </PathGeometry>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="224,312" EndPoint="224,344"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="0" Fill="Black" Canvas.Top="344" Canvas.Left="219">
- <Path.Data>
- <PathGeometry>
- <PathGeometry.Figures>
- <PathFigure StartPoint="5,12" IsClosed="True">
- <LineSegment Point="0,0" />
- <LineSegment Point="10,0" />
- </PathFigure>
- </PathGeometry.Figures>
- </PathGeometry>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="290,200" EndPoint="376,200"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="376,199" EndPoint="376,212"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="0" Fill="Black" Canvas.Top="212" Canvas.Left="371">
- <Path.Data>
- <PathGeometry>
- <PathGeometry.Figures>
- <PathFigure StartPoint="5,12" IsClosed="True">
- <LineSegment Point="0,0" />
- <LineSegment Point="10,0" />
- </PathFigure>
- </PathGeometry.Figures>
- </PathGeometry>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="376,272" EndPoint="376,356"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="2">
- <Path.Data>
- <LineGeometry StartPoint="377,356" EndPoint="122,356"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="0" Fill="Black" Canvas.Top="351" Canvas.Left="110">
- <Path.Data>
- <PathGeometry>
- <PathGeometry.Figures>
- <PathFigure StartPoint="0,5" IsClosed="True">
- <LineSegment Point="12,0" />
- <LineSegment Point="12,10" />
- </PathFigure>
- </PathGeometry.Figures>
- </PathGeometry>
- </Path.Data>
- </Path>
- </Canvas>
- </Border>
- </Grid>-->
- </Grid>
- </TabItem>
- </TabControl>
- <DockPanel Grid.Row="1" Margin="10" HorizontalAlignment="Left">
- <Canvas>
- <Button Canvas.Left="630" Canvas.Top="-5" Content="Close" Width="130" Height="45" Style="{StaticResource CommandButton}">
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="Click">
- <cal:ActionMessage MethodName="CloseCmd">
- </cal:ActionMessage>
- </i:EventTrigger>
- </i:Interaction.Triggers>
- </Button>
- </Canvas>
- </DockPanel>
- <!--<Canvas Margin="16,136,-16,-136">
- <Line Stroke="Blue" StrokeThickness="5" X1="10" Y1="10" X2="100" Y2="10"/>
- <Path Stroke="Blue" StrokeThickness="5">
- <Path.Data>
- <LineGeometry StartPoint="10,20" EndPoint="100,20"/>
- </Path.Data>
- </Path>
- <Rectangle Stroke="Blue" Width="30" Height="20" Canvas.Top="30" Canvas.Left="10"/>
- <Path Stroke="Blue">
- <Path.Data>
- <RectangleGeometry Rect="50,30,30,20"/>
- </Path.Data>
- </Path>
- <Ellipse Stroke="Blue" Fill="DarkSlateGray" Width="20" Height="20" Canvas.Top="60" Canvas.Left="10"/>
- <Path Stroke="Black" Fill="Black">
- <Path.Data>
- <EllipseGeometry RadiusX="10" RadiusY="10" Center="60,70"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="0" Fill="Black" Canvas.Top="90" Canvas.Left="150">
- <Path.Data>
- <PathGeometry>
- <PathGeometry.Figures>
- <PathFigure StartPoint="30,0" IsClosed="True">
- <LineSegment Point="0,56" />
- <LineSegment Point="60,56" />
- </PathFigure>
- </PathGeometry.Figures>
- </PathGeometry>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="5">
- <Path.Data>
- <LineGeometry StartPoint="180,118" EndPoint="180,220"/>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="0" Fill="Black" Canvas.Top="90" Canvas.Left="250">
- <Path.Data>
- <PathGeometry>
- <PathGeometry.Figures>
- <PathFigure StartPoint="0,28" IsClosed="True">
- <LineSegment Point="60,0" />
- <LineSegment Point="60,56" />
- </PathFigure>
- </PathGeometry.Figures>
- </PathGeometry>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="0" Fill="Black" Canvas.Top="90" Canvas.Left="350">
- <Path.Data>
- <PathGeometry>
- <PathGeometry.Figures>
- <PathFigure StartPoint="60,28" IsClosed="True">
- <LineSegment Point="0,0" />
- <LineSegment Point="0,56" />
- </PathFigure>
- </PathGeometry.Figures>
- </PathGeometry>
- </Path.Data>
- </Path>
- <Path Stroke="Black" StrokeThickness="0" Fill="Black" Canvas.Top="90" Canvas.Left="450">
- <Path.Data>
- <PathGeometry>
- <PathGeometry.Figures>
- <PathFigure StartPoint="30,56" IsClosed="True">
- <LineSegment Point="60,0" />
- <LineSegment Point="0,0" />
- </PathFigure>
- </PathGeometry.Figures>
- </PathGeometry>
- </Path.Data>
- </Path>
- </Canvas>-->
- </Grid>
- <!--</Border>-->
- </UserControl>
|