diff --git a/sources/RoboforkApp.AWS/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache b/sources/RoboforkApp.AWS/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000000000000000000000000000000000000..b70e15509887c5344e30eee01c14022a4bc85b43 GIT binary patch literal 6629 zcmeHMZBH9V5VpZwFoYJJXv3M*N`v)8SQoB8b!gr3@))>+K3c{W0j%b!7d;d9p^yiHGo6s-@EwOSypB9oh5%h&2IPQK4v zR~&+~t`szDZhPZMgGZ}U6F532ygF|bxC_%Z^BnFl4ZV@1RkL;9bqkU;;ZVr^URRmb zufzJhQa^!Fht%S<*vhto=aO@V%oM$}{8@Pvds)ES0i(^DGPce=Wc;b+$m>X_>c zz00pQ@!*pF>@3qoKb5|)%siK1YauzP$(Ey;ECG}D-WJn)YO--bG2W7*ju9fSrX)1D z(z1OzA&HJ@pb*ZWp|im_gED=g>z(lUKFCK`tMgp7T-GMQixazvHrtuFC4~)23Av7| z=Nf&&l2TL&)t+yD0kJ+7_YldK+Z!_12Eym@?xo~JnOYSw&W>eWhy1aIJ=Pdm18)s>WE!vCE zvn%rpkXc@-rmtJa4P9y!aj5n;tT)_TJU&R#D6%NLo1!p&!*i<7H_#wKqsXB_g7)jd zStW9t97ZvgOwi>B3FHE?B^XONUlV$c_)0gi6R@ zE7tpsa!3r*2Mg9>y2mQJ407Y>#P|yBsEyT1W^NbR%qOH8mAr2<&s_KR%sk_jqNs^F zGSaz<623&b6Kd95Eo=QlsUm8hDn)RCDX8Q@A*C!M?J0s1?m@_Li%yZ^X5EmO-F-nid}jYbkI(O9h1@d1>tTRQ$@e|tRHO5dAWVc{(Lwyybc2XJLYR8A zFmJi{J7Fd0kQ_YO2T%6CzQgvL7zdA>U91Q+)yS^mf57POL8nB8J%1;{v+nY{{ouu& zigTZ>F+`E~{oedOzsBrTM@N%C;HlSZDWZr}t~7o`QHtQ)O%eYL5FX=2qJV|QIC0T{ zpq^byoXF`VZHm|`wG=T{TCMRDihIYoD=VKT#?RP0b^MBZno58LiG^0Ybxw>YsGm75 zUtQK~pBPWEzaJ#{8QPgRF0wo22$HSUGHI7M`q_`Z=w5yhSvzoOxt o2$G?|Y~~;{O%b7{b}PsLN)Kwoe+`ba|N39U;5ZAb#nthD0WVjTk^lez literal 0 HcmV?d00001 diff --git a/sources/RoboforkApp.AWS/obj/Release/RoboforkApp.AWS.csproj.FileListAbsolute.txt b/sources/RoboforkApp.AWS/obj/Release/RoboforkApp.AWS.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..ef61ca8 --- /dev/null +++ b/sources/RoboforkApp.AWS/obj/Release/RoboforkApp.AWS.csproj.FileListAbsolute.txt @@ -0,0 +1 @@ +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp.AWS\obj\Release\RoboforkApp.AWS.csprojResolveAssemblyReference.cache diff --git a/sources/RoboforkApp.AWS/obj/Release/RoboforkApp.AWS.csprojResolveAssemblyReference.cache b/sources/RoboforkApp.AWS/obj/Release/RoboforkApp.AWS.csprojResolveAssemblyReference.cache new file mode 100644 index 0000000000000000000000000000000000000000..68ba8e27c814c75ef7e561a52a98590a3849d20a GIT binary patch literal 1755 zcmcIk+invv6x`<4WSf?7zZEG+Jb)Tm2_aCBDg;ZTR`^sR zP4@jPABZO zX_uB!?eT1p!I{z!4>Z+)tXjl4WV7P(dR;T zXNW*T5_%wY~P7YCJigCi=(nb@Kc`Ca>KYr}Qj${jOxO`zMP+wOK=yK~qN7JQX- t*Ct`VHtC*CLO*QMeVc@S*`x @@ -2770,7 +2770,7 @@ namespace RoboforkApp Point node_Schedule = new Point(); double x_1 = 50; double y_1 = 80; - double Totaldistance = 1270; + double Totaldistance = 1220; if (ucScheduleNode_Lst.Count > 0) @@ -2853,7 +2853,7 @@ namespace RoboforkApp AddNode(node_Schedule, gGrpScheduleNode); } - addDistance = 0; + addDistance = x_1; for (int i = 0; i < distance.Count; i++) { @@ -3146,12 +3146,42 @@ namespace RoboforkApp } - //BindBlueNode2ucNode(); - SetScheduleRoute(); + ReDrawAllNode2(); } + public void ReDrawAllNode2() + { + LineGeometry lineGeometry = new LineGeometry(); + EllipseGeometry ellip; + //delete all line + gGrpScheduleLine.Children.Clear(); + scheduleCanvas.Children.Remove(pScheduleLine); + + //redraw line + for (int j = 0; j < gGrpScheduleNode.Children.Count - 1; j++) + { + ellip = (EllipseGeometry)gGrpScheduleNode.Children[j]; + Point node1 = ellip.Center; + ellip = (EllipseGeometry)gGrpScheduleNode.Children[j + 1]; + Point node2 = ellip.Center; + DrawLine(node1, node2, gGrpScheduleLine); + } + + scheduleCanvas.Children.Add(pScheduleLine); + + + //redraw ucNode + for (int k = 0; k < ucScheduleNode_Lst.Count; k++) + { + scheduleCanvas.Children.Remove(ucScheduleNode_Lst[k]); + scheduleCanvas.Children.Add(ucScheduleNode_Lst[k]); + } + + ////backup DB + //CreateVehicleNode(); + } #endregion #region Get data from AWS diff --git a/sources/RoboforkApp/RoboforkMenuView.xaml.cs b/sources/RoboforkApp/RoboforkMenuView.xaml.cs index d3327b5..9bcaa94 100644 --- a/sources/RoboforkApp/RoboforkMenuView.xaml.cs +++ b/sources/RoboforkApp/RoboforkMenuView.xaml.cs @@ -32,7 +32,7 @@ namespace RoboforkApp //NodeTree.IsEnabled = false; MyDesignerCanvas.InitDrawRoute(); - + MyDesignerCanvas.scheduleCanvas = MyScheduleCanvas; MyDesignerCanvas.ReadFile(); } diff --git a/sources/RoboforkApp/bin/Release/RboforkApp.vshost.exe b/sources/RoboforkApp/bin/Release/RboforkApp.vshost.exe index f4438052ce250a3f2c42a2c2cbd108b77f44e478..fc5a27b901daec583c7e39a49db0a34922c6bb22 100644 GIT binary patch delta 4856 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 delta 6035 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 diff --git a/sources/RoboforkApp/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache b/sources/RoboforkApp/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache index 8d252c4bc42852336f2a7f90ccf97404abdc8b58..98a908790d87a7af54c0525d47d9d325b5345577 100644 GIT binary patch delta 485 zcmZ2(*>AO>oSQL!vOKQ}qtWD#Jff2~a-ZZ9WME)mlLQhjND_N__!)iSd|k#cI9qgc z1aB%MV=P=iL`}~zJUAvPGcP76H77N(I5j3HKPf*gzbMAehFg4pfo`QX&)q6!*!@D+EhwKy?OB&JvPj)CB4b-+Wt$ja6C;C;X(?CTFYh(6mo+Hxai~wl47hTKryhZnb=GxNo6u>ZO)RiWdZ7Daz;+L=;T)ta*Vo@IVEK!^?-sx)gGC7B>{;g z8E!@Sxt=AdxwUNilkFwt84V`KOS(%K0@d(V2PKxfW#**%CFZ8qvKaw|T)~0zSW=tO bcrw3K1gi;9EE?>Y{Zc}Vnwu|4*)jnDBcM_9 diff --git a/sources/RoboforkApp/obj/Release/RboforkApp_MarkupCompile.cache b/sources/RoboforkApp/obj/Release/RboforkApp_MarkupCompile.cache index 4e1045a..f62194d 100644 --- a/sources/RoboforkApp/obj/Release/RboforkApp_MarkupCompile.cache +++ b/sources/RoboforkApp/obj/Release/RboforkApp_MarkupCompile.cache @@ -4,17 +4,17 @@ winexe C# .cs -E:\02_Project\Du an Anh Dai\Robofork\sources\RoboforkApp\obj\Release\ +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\ RoboforkApp none false TRACE -E:\02_Project\Du an Anh Dai\Robofork\sources\RoboforkApp\App.xaml +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\App.xaml 24-15970495 -271984491549 -13145648957 +31-781608262 +14-473200920 UserControls\simulationRobo.xaml;View\EditNodeView.xaml;Resources\Brushes.xaml;Resources\DesignerItem.xaml;Resources\Expander.xaml;Resources\LangResources.xaml;Resources\ResizeChrome.xaml;Resources\ScrollBar.xaml;Resources\ScrollViewer.xaml;Resources\Slider.xaml;Resources\StatusBar.xaml;Resources\Styles.xaml;Resources\ToolBar.xaml;Resources\Toolbox.xaml;Resources\Tooltip.xaml;Resources\ZoomBox.xaml;RoboforkMenuView.xaml;UserControls\ucDisplayCoordinate.xaml;UserControls\ucNode.xaml;UserControls\ucStartEndButton.xaml;Stencils\BasicShapes.xaml;Stencils\FlowChartSymbols.xaml;Stencils\RegelungstechnikSymbole.xaml;Stencils\SymbolStencils.xaml; -False +True diff --git a/sources/RoboforkApp/obj/Release/RboforkApp_MarkupCompile.i.cache b/sources/RoboforkApp/obj/Release/RboforkApp_MarkupCompile.i.cache index c640d52..6358def 100644 --- a/sources/RoboforkApp/obj/Release/RboforkApp_MarkupCompile.i.cache +++ b/sources/RoboforkApp/obj/Release/RboforkApp_MarkupCompile.i.cache @@ -4,16 +4,16 @@ winexe C# .cs -E:\02_Project\Du an Anh Dai\Robofork\sources\RoboforkApp\obj\Release\ +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\ RoboforkApp none false TRACE -E:\02_Project\Du an Anh Dai\Robofork\sources\RoboforkApp\App.xaml +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\App.xaml 24-15970495 -311815591653 -13145648957 +35-950508158 +14-473200920 UserControls\simulationRobo.xaml;View\EditNodeView.xaml;Resources\Brushes.xaml;Resources\DesignerItem.xaml;Resources\Expander.xaml;Resources\LangResources.xaml;Resources\ResizeChrome.xaml;Resources\ScrollBar.xaml;Resources\ScrollViewer.xaml;Resources\Slider.xaml;Resources\StatusBar.xaml;Resources\Styles.xaml;Resources\ToolBar.xaml;Resources\Toolbox.xaml;Resources\Tooltip.xaml;Resources\ZoomBox.xaml;RoboforkMenuView.xaml;UserControls\ucDisplayCoordinate.xaml;UserControls\ucNode.xaml;UserControls\ucStartEndButton.xaml;Stencils\BasicShapes.xaml;Stencils\FlowChartSymbols.xaml;Stencils\RegelungstechnikSymbole.xaml;Stencils\SymbolStencils.xaml; False diff --git a/sources/RoboforkApp/obj/Release/RboforkApp_MarkupCompile.lref b/sources/RoboforkApp/obj/Release/RboforkApp_MarkupCompile.lref index 6efe5ac..706394b 100644 --- a/sources/RoboforkApp/obj/Release/RboforkApp_MarkupCompile.lref +++ b/sources/RoboforkApp/obj/Release/RboforkApp_MarkupCompile.lref @@ -1,12 +1,12 @@ - +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\GeneratedInternalTypeHelper.g.cs -FE:\02_Project\Du an Anh Dai\Robofork\sources\RoboforkApp\Resources\DesignerItem.xaml;; -FE:\02_Project\Du an Anh Dai\Robofork\sources\RoboforkApp\Resources\ResizeChrome.xaml;; -FE:\02_Project\Du an Anh Dai\Robofork\sources\RoboforkApp\Resources\Toolbox.xaml;; -FE:\02_Project\Du an Anh Dai\Robofork\sources\RoboforkApp\Resources\ZoomBox.xaml;; -FE:\02_Project\Du an Anh Dai\Robofork\sources\RoboforkApp\RoboforkMenuView.xaml;; -FE:\02_Project\Du an Anh Dai\Robofork\sources\RoboforkApp\Stencils\BasicShapes.xaml;; -FE:\02_Project\Du an Anh Dai\Robofork\sources\RoboforkApp\Stencils\FlowChartSymbols.xaml;; -FE:\02_Project\Du an Anh Dai\Robofork\sources\RoboforkApp\Stencils\RegelungstechnikSymbole.xaml;; -FE:\02_Project\Du an Anh Dai\Robofork\sources\RoboforkApp\Stencils\SymbolStencils.xaml;; +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Resources\DesignerItem.xaml;; +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Resources\ResizeChrome.xaml;; +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Resources\Toolbox.xaml;; +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Resources\ZoomBox.xaml;; +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\RoboforkMenuView.xaml;; +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Stencils\BasicShapes.xaml;; +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Stencils\FlowChartSymbols.xaml;; +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Stencils\RegelungstechnikSymbole.xaml;; +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Stencils\SymbolStencils.xaml;; diff --git a/sources/RoboforkApp/obj/Release/Resources/DesignerItem.baml b/sources/RoboforkApp/obj/Release/Resources/DesignerItem.baml deleted file mode 100644 index e2c7d09ce7732e2df6e6051b5a304be72be29e68..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1553 zcmb_cU2oe|7=CS^I9Zc4O=$!p?HslMf)ytvO~0fHvIe9vT182;?E(oL=WS!n@rjO| zHr+o!-1epum;4)$xPhyQdoJJx?Go2}PugT*5@<-XWuLG2<9VO+oRb28eQ3cQs8RbR zjlP+F3Pkk4@@D|GW``eg@u)T!tQPL0@Ez{$u9;=|t`_!&ZZH(M>)|jEmb+SL3_Gr4 z-^0^3e}vwyH+0?n2iI*^eB@bu^aqxWJ54?fnVjhZEPtiI!-hZ~y}$}6(dUAkPAL0} z)a$RBy0X?etZY>`tZrpv9V^x4rV0lS9Iwky{5zJ9uOs9G4O+8!_qcd1ahnVdTBm-1 zeey9nywSlCPyIGMC0A<-7j(GeX4BQp<;f1u9D@fGUqf-K>RF$qI^7Q#{;wtGP^ z*eR8KyN7+tH~Wq)xX%v*)8_rsiQ^rPN*|ZY8>JC#d}%Oq7&K5M7FgO*MyvlP3L85z z>1rtczaK_`BymPCi*G8By<}pqCwL!C3FecKrQZFOw)Q>A?f7}0Ml0jqCjB*H=cZ)T zY)0AzNowx<=yz3-Hwk0fSqL{}3Fcy?5i@$6!ME^JR7}J`t(JedU@vBWe0ercwx50x zzR~imf#2qJJa%ksI3sj@U5|kY%8d8ZC?1<&p>%{rjUcXrM&gLaLHj#|4;QkTiMG29 zOVE9DnBaP}PE?tB9My=WYdaCX7ut;)>w@4&4*ZnTqdKv*R?MVd1 zd=heF-@&z_B`@XkZVl4;OLQ2OFL vRjbjYGSrmDZ7CpE>87`DW&uBnALqKnYf0 z8K3L8`ugJLfZ_!cYXHl|s$I98{pEH$o!TajYueUQPS3JWI#uX2y^cecEYk5DqnS=^ zb*fFX_BrX6?R{b`S)FF{?)z`on$DDEw20d_YGko!U$~40-T@}Q;$UaXAuh2z!^1!y zI|w?&=)=&{*A1P|RqOfrnOS2uKRZqGGZRG~HY%pIYahBRhD%=CcrZIe_IAX;v8 zT2*9i5l2mO@MjN{Eyr#X$Lp#wo~=XMMzcfIxB!tpNCoT+9(_|}tHdXcv1_7b(=qo< zOHG8BRW72jz6?Wl2uEu_tQ-6h`SJro|i6_A2nB(C`_DKs3r zMbz;yJfT7AY9a!UdLVD2oJ_AfImsdZ&Skuxof?nAJ&aZ8I4(xM6JyY^&)iQtFM$7vB3wWXY6$_9te#J&@asWeONb-Oa0rB~KKGbvVd?x$|CI`; zNG&QusM0V!@-v22fXhBc+HB*N4DnUN*)KH>kD&0ocp$7W^a36c6;V8|6u_WTeg*#W zIiY^Qul5EiN2trqPf=?Vy+?Zh6^eQDrcbMQ+RR7<@TB$PP;WBe9&~;plBy)2fXPJyR z2~rVR_a!NYV}f1A?&na1!S45Q!lXExB27M~T#l9P6rTq@`6(6fM@Ne!K*WFEEXq2X zgitP>@+Gc};W(kB2SQHD5Dsc}M9ge+o%Qux$cn;daUk`ppvaSnTv({`jy diff --git a/sources/RoboforkApp/obj/Release/Resources/Toolbox.baml b/sources/RoboforkApp/obj/Release/Resources/Toolbox.baml deleted file mode 100644 index 807686ca022d04259f1f9c70f176e4758b44d3dd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1686 zcmb_cO>Y}j6utA|8Gj{iNLth;VWQfof|{{Y$7vJE5>5l6p$(R8HC-UVc>HXSI-YUg zj1xOzk!|NpP?0*L(fgRW_uO;tc@qbK zTTp=wDB^e%SD%g_0T^De@E$<1Tyq;Py<6;b(o44q^(@yZEbCc*r^z1Lm( zO7fOv*skve(uY7qPkU`h?ti)phNf+q;1% z+6=&90MV*Jo5Zj7J48ze@Jj&U5_LO-`h6`f@^$F8VRwl(Bf%j%@%cF!ehwf}@hSFw z)9_kFN{zmDAp~0i%vKzu<5k^FvTK>7Wc7&cX$ghr2v@1qY@)5SgbJk-fMLEq28?j@ zqx!bd6pQBtHIy7ci95{D4@^maoO)@CO6AWcV%Z>=d6* zmx+yr+a(pZOHHE9PQ&v6;zh?Kp6}A3AZHRhPlV^$vFd(H`YV9BO;~IBerG+C@yr%! z8=l^_OzL`W!`Dr>o!PUTMlW+En_bQHu#uV0gt;XUKm-Zq)`edB|74Mefie%(1n=Ju z7r>j}iU5~*=ZDuN)NF(62GU^w7x_egjY+7iq6%;y9x6zDq|^sYSpIsDQc-{_Wu`>GWWS37|4}JQ2y_r+=>db}pKM=z!jcbh zc+8R^*cU?}%P|Ec^pi5HVs%?V?1p#C?Rw;+T|yNl%%gP}N|B03V2nA^9(?JtVAu!lXwiQ}in)7rVY&VEPj#eLsLPZTW=O-wn0?VK9^#-JF_w$kc2)pT_52 zpvH!sN-f0U+$L!l_;2TKuUPv;A03^!fjR{e9*tCD8Y15M(J$m?fGA-#F$$lL!`Xj^ O4^Pa0M)N{tS^OI&`3{c& diff --git a/sources/RoboforkApp/obj/Release/Resources/ZoomBox.baml b/sources/RoboforkApp/obj/Release/Resources/ZoomBox.baml deleted file mode 100644 index 026478cccee067ace79c8e5676e99fd713f01470..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4016 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 R#GlcS#L // This code was generated by a tool. @@ -83,7 +83,7 @@ namespace RoboforkApp { #line 56 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.TreeViewItem Vehicle; + internal System.Windows.Controls.TreeViewItem LoadDB; #line default #line hidden @@ -91,7 +91,7 @@ namespace RoboforkApp { #line 57 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.TreeViewItem FK_15; + internal System.Windows.Controls.TreeViewItem FORK_FK15; #line default #line hidden @@ -99,13 +99,37 @@ namespace RoboforkApp { #line 58 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.TreeViewItem NODE_FK15; + + #line default + #line hidden + + + #line 61 "..\..\RoboforkMenuView.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.TreeViewItem Vehicle; + + #line default + #line hidden + + + #line 62 "..\..\RoboforkMenuView.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.TreeViewItem FK_15; + + #line default + #line hidden + + + #line 63 "..\..\RoboforkMenuView.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TreeViewItem VehicleAdd; #line default #line hidden - #line 59 "..\..\RoboforkMenuView.xaml" + #line 64 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TreeViewItem UnderLine; @@ -113,7 +137,7 @@ namespace RoboforkApp { #line hidden - #line 63 "..\..\RoboforkMenuView.xaml" + #line 68 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TreeViewItem TaskpattermTree; @@ -121,7 +145,7 @@ namespace RoboforkApp { #line hidden - #line 67 "..\..\RoboforkMenuView.xaml" + #line 72 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TreeViewItem WorkAddTree; @@ -129,7 +153,7 @@ namespace RoboforkApp { #line hidden - #line 80 "..\..\RoboforkMenuView.xaml" + #line 85 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TreeViewItem ConnectTree; @@ -137,7 +161,7 @@ namespace RoboforkApp { #line hidden - #line 86 "..\..\RoboforkMenuView.xaml" + #line 91 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TreeViewItem ParameterTree; @@ -145,7 +169,7 @@ namespace RoboforkApp { #line hidden - #line 97 "..\..\RoboforkMenuView.xaml" + #line 102 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TreeViewItem LoggingTree; @@ -153,7 +177,7 @@ namespace RoboforkApp { #line hidden - #line 106 "..\..\RoboforkMenuView.xaml" + #line 111 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TreeViewItem AlertTree; @@ -161,7 +185,7 @@ namespace RoboforkApp { #line hidden - #line 112 "..\..\RoboforkMenuView.xaml" + #line 117 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TreeViewItem HelpTree; @@ -169,7 +193,7 @@ namespace RoboforkApp { #line hidden - #line 118 "..\..\RoboforkMenuView.xaml" + #line 123 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TreeViewItem NewProjectTree; @@ -177,7 +201,7 @@ namespace RoboforkApp { #line hidden - #line 136 "..\..\RoboforkMenuView.xaml" + #line 141 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TabControl MainTab; @@ -185,7 +209,7 @@ namespace RoboforkApp { #line hidden - #line 139 "..\..\RoboforkMenuView.xaml" + #line 144 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TabItem TabMap; @@ -193,7 +217,7 @@ namespace RoboforkApp { #line hidden - #line 152 "..\..\RoboforkMenuView.xaml" + #line 157 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid GridMap; @@ -201,7 +225,7 @@ namespace RoboforkApp { #line hidden - #line 164 "..\..\RoboforkMenuView.xaml" + #line 169 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal RoboforkApp.DesignerCanvas MyDesignerCanvas; @@ -209,7 +233,7 @@ namespace RoboforkApp { #line hidden - #line 171 "..\..\RoboforkMenuView.xaml" + #line 176 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid MCGrid; @@ -217,7 +241,7 @@ namespace RoboforkApp { #line hidden - #line 233 "..\..\RoboforkMenuView.xaml" + #line 238 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid grdRouteInfo; @@ -225,7 +249,7 @@ namespace RoboforkApp { #line hidden - #line 307 "..\..\RoboforkMenuView.xaml" + #line 312 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Label LabelSchedule; @@ -233,7 +257,7 @@ namespace RoboforkApp { #line hidden - #line 311 "..\..\RoboforkMenuView.xaml" + #line 316 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal RoboforkApp.ScheduleCanvas MyScheduleCanvas; @@ -241,7 +265,7 @@ namespace RoboforkApp { #line hidden - #line 319 "..\..\RoboforkMenuView.xaml" + #line 324 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid MCGridShedule; @@ -249,7 +273,7 @@ namespace RoboforkApp { #line hidden - #line 345 "..\..\RoboforkMenuView.xaml" + #line 350 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Label WorkVehicle; @@ -257,7 +281,7 @@ namespace RoboforkApp { #line hidden - #line 350 "..\..\RoboforkMenuView.xaml" + #line 355 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TabItem TabWork; @@ -265,7 +289,7 @@ namespace RoboforkApp { #line hidden - #line 357 "..\..\RoboforkMenuView.xaml" + #line 362 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TabItem TabSchedule; @@ -349,183 +373,204 @@ namespace RoboforkApp { #line hidden return; case 6: - this.Vehicle = ((System.Windows.Controls.TreeViewItem)(target)); + this.LoadDB = ((System.Windows.Controls.TreeViewItem)(target)); return; case 7: - this.FK_15 = ((System.Windows.Controls.TreeViewItem)(target)); + this.FORK_FK15 = ((System.Windows.Controls.TreeViewItem)(target)); #line 57 "..\..\RoboforkMenuView.xaml" - this.FK_15.Selected += new System.Windows.RoutedEventHandler(this.btnVehicleItem_Selected); + this.FORK_FK15.Selected += new System.Windows.RoutedEventHandler(this.btnMenu_Selected); #line default #line hidden return; case 8: - this.VehicleAdd = ((System.Windows.Controls.TreeViewItem)(target)); + this.NODE_FK15 = ((System.Windows.Controls.TreeViewItem)(target)); #line 58 "..\..\RoboforkMenuView.xaml" - this.VehicleAdd.Selected += new System.Windows.RoutedEventHandler(this.btnVehicleItem_Selected); + this.NODE_FK15.Selected += new System.Windows.RoutedEventHandler(this.btnMenu_Selected); #line default #line hidden return; case 9: - this.UnderLine = ((System.Windows.Controls.TreeViewItem)(target)); + this.Vehicle = ((System.Windows.Controls.TreeViewItem)(target)); return; case 10: - this.TaskpattermTree = ((System.Windows.Controls.TreeViewItem)(target)); + this.FK_15 = ((System.Windows.Controls.TreeViewItem)(target)); + + #line 62 "..\..\RoboforkMenuView.xaml" + this.FK_15.Selected += new System.Windows.RoutedEventHandler(this.btnVehicleItem_Selected); + + #line default + #line hidden + return; + case 11: + this.VehicleAdd = ((System.Windows.Controls.TreeViewItem)(target)); #line 63 "..\..\RoboforkMenuView.xaml" + this.VehicleAdd.Selected += new System.Windows.RoutedEventHandler(this.btnVehicleItem_Selected); + + #line default + #line hidden + return; + case 12: + this.UnderLine = ((System.Windows.Controls.TreeViewItem)(target)); + return; + case 13: + this.TaskpattermTree = ((System.Windows.Controls.TreeViewItem)(target)); + + #line 68 "..\..\RoboforkMenuView.xaml" this.TaskpattermTree.Selected += new System.Windows.RoutedEventHandler(this.btnMenu_Selected); #line default #line hidden - #line 63 "..\..\RoboforkMenuView.xaml" + #line 68 "..\..\RoboforkMenuView.xaml" this.TaskpattermTree.Unselected += new System.Windows.RoutedEventHandler(this.btnMenu_UnselectedSet); #line default #line hidden return; - case 11: + case 14: this.WorkAddTree = ((System.Windows.Controls.TreeViewItem)(target)); - #line 68 "..\..\RoboforkMenuView.xaml" + #line 73 "..\..\RoboforkMenuView.xaml" this.WorkAddTree.Selected += new System.Windows.RoutedEventHandler(this.GetWorkAddTree); #line default #line hidden - #line 69 "..\..\RoboforkMenuView.xaml" + #line 74 "..\..\RoboforkMenuView.xaml" this.WorkAddTree.Unselected += new System.Windows.RoutedEventHandler(this.SetWorkAddTree); #line default #line hidden return; - case 12: + case 15: this.ConnectTree = ((System.Windows.Controls.TreeViewItem)(target)); - #line 81 "..\..\RoboforkMenuView.xaml" + #line 86 "..\..\RoboforkMenuView.xaml" this.ConnectTree.Selected += new System.Windows.RoutedEventHandler(this.GetConnectTree); #line default #line hidden - #line 82 "..\..\RoboforkMenuView.xaml" + #line 87 "..\..\RoboforkMenuView.xaml" this.ConnectTree.Unselected += new System.Windows.RoutedEventHandler(this.SetConnectTree); #line default #line hidden return; - case 13: + case 16: this.ParameterTree = ((System.Windows.Controls.TreeViewItem)(target)); - #line 87 "..\..\RoboforkMenuView.xaml" + #line 92 "..\..\RoboforkMenuView.xaml" this.ParameterTree.Selected += new System.Windows.RoutedEventHandler(this.GetParameterTree); #line default #line hidden - #line 88 "..\..\RoboforkMenuView.xaml" + #line 93 "..\..\RoboforkMenuView.xaml" this.ParameterTree.Unselected += new System.Windows.RoutedEventHandler(this.SetParameterTree); #line default #line hidden return; - case 14: + case 17: this.LoggingTree = ((System.Windows.Controls.TreeViewItem)(target)); - #line 98 "..\..\RoboforkMenuView.xaml" + #line 103 "..\..\RoboforkMenuView.xaml" this.LoggingTree.Selected += new System.Windows.RoutedEventHandler(this.GetLoggingTree); #line default #line hidden - #line 99 "..\..\RoboforkMenuView.xaml" + #line 104 "..\..\RoboforkMenuView.xaml" this.LoggingTree.Unselected += new System.Windows.RoutedEventHandler(this.SetLoggingTree); #line default #line hidden return; - case 15: + case 18: this.AlertTree = ((System.Windows.Controls.TreeViewItem)(target)); - #line 107 "..\..\RoboforkMenuView.xaml" + #line 112 "..\..\RoboforkMenuView.xaml" this.AlertTree.Selected += new System.Windows.RoutedEventHandler(this.GetAlertTree); #line default #line hidden - #line 108 "..\..\RoboforkMenuView.xaml" + #line 113 "..\..\RoboforkMenuView.xaml" this.AlertTree.Unselected += new System.Windows.RoutedEventHandler(this.SetAlertTree); #line default #line hidden return; - case 16: + case 19: this.HelpTree = ((System.Windows.Controls.TreeViewItem)(target)); - #line 113 "..\..\RoboforkMenuView.xaml" + #line 118 "..\..\RoboforkMenuView.xaml" this.HelpTree.Selected += new System.Windows.RoutedEventHandler(this.GetHelpTree); #line default #line hidden - #line 114 "..\..\RoboforkMenuView.xaml" + #line 119 "..\..\RoboforkMenuView.xaml" this.HelpTree.Unselected += new System.Windows.RoutedEventHandler(this.SetHelpTree); #line default #line hidden return; - case 17: + case 20: this.NewProjectTree = ((System.Windows.Controls.TreeViewItem)(target)); - #line 119 "..\..\RoboforkMenuView.xaml" + #line 124 "..\..\RoboforkMenuView.xaml" this.NewProjectTree.Selected += new System.Windows.RoutedEventHandler(this.GetNewProjectTree); #line default #line hidden - #line 120 "..\..\RoboforkMenuView.xaml" + #line 125 "..\..\RoboforkMenuView.xaml" this.NewProjectTree.Unselected += new System.Windows.RoutedEventHandler(this.SetNewProjectTree); #line default #line hidden return; - case 18: + case 21: this.MainTab = ((System.Windows.Controls.TabControl)(target)); return; - case 19: + case 22: this.TabMap = ((System.Windows.Controls.TabItem)(target)); return; - case 20: + case 23: this.GridMap = ((System.Windows.Controls.Grid)(target)); return; - case 21: + case 24: this.MyDesignerCanvas = ((RoboforkApp.DesignerCanvas)(target)); return; - case 22: + case 25: this.MCGrid = ((System.Windows.Controls.Grid)(target)); return; - case 23: + case 26: this.grdRouteInfo = ((System.Windows.Controls.Grid)(target)); return; - case 24: + case 27: this.LabelSchedule = ((System.Windows.Controls.Label)(target)); return; - case 25: + case 28: this.MyScheduleCanvas = ((RoboforkApp.ScheduleCanvas)(target)); return; - case 26: + case 29: this.MCGridShedule = ((System.Windows.Controls.Grid)(target)); return; - case 27: + case 30: this.WorkVehicle = ((System.Windows.Controls.Label)(target)); return; - case 28: + case 31: this.TabWork = ((System.Windows.Controls.TabItem)(target)); return; - case 29: + case 32: this.TabSchedule = ((System.Windows.Controls.TabItem)(target)); return; } diff --git a/sources/RoboforkApp/obj/Release/RoboforkMenuView.g.i.cs b/sources/RoboforkApp/obj/Release/RoboforkMenuView.g.i.cs index bbad129..aee61d3 100644 --- a/sources/RoboforkApp/obj/Release/RoboforkMenuView.g.i.cs +++ b/sources/RoboforkApp/obj/Release/RoboforkMenuView.g.i.cs @@ -1,4 +1,4 @@ -#pragma checksum "..\..\RoboforkMenuView.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "599231713FE3089DBEC7F5AFDBB4E057" +#pragma checksum "..\..\RoboforkMenuView.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "16F6F520191E2176C653E3BFDE782900" //------------------------------------------------------------------------------ // // This code was generated by a tool. @@ -83,7 +83,7 @@ namespace RoboforkApp { #line 56 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.TreeViewItem Vehicle; + internal System.Windows.Controls.TreeViewItem LoadDB; #line default #line hidden @@ -91,7 +91,7 @@ namespace RoboforkApp { #line 57 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.TreeViewItem FK_15; + internal System.Windows.Controls.TreeViewItem FORK_FK15; #line default #line hidden @@ -99,13 +99,37 @@ namespace RoboforkApp { #line 58 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.TreeViewItem NODE_FK15; + + #line default + #line hidden + + + #line 61 "..\..\RoboforkMenuView.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.TreeViewItem Vehicle; + + #line default + #line hidden + + + #line 62 "..\..\RoboforkMenuView.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.TreeViewItem FK_15; + + #line default + #line hidden + + + #line 63 "..\..\RoboforkMenuView.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TreeViewItem VehicleAdd; #line default #line hidden - #line 59 "..\..\RoboforkMenuView.xaml" + #line 64 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TreeViewItem UnderLine; @@ -113,7 +137,7 @@ namespace RoboforkApp { #line hidden - #line 63 "..\..\RoboforkMenuView.xaml" + #line 68 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TreeViewItem TaskpattermTree; @@ -121,7 +145,7 @@ namespace RoboforkApp { #line hidden - #line 67 "..\..\RoboforkMenuView.xaml" + #line 72 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TreeViewItem WorkAddTree; @@ -129,7 +153,7 @@ namespace RoboforkApp { #line hidden - #line 80 "..\..\RoboforkMenuView.xaml" + #line 85 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TreeViewItem ConnectTree; @@ -137,7 +161,7 @@ namespace RoboforkApp { #line hidden - #line 86 "..\..\RoboforkMenuView.xaml" + #line 91 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TreeViewItem ParameterTree; @@ -145,7 +169,7 @@ namespace RoboforkApp { #line hidden - #line 97 "..\..\RoboforkMenuView.xaml" + #line 102 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TreeViewItem LoggingTree; @@ -153,7 +177,7 @@ namespace RoboforkApp { #line hidden - #line 106 "..\..\RoboforkMenuView.xaml" + #line 111 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TreeViewItem AlertTree; @@ -161,7 +185,7 @@ namespace RoboforkApp { #line hidden - #line 112 "..\..\RoboforkMenuView.xaml" + #line 117 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TreeViewItem HelpTree; @@ -169,7 +193,7 @@ namespace RoboforkApp { #line hidden - #line 118 "..\..\RoboforkMenuView.xaml" + #line 123 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TreeViewItem NewProjectTree; @@ -177,7 +201,7 @@ namespace RoboforkApp { #line hidden - #line 136 "..\..\RoboforkMenuView.xaml" + #line 141 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TabControl MainTab; @@ -185,7 +209,7 @@ namespace RoboforkApp { #line hidden - #line 139 "..\..\RoboforkMenuView.xaml" + #line 144 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TabItem TabMap; @@ -193,7 +217,7 @@ namespace RoboforkApp { #line hidden - #line 152 "..\..\RoboforkMenuView.xaml" + #line 157 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid GridMap; @@ -201,7 +225,7 @@ namespace RoboforkApp { #line hidden - #line 164 "..\..\RoboforkMenuView.xaml" + #line 169 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal RoboforkApp.DesignerCanvas MyDesignerCanvas; @@ -209,7 +233,7 @@ namespace RoboforkApp { #line hidden - #line 171 "..\..\RoboforkMenuView.xaml" + #line 176 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid MCGrid; @@ -217,7 +241,7 @@ namespace RoboforkApp { #line hidden - #line 233 "..\..\RoboforkMenuView.xaml" + #line 238 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid grdRouteInfo; @@ -225,7 +249,7 @@ namespace RoboforkApp { #line hidden - #line 307 "..\..\RoboforkMenuView.xaml" + #line 312 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Label LabelSchedule; @@ -233,7 +257,7 @@ namespace RoboforkApp { #line hidden - #line 311 "..\..\RoboforkMenuView.xaml" + #line 316 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal RoboforkApp.ScheduleCanvas MyScheduleCanvas; @@ -241,7 +265,7 @@ namespace RoboforkApp { #line hidden - #line 319 "..\..\RoboforkMenuView.xaml" + #line 324 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid MCGridShedule; @@ -249,7 +273,7 @@ namespace RoboforkApp { #line hidden - #line 345 "..\..\RoboforkMenuView.xaml" + #line 350 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Label WorkVehicle; @@ -257,7 +281,7 @@ namespace RoboforkApp { #line hidden - #line 350 "..\..\RoboforkMenuView.xaml" + #line 355 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TabItem TabWork; @@ -265,7 +289,7 @@ namespace RoboforkApp { #line hidden - #line 357 "..\..\RoboforkMenuView.xaml" + #line 362 "..\..\RoboforkMenuView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TabItem TabSchedule; @@ -349,183 +373,204 @@ namespace RoboforkApp { #line hidden return; case 6: - this.Vehicle = ((System.Windows.Controls.TreeViewItem)(target)); + this.LoadDB = ((System.Windows.Controls.TreeViewItem)(target)); return; case 7: - this.FK_15 = ((System.Windows.Controls.TreeViewItem)(target)); + this.FORK_FK15 = ((System.Windows.Controls.TreeViewItem)(target)); #line 57 "..\..\RoboforkMenuView.xaml" - this.FK_15.Selected += new System.Windows.RoutedEventHandler(this.btnVehicleItem_Selected); + this.FORK_FK15.Selected += new System.Windows.RoutedEventHandler(this.btnMenu_Selected); #line default #line hidden return; case 8: - this.VehicleAdd = ((System.Windows.Controls.TreeViewItem)(target)); + this.NODE_FK15 = ((System.Windows.Controls.TreeViewItem)(target)); #line 58 "..\..\RoboforkMenuView.xaml" - this.VehicleAdd.Selected += new System.Windows.RoutedEventHandler(this.btnVehicleItem_Selected); + this.NODE_FK15.Selected += new System.Windows.RoutedEventHandler(this.btnMenu_Selected); #line default #line hidden return; case 9: - this.UnderLine = ((System.Windows.Controls.TreeViewItem)(target)); + this.Vehicle = ((System.Windows.Controls.TreeViewItem)(target)); return; case 10: - this.TaskpattermTree = ((System.Windows.Controls.TreeViewItem)(target)); + this.FK_15 = ((System.Windows.Controls.TreeViewItem)(target)); + + #line 62 "..\..\RoboforkMenuView.xaml" + this.FK_15.Selected += new System.Windows.RoutedEventHandler(this.btnVehicleItem_Selected); + + #line default + #line hidden + return; + case 11: + this.VehicleAdd = ((System.Windows.Controls.TreeViewItem)(target)); #line 63 "..\..\RoboforkMenuView.xaml" + this.VehicleAdd.Selected += new System.Windows.RoutedEventHandler(this.btnVehicleItem_Selected); + + #line default + #line hidden + return; + case 12: + this.UnderLine = ((System.Windows.Controls.TreeViewItem)(target)); + return; + case 13: + this.TaskpattermTree = ((System.Windows.Controls.TreeViewItem)(target)); + + #line 68 "..\..\RoboforkMenuView.xaml" this.TaskpattermTree.Selected += new System.Windows.RoutedEventHandler(this.btnMenu_Selected); #line default #line hidden - #line 63 "..\..\RoboforkMenuView.xaml" + #line 68 "..\..\RoboforkMenuView.xaml" this.TaskpattermTree.Unselected += new System.Windows.RoutedEventHandler(this.btnMenu_UnselectedSet); #line default #line hidden return; - case 11: + case 14: this.WorkAddTree = ((System.Windows.Controls.TreeViewItem)(target)); - #line 68 "..\..\RoboforkMenuView.xaml" + #line 73 "..\..\RoboforkMenuView.xaml" this.WorkAddTree.Selected += new System.Windows.RoutedEventHandler(this.GetWorkAddTree); #line default #line hidden - #line 69 "..\..\RoboforkMenuView.xaml" + #line 74 "..\..\RoboforkMenuView.xaml" this.WorkAddTree.Unselected += new System.Windows.RoutedEventHandler(this.SetWorkAddTree); #line default #line hidden return; - case 12: + case 15: this.ConnectTree = ((System.Windows.Controls.TreeViewItem)(target)); - #line 81 "..\..\RoboforkMenuView.xaml" + #line 86 "..\..\RoboforkMenuView.xaml" this.ConnectTree.Selected += new System.Windows.RoutedEventHandler(this.GetConnectTree); #line default #line hidden - #line 82 "..\..\RoboforkMenuView.xaml" + #line 87 "..\..\RoboforkMenuView.xaml" this.ConnectTree.Unselected += new System.Windows.RoutedEventHandler(this.SetConnectTree); #line default #line hidden return; - case 13: + case 16: this.ParameterTree = ((System.Windows.Controls.TreeViewItem)(target)); - #line 87 "..\..\RoboforkMenuView.xaml" + #line 92 "..\..\RoboforkMenuView.xaml" this.ParameterTree.Selected += new System.Windows.RoutedEventHandler(this.GetParameterTree); #line default #line hidden - #line 88 "..\..\RoboforkMenuView.xaml" + #line 93 "..\..\RoboforkMenuView.xaml" this.ParameterTree.Unselected += new System.Windows.RoutedEventHandler(this.SetParameterTree); #line default #line hidden return; - case 14: + case 17: this.LoggingTree = ((System.Windows.Controls.TreeViewItem)(target)); - #line 98 "..\..\RoboforkMenuView.xaml" + #line 103 "..\..\RoboforkMenuView.xaml" this.LoggingTree.Selected += new System.Windows.RoutedEventHandler(this.GetLoggingTree); #line default #line hidden - #line 99 "..\..\RoboforkMenuView.xaml" + #line 104 "..\..\RoboforkMenuView.xaml" this.LoggingTree.Unselected += new System.Windows.RoutedEventHandler(this.SetLoggingTree); #line default #line hidden return; - case 15: + case 18: this.AlertTree = ((System.Windows.Controls.TreeViewItem)(target)); - #line 107 "..\..\RoboforkMenuView.xaml" + #line 112 "..\..\RoboforkMenuView.xaml" this.AlertTree.Selected += new System.Windows.RoutedEventHandler(this.GetAlertTree); #line default #line hidden - #line 108 "..\..\RoboforkMenuView.xaml" + #line 113 "..\..\RoboforkMenuView.xaml" this.AlertTree.Unselected += new System.Windows.RoutedEventHandler(this.SetAlertTree); #line default #line hidden return; - case 16: + case 19: this.HelpTree = ((System.Windows.Controls.TreeViewItem)(target)); - #line 113 "..\..\RoboforkMenuView.xaml" + #line 118 "..\..\RoboforkMenuView.xaml" this.HelpTree.Selected += new System.Windows.RoutedEventHandler(this.GetHelpTree); #line default #line hidden - #line 114 "..\..\RoboforkMenuView.xaml" + #line 119 "..\..\RoboforkMenuView.xaml" this.HelpTree.Unselected += new System.Windows.RoutedEventHandler(this.SetHelpTree); #line default #line hidden return; - case 17: + case 20: this.NewProjectTree = ((System.Windows.Controls.TreeViewItem)(target)); - #line 119 "..\..\RoboforkMenuView.xaml" + #line 124 "..\..\RoboforkMenuView.xaml" this.NewProjectTree.Selected += new System.Windows.RoutedEventHandler(this.GetNewProjectTree); #line default #line hidden - #line 120 "..\..\RoboforkMenuView.xaml" + #line 125 "..\..\RoboforkMenuView.xaml" this.NewProjectTree.Unselected += new System.Windows.RoutedEventHandler(this.SetNewProjectTree); #line default #line hidden return; - case 18: + case 21: this.MainTab = ((System.Windows.Controls.TabControl)(target)); return; - case 19: + case 22: this.TabMap = ((System.Windows.Controls.TabItem)(target)); return; - case 20: + case 23: this.GridMap = ((System.Windows.Controls.Grid)(target)); return; - case 21: + case 24: this.MyDesignerCanvas = ((RoboforkApp.DesignerCanvas)(target)); return; - case 22: + case 25: this.MCGrid = ((System.Windows.Controls.Grid)(target)); return; - case 23: + case 26: this.grdRouteInfo = ((System.Windows.Controls.Grid)(target)); return; - case 24: + case 27: this.LabelSchedule = ((System.Windows.Controls.Label)(target)); return; - case 25: + case 28: this.MyScheduleCanvas = ((RoboforkApp.ScheduleCanvas)(target)); return; - case 26: + case 29: this.MCGridShedule = ((System.Windows.Controls.Grid)(target)); return; - case 27: + case 30: this.WorkVehicle = ((System.Windows.Controls.Label)(target)); return; - case 28: + case 31: this.TabWork = ((System.Windows.Controls.TabItem)(target)); return; - case 29: + case 32: this.TabSchedule = ((System.Windows.Controls.TabItem)(target)); return; } diff --git a/sources/RoboforkApp/obj/Release/Stencils/BasicShapes.baml b/sources/RoboforkApp/obj/Release/Stencils/BasicShapes.baml deleted file mode 100644 index e26427d49767e21e7d959c697bb6f74449075935..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2308 zcmcgu&2HO95FU~%Q9rh1*G`k5PDsG2fugEJS^owMRFteVZ4x_@5W7GRrKpv)Fh#0d zsbKar7<=%JbsSnVr&F<2)!vqQHwniw3nw{bIeY3MOgcbncG4w%)7W;j~ zR^MKI1@PGgYdZj~-q0C4?on$t%d5|@ONnD|mkJvHj=Lp-|_S~{Q`sA)@xu4m_6w{eu;;o)@MVXG+0Bhd}aIoiMifzyEm{8Ycpkt=~ zO1g4g>2hf}E;p(*V^pqHaJjnH6XD4|u}97^)eVYof^uJiel*{<;4Uj1e&`-JR3P1J^iJ76DS{5O1?`V^_H) z@KuIIMud5GU2;flB_ndL%%O97pk$=T@@r)Q0rDZ%b}YwL7Gr!7-yM%B_Ebi<91+}g z4f_zQt0F8#yboNAZFNO@EjQhoWAy_BnaG1ZJW_APVEGZTvEc?=xL{P4vM_KQYv`P)w-d0!nueJD zi7~^p?_t{{7F9k>a7ea;#|E2(hwQ-mf% z6@2t=QY?!gxn3@JyOnCC`erp35y)+qOsQjsp;B;m?A?${#@SisHP$IfnOmie^K{q{ z;rZt{e7)Q4l$$#*!fv?efGTUFFsSRb&O3vxZl!z~`BA*$aCL6O{Isvh&mal3r z&(fd!lITO>Q(tQN(0J~%u>89(l)gL5Eha(Uu`Dv9_@}dYJOu>+B&R|8kpX%EAf9^e b|0xRmF9t#h6mkggR_t}4;(vfHASC_`=r?e^ diff --git a/sources/RoboforkApp/obj/Release/Stencils/FlowChartSymbols.baml b/sources/RoboforkApp/obj/Release/Stencils/FlowChartSymbols.baml deleted file mode 100644 index 072744b3d76ccbbd8f2f14f217f0a47f65483940..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 7720 zcmds6Yit}>6+SaNJNxwRdUw5kd#B07&BO5{wqqxi#X5EjNt4FdtE4~?jMvxk(%qfy z>}(VFM`aKa3J3|Q1<{8938bnL|0=;>OD&bE2Bn4~m!C)=Dt?8EUkH0S=g#czb+myX zRcK+XGrr$>+ zmAqM+n;0FZzY%SrTCl4Yn=7%ZZ5f3TZMnKu$mgD9TUqm2R+=kS3x)m@y}5#Qx?~ht zrEKKb`4zKKWk@Ik3_K&j)5{jCu##=q*wB)NMz^r_X46xT+Vtea+Q#JU^jTwl^6V6w zoE}(_;i((>(z1yuPov5k9#|FqT`;XrrQQ_o_-raJ*%J%Hep@;(H!hINzK*{w25N4@aj zKKPd{v&<}eD;-t|d#@XXD$_zT_)wB#l}b9|BU2v@%lfsF*5!dtSM-%d%ea}{tQOa_ zumb)?mdjHHYAG+o>p;{|QOC?xi40Ptih2?1TFixY-cC;xl1(V+C1Mc0RI-^>G76+%++^Bd zC-gqR6D;C!h^(^bsu*70DDc_`63}y)CFn14IJw%zO?RsNHmb36&L{TA}bhMT4E5Q zyd+2?LzqI$D&|WD_K4P#hGY{8dLa#bi}^~K>gjq6I^D9M(QyO% zG?1Vb)ggp~ST-!a;%L3cpi97lW?~qkPM=)E5FPEo$D#KDo?wwY4l$fF%Q&tpY=c>> zlw;b^3Fv!}DcJZ=fnl;VBnt5AGjzFw2C0DnKYi6O6 zPWee6dw9dZWtvaa{0l7I7l6zAkXS7l|KiF^eio_k;iyIKjE|okyNyfSSXo&1Jy@>{9!Q>-ZjbyYwJ6+BA=9)}dHA*i zaO`L|z;J*%h@Rnq1UGnTh9eoiPO-xbRyZ8+z+D%~h!mKVn=&uF=pqGWD*Q>1`5@zQ zG*y)O;SCp2odNj7MSes<_=3``GX!tBD2TE!^m&`I4!Gl@Fv=ouUyw!N8P(B@pezP& zyNKHBgfl)z7DE(=S6oE01bBI>%s?Db5(+LNSr>fdq9mdee1`X#(=XldZ5O3b)&qYP zWW8`P=(N{^vOf5^i>S_i=npxvK12iX4HuDY5Pt8X0YpQP2|Jo3OT$lHG=xZlAZ}{) zF?tNX<01`ZN8l4db`-8f9L*yr)8Q8`qB@U3BI?L=M8oici%9l3{K`ech>pWZtl8cP z*mluzl%0e>3$jzNi5o0=b`oVHaL+|Day&>1k{3xu@*(+=0!Trm5Kj7T3Vk&&!{;(M39~j^_ZR8)PpK0OZh^fF6ZvttLZ)!q>1PDg*M->>3$XD$wrf0 z^{&G`GhTP3hZ?xNAG=ifT;9&IihUiA7;6Qlsw#}uL+p2yTCJLno}@H;YL@2Kq3(LK zrk+yaFYNJ5#KXXyZD->adv|NR>O+M)aJ)@1s?p?3ru zmn^UB`$FJ(xdx*vbrT5`#jm*bGU)jEw{gSLLLD!Gn(B(H?%uDoQ1^=JD(JzWbMMkZ z)hDX@G3@#^ObgwBs2c=57Q{;#x^&R!)}e(#NHhq$28~;s76u)nK?L;9AcUOz8;x#J zT3AFyix}vsAjImIIGTI2)55G%G>e1Y6~sHI#_i6-8cT>)Nyk0sQs-e7U7|$_^mq`$ T&aH*UuX|d!*3C`AiX#6L^)*A- diff --git a/sources/RoboforkApp/obj/Release/Stencils/RegelungstechnikSymbole.baml b/sources/RoboforkApp/obj/Release/Stencils/RegelungstechnikSymbole.baml deleted file mode 100644 index 2b0e20279292b1da536c12fad01692137a78e170..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1526 zcmb`F%Wl&^6o!w-rs)mJrJ|}@Xchqp5$q(6(~A^|UZ@C#DoUcZLM*V|Nji!>V?4H! z_Dz6o9|3p)*nz}5umSdLlVMVck_Cuj)uXv-=KSBB|9BDro8giujd9Wn_iE-C=PL%;y4OzFPpB$jz`=reAr-ZOv^O( zytzBGt{2{;wvTyWyLhF>P9-OX)&TR*6xgeVm}45*kpyjqGN>czztP3BqRqV1G?%QB zy>FI^*tF(r2)1_#-De%XW^;TVlDjI@hu^!-!gJBBX|P>CSI{xbf|**lAi zw&hx-{IXfZxuxYBv$D8wZOCrD!IyUaH_gf_cIA(tx|U74y843%F61rVq(y`prp|D&Rv1ZsoO1%?0p z_XD`~9Rb`PJ4sUxs_dBwfD4wDEm|LX6ZeIR1dNO*pv#lgXQ32c^fFfwOv;iRy?@uj zp|tH~FEjc{ATxK|&y0Q)s3;fuU7>#MLuUMq&^C$Zl|^Ret+=A=M#Z;Vm>Xe~*8|%6 z($~~}4@Smci*HDge341L5=#EKuW5f`k4Z}JWege0I0=@tM diff --git a/sources/RoboforkApp/obj/Release/Stencils/SymbolStencils.baml b/sources/RoboforkApp/obj/Release/Stencils/SymbolStencils.baml deleted file mode 100644 index 9c00e9cbb0b724bbe8b43e5e3cad2ea0357ccbc1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1384 zcmb`G&2HL25XZ;hMrw)LDxpbfh~SV`ibQP)m;@xG=A%*RM-%}{a_FIJv%reA*V
?#0!gC-oop?ZH+e?RV)2BEqj{Sn}> zVY3e7{X^f+WiK!ngn6}sk)PhV>~TP4z;VsPf#ithvgd(KiSq@ITC9(~nio*IwVQG% zfA1j|3m-YS+F*As6La4H>F*j`opUU(Cy`WvPPu{xD*7yR>7k*E1-nx`u*#@iESGT6 zN;hI~c1gT88;Bz$@ME~Vj6-ui-($uf#cxB0v*t)h>>5|dRb{;`{Dalo`}@dpta71J zEaCh?Wjm#s3+r>`Hd>5Pn+>yT0MDBv*JiXSvF8vfG8Eypwg4lubQTCde}w6aEZg2U>#{V%rytZ>kQ4ke7QgkMiTlS4;H`)OynA}1OFiOh?IZx6SXR!meoqn~ z!ua27SXt4)P&?0lh59L>v=;89#^JhQm~|I*u`s8KgyDPLKiB#_z?*THoCA7@%e|$E z!qP-Bn%EwPo3pHtRGpq4uxRM@I9!`SoOs=6`^8$Rb4%ONz+!*_qWxv;T|{WKeR>>j k%mhqlaez3EX12!Rs~O`34#kK^Ba1S88r+V^s;