Commit a9f21e7255a21c19dbabeee4abb7c4ee281a3a32
1 parent
de88262974
Exists in
master
Update Task 2046
Showing 22 changed files with 282 additions and 155 deletions Side-by-side Diff
- sources/RoboforkApp.AWS/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache
- sources/RoboforkApp.AWS/obj/Release/RoboforkApp.AWS.csproj.FileListAbsolute.txt
- sources/RoboforkApp.AWS/obj/Release/RoboforkApp.AWS.csprojResolveAssemblyReference.cache
- sources/RoboforkApp/Controls/DesignerCanvas.cs
- sources/RoboforkApp/RoboforkMenuView.xaml.cs
- sources/RoboforkApp/bin/Release/RboforkApp.vshost.exe
- sources/RoboforkApp/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache
- sources/RoboforkApp/obj/Release/RboforkApp_MarkupCompile.cache
- sources/RoboforkApp/obj/Release/RboforkApp_MarkupCompile.i.cache
- sources/RoboforkApp/obj/Release/RboforkApp_MarkupCompile.lref
- sources/RoboforkApp/obj/Release/Resources/DesignerItem.baml
- sources/RoboforkApp/obj/Release/Resources/ResizeChrome.baml
- sources/RoboforkApp/obj/Release/Resources/Toolbox.baml
- sources/RoboforkApp/obj/Release/Resources/ZoomBox.baml
- sources/RoboforkApp/obj/Release/RoboforkApp.csproj.FileListAbsolute.txt
- sources/RoboforkApp/obj/Release/RoboforkMenuView.baml
- sources/RoboforkApp/obj/Release/RoboforkMenuView.g.cs
- sources/RoboforkApp/obj/Release/RoboforkMenuView.g.i.cs
- sources/RoboforkApp/obj/Release/Stencils/BasicShapes.baml
- sources/RoboforkApp/obj/Release/Stencils/FlowChartSymbols.baml
- sources/RoboforkApp/obj/Release/Stencils/RegelungstechnikSymbole.baml
- sources/RoboforkApp/obj/Release/Stencils/SymbolStencils.baml
sources/RoboforkApp.AWS/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache
No preview for this file type
sources/RoboforkApp.AWS/obj/Release/RoboforkApp.AWS.csproj.FileListAbsolute.txt
1 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp.AWS\obj\Release\RoboforkApp.AWS.csprojResolveAssemblyReference.cache |
sources/RoboforkApp.AWS/obj/Release/RoboforkApp.AWS.csprojResolveAssemblyReference.cache
No preview for this file type
sources/RoboforkApp/Controls/DesignerCanvas.cs
... | ... | @@ -1091,7 +1091,7 @@ |
1091 | 1091 | this.Children.Add(pYellowNode); |
1092 | 1092 | |
1093 | 1093 | //this.Children.Add(pNewLine); |
1094 | - scheduleCanvas.Children.Add(pScheduleLine); | |
1094 | + //scheduleCanvas.Children.Add(pScheduleLine); | |
1095 | 1095 | } |
1096 | 1096 | |
1097 | 1097 | /// <summary> |
... | ... | @@ -2770,7 +2770,7 @@ |
2770 | 2770 | Point node_Schedule = new Point(); |
2771 | 2771 | double x_1 = 50; |
2772 | 2772 | double y_1 = 80; |
2773 | - double Totaldistance = 1270; | |
2773 | + double Totaldistance = 1220; | |
2774 | 2774 | |
2775 | 2775 | |
2776 | 2776 | if (ucScheduleNode_Lst.Count > 0) |
... | ... | @@ -2853,7 +2853,7 @@ |
2853 | 2853 | AddNode(node_Schedule, gGrpScheduleNode); |
2854 | 2854 | } |
2855 | 2855 | |
2856 | - addDistance = 0; | |
2856 | + addDistance = x_1; | |
2857 | 2857 | for (int i = 0; i < distance.Count; i++) |
2858 | 2858 | { |
2859 | 2859 | |
2860 | 2860 | |
2861 | 2861 | |
2862 | 2862 | |
... | ... | @@ -3146,11 +3146,41 @@ |
3146 | 3146 | |
3147 | 3147 | |
3148 | 3148 | } |
3149 | - //BindBlueNode2ucNode(); | |
3150 | 3149 | |
3151 | - | |
3152 | 3150 | SetScheduleRoute(); |
3151 | + ReDrawAllNode2(); | |
3153 | 3152 | |
3153 | + } | |
3154 | + public void ReDrawAllNode2() | |
3155 | + { | |
3156 | + LineGeometry lineGeometry = new LineGeometry(); | |
3157 | + EllipseGeometry ellip; | |
3158 | + //delete all line | |
3159 | + gGrpScheduleLine.Children.Clear(); | |
3160 | + scheduleCanvas.Children.Remove(pScheduleLine); | |
3161 | + | |
3162 | + //redraw line | |
3163 | + for (int j = 0; j < gGrpScheduleNode.Children.Count - 1; j++) | |
3164 | + { | |
3165 | + ellip = (EllipseGeometry)gGrpScheduleNode.Children[j]; | |
3166 | + Point node1 = ellip.Center; | |
3167 | + ellip = (EllipseGeometry)gGrpScheduleNode.Children[j + 1]; | |
3168 | + Point node2 = ellip.Center; | |
3169 | + DrawLine(node1, node2, gGrpScheduleLine); | |
3170 | + } | |
3171 | + | |
3172 | + scheduleCanvas.Children.Add(pScheduleLine); | |
3173 | + | |
3174 | + | |
3175 | + //redraw ucNode | |
3176 | + for (int k = 0; k < ucScheduleNode_Lst.Count; k++) | |
3177 | + { | |
3178 | + scheduleCanvas.Children.Remove(ucScheduleNode_Lst[k]); | |
3179 | + scheduleCanvas.Children.Add(ucScheduleNode_Lst[k]); | |
3180 | + } | |
3181 | + | |
3182 | + ////backup DB | |
3183 | + //CreateVehicleNode(); | |
3154 | 3184 | } |
3155 | 3185 | #endregion |
3156 | 3186 |
sources/RoboforkApp/RoboforkMenuView.xaml.cs
sources/RoboforkApp/bin/Release/RboforkApp.vshost.exe
No preview for this file type
sources/RoboforkApp/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache
No preview for this file type
sources/RoboforkApp/obj/Release/RboforkApp_MarkupCompile.cache
... | ... | @@ -4,17 +4,17 @@ |
4 | 4 | winexe |
5 | 5 | C# |
6 | 6 | .cs |
7 | -E:\02_Project\Du an Anh Dai\Robofork\sources\RoboforkApp\obj\Release\ | |
7 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\ | |
8 | 8 | RoboforkApp |
9 | 9 | none |
10 | 10 | false |
11 | 11 | TRACE |
12 | -E:\02_Project\Du an Anh Dai\Robofork\sources\RoboforkApp\App.xaml | |
12 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\App.xaml | |
13 | 13 | 24-15970495 |
14 | 14 | |
15 | -271984491549 | |
16 | -13145648957 | |
15 | +31-781608262 | |
16 | +14-473200920 | |
17 | 17 | 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; |
18 | 18 | |
19 | -False | |
19 | +True |
sources/RoboforkApp/obj/Release/RboforkApp_MarkupCompile.i.cache
... | ... | @@ -4,16 +4,16 @@ |
4 | 4 | winexe |
5 | 5 | C# |
6 | 6 | .cs |
7 | -E:\02_Project\Du an Anh Dai\Robofork\sources\RoboforkApp\obj\Release\ | |
7 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\ | |
8 | 8 | RoboforkApp |
9 | 9 | none |
10 | 10 | false |
11 | 11 | TRACE |
12 | -E:\02_Project\Du an Anh Dai\Robofork\sources\RoboforkApp\App.xaml | |
12 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\App.xaml | |
13 | 13 | 24-15970495 |
14 | 14 | |
15 | -311815591653 | |
16 | -13145648957 | |
15 | +35-950508158 | |
16 | +14-473200920 | |
17 | 17 | 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; |
18 | 18 | |
19 | 19 | False |
sources/RoboforkApp/obj/Release/RboforkApp_MarkupCompile.lref
1 | -๏ปฟ | |
1 | +๏ปฟE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\GeneratedInternalTypeHelper.g.cs | |
2 | 2 | |
3 | -FE:\02_Project\Du an Anh Dai\Robofork\sources\RoboforkApp\Resources\DesignerItem.xaml;; | |
4 | -FE:\02_Project\Du an Anh Dai\Robofork\sources\RoboforkApp\Resources\ResizeChrome.xaml;; | |
5 | -FE:\02_Project\Du an Anh Dai\Robofork\sources\RoboforkApp\Resources\Toolbox.xaml;; | |
6 | -FE:\02_Project\Du an Anh Dai\Robofork\sources\RoboforkApp\Resources\ZoomBox.xaml;; | |
7 | -FE:\02_Project\Du an Anh Dai\Robofork\sources\RoboforkApp\RoboforkMenuView.xaml;; | |
8 | -FE:\02_Project\Du an Anh Dai\Robofork\sources\RoboforkApp\Stencils\BasicShapes.xaml;; | |
9 | -FE:\02_Project\Du an Anh Dai\Robofork\sources\RoboforkApp\Stencils\FlowChartSymbols.xaml;; | |
10 | -FE:\02_Project\Du an Anh Dai\Robofork\sources\RoboforkApp\Stencils\RegelungstechnikSymbole.xaml;; | |
11 | -FE:\02_Project\Du an Anh Dai\Robofork\sources\RoboforkApp\Stencils\SymbolStencils.xaml;; | |
3 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Resources\DesignerItem.xaml;; | |
4 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Resources\ResizeChrome.xaml;; | |
5 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Resources\Toolbox.xaml;; | |
6 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Resources\ZoomBox.xaml;; | |
7 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\RoboforkMenuView.xaml;; | |
8 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Stencils\BasicShapes.xaml;; | |
9 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Stencils\FlowChartSymbols.xaml;; | |
10 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Stencils\RegelungstechnikSymbole.xaml;; | |
11 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Stencils\SymbolStencils.xaml;; |
sources/RoboforkApp/obj/Release/Resources/DesignerItem.baml
No preview for this file type
sources/RoboforkApp/obj/Release/Resources/ResizeChrome.baml
No preview for this file type
sources/RoboforkApp/obj/Release/Resources/Toolbox.baml
No preview for this file type
sources/RoboforkApp/obj/Release/Resources/ZoomBox.baml
No preview for this file type
sources/RoboforkApp/obj/Release/RoboforkApp.csproj.FileListAbsolute.txt
... | ... | @@ -371,4 +371,10 @@ |
371 | 371 | C:\Users\nam\Desktop\robofork_newSPEC\20170319\sources\RoboforkApp\obj\Release\RboforkApp.exe |
372 | 372 | C:\Users\nam\Desktop\robofork_newSPEC\20170319\sources\RoboforkApp\obj\Release\RboforkApp.pdb |
373 | 373 | E:\02_Project\Du an Anh Dai\Robofork\sources\RoboforkApp\obj\Release\RoboforkApp.csprojResolveAssemblyReference.cache |
374 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\RoboforkApp.csprojResolveAssemblyReference.cache | |
375 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\UserControls\simulationRobo.baml | |
376 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\View\EditNodeView.baml | |
377 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\UserControls\simulationRobo.g.cs | |
378 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\View\EditNodeView.g.cs | |
379 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\RoboforkMenuView.g.cs |
sources/RoboforkApp/obj/Release/RoboforkMenuView.baml
No preview for this file type
sources/RoboforkApp/obj/Release/RoboforkMenuView.g.cs
1 | -๏ปฟ#pragma checksum "..\..\RoboforkMenuView.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "599231713FE3089DBEC7F5AFDBB4E057" | |
1 | +๏ปฟ#pragma checksum "..\..\RoboforkMenuView.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "16F6F520191E2176C653E3BFDE782900" | |
2 | 2 | //------------------------------------------------------------------------------ |
3 | 3 | // <auto-generated> |
4 | 4 | // This code was generated by a tool. |
... | ... | @@ -83,7 +83,7 @@ |
83 | 83 | |
84 | 84 | #line 56 "..\..\RoboforkMenuView.xaml" |
85 | 85 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
86 | - internal System.Windows.Controls.TreeViewItem Vehicle; | |
86 | + internal System.Windows.Controls.TreeViewItem LoadDB; | |
87 | 87 | |
88 | 88 | #line default |
89 | 89 | #line hidden |
... | ... | @@ -91,7 +91,7 @@ |
91 | 91 | |
92 | 92 | #line 57 "..\..\RoboforkMenuView.xaml" |
93 | 93 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
94 | - internal System.Windows.Controls.TreeViewItem FK_15; | |
94 | + internal System.Windows.Controls.TreeViewItem FORK_FK15; | |
95 | 95 | |
96 | 96 | #line default |
97 | 97 | #line hidden |
98 | 98 | |
... | ... | @@ -99,13 +99,37 @@ |
99 | 99 | |
100 | 100 | #line 58 "..\..\RoboforkMenuView.xaml" |
101 | 101 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
102 | + internal System.Windows.Controls.TreeViewItem NODE_FK15; | |
103 | + | |
104 | + #line default | |
105 | + #line hidden | |
106 | + | |
107 | + | |
108 | + #line 61 "..\..\RoboforkMenuView.xaml" | |
109 | + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] | |
110 | + internal System.Windows.Controls.TreeViewItem Vehicle; | |
111 | + | |
112 | + #line default | |
113 | + #line hidden | |
114 | + | |
115 | + | |
116 | + #line 62 "..\..\RoboforkMenuView.xaml" | |
117 | + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] | |
118 | + internal System.Windows.Controls.TreeViewItem FK_15; | |
119 | + | |
120 | + #line default | |
121 | + #line hidden | |
122 | + | |
123 | + | |
124 | + #line 63 "..\..\RoboforkMenuView.xaml" | |
125 | + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] | |
102 | 126 | internal System.Windows.Controls.TreeViewItem VehicleAdd; |
103 | 127 | |
104 | 128 | #line default |
105 | 129 | #line hidden |
106 | 130 | |
107 | 131 | |
108 | - #line 59 "..\..\RoboforkMenuView.xaml" | |
132 | + #line 64 "..\..\RoboforkMenuView.xaml" | |
109 | 133 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
110 | 134 | internal System.Windows.Controls.TreeViewItem UnderLine; |
111 | 135 | |
... | ... | @@ -113,7 +137,7 @@ |
113 | 137 | #line hidden |
114 | 138 | |
115 | 139 | |
116 | - #line 63 "..\..\RoboforkMenuView.xaml" | |
140 | + #line 68 "..\..\RoboforkMenuView.xaml" | |
117 | 141 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
118 | 142 | internal System.Windows.Controls.TreeViewItem TaskpattermTree; |
119 | 143 | |
... | ... | @@ -121,7 +145,7 @@ |
121 | 145 | #line hidden |
122 | 146 | |
123 | 147 | |
124 | - #line 67 "..\..\RoboforkMenuView.xaml" | |
148 | + #line 72 "..\..\RoboforkMenuView.xaml" | |
125 | 149 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
126 | 150 | internal System.Windows.Controls.TreeViewItem WorkAddTree; |
127 | 151 | |
... | ... | @@ -129,7 +153,7 @@ |
129 | 153 | #line hidden |
130 | 154 | |
131 | 155 | |
132 | - #line 80 "..\..\RoboforkMenuView.xaml" | |
156 | + #line 85 "..\..\RoboforkMenuView.xaml" | |
133 | 157 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
134 | 158 | internal System.Windows.Controls.TreeViewItem ConnectTree; |
135 | 159 | |
... | ... | @@ -137,7 +161,7 @@ |
137 | 161 | #line hidden |
138 | 162 | |
139 | 163 | |
140 | - #line 86 "..\..\RoboforkMenuView.xaml" | |
164 | + #line 91 "..\..\RoboforkMenuView.xaml" | |
141 | 165 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
142 | 166 | internal System.Windows.Controls.TreeViewItem ParameterTree; |
143 | 167 | |
... | ... | @@ -145,7 +169,7 @@ |
145 | 169 | #line hidden |
146 | 170 | |
147 | 171 | |
148 | - #line 97 "..\..\RoboforkMenuView.xaml" | |
172 | + #line 102 "..\..\RoboforkMenuView.xaml" | |
149 | 173 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
150 | 174 | internal System.Windows.Controls.TreeViewItem LoggingTree; |
151 | 175 | |
... | ... | @@ -153,7 +177,7 @@ |
153 | 177 | #line hidden |
154 | 178 | |
155 | 179 | |
156 | - #line 106 "..\..\RoboforkMenuView.xaml" | |
180 | + #line 111 "..\..\RoboforkMenuView.xaml" | |
157 | 181 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
158 | 182 | internal System.Windows.Controls.TreeViewItem AlertTree; |
159 | 183 | |
... | ... | @@ -161,7 +185,7 @@ |
161 | 185 | #line hidden |
162 | 186 | |
163 | 187 | |
164 | - #line 112 "..\..\RoboforkMenuView.xaml" | |
188 | + #line 117 "..\..\RoboforkMenuView.xaml" | |
165 | 189 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
166 | 190 | internal System.Windows.Controls.TreeViewItem HelpTree; |
167 | 191 | |
... | ... | @@ -169,7 +193,7 @@ |
169 | 193 | #line hidden |
170 | 194 | |
171 | 195 | |
172 | - #line 118 "..\..\RoboforkMenuView.xaml" | |
196 | + #line 123 "..\..\RoboforkMenuView.xaml" | |
173 | 197 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
174 | 198 | internal System.Windows.Controls.TreeViewItem NewProjectTree; |
175 | 199 | |
... | ... | @@ -177,7 +201,7 @@ |
177 | 201 | #line hidden |
178 | 202 | |
179 | 203 | |
180 | - #line 136 "..\..\RoboforkMenuView.xaml" | |
204 | + #line 141 "..\..\RoboforkMenuView.xaml" | |
181 | 205 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
182 | 206 | internal System.Windows.Controls.TabControl MainTab; |
183 | 207 | |
... | ... | @@ -185,7 +209,7 @@ |
185 | 209 | #line hidden |
186 | 210 | |
187 | 211 | |
188 | - #line 139 "..\..\RoboforkMenuView.xaml" | |
212 | + #line 144 "..\..\RoboforkMenuView.xaml" | |
189 | 213 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
190 | 214 | internal System.Windows.Controls.TabItem TabMap; |
191 | 215 | |
... | ... | @@ -193,7 +217,7 @@ |
193 | 217 | #line hidden |
194 | 218 | |
195 | 219 | |
196 | - #line 152 "..\..\RoboforkMenuView.xaml" | |
220 | + #line 157 "..\..\RoboforkMenuView.xaml" | |
197 | 221 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
198 | 222 | internal System.Windows.Controls.Grid GridMap; |
199 | 223 | |
... | ... | @@ -201,7 +225,7 @@ |
201 | 225 | #line hidden |
202 | 226 | |
203 | 227 | |
204 | - #line 164 "..\..\RoboforkMenuView.xaml" | |
228 | + #line 169 "..\..\RoboforkMenuView.xaml" | |
205 | 229 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
206 | 230 | internal RoboforkApp.DesignerCanvas MyDesignerCanvas; |
207 | 231 | |
... | ... | @@ -209,7 +233,7 @@ |
209 | 233 | #line hidden |
210 | 234 | |
211 | 235 | |
212 | - #line 171 "..\..\RoboforkMenuView.xaml" | |
236 | + #line 176 "..\..\RoboforkMenuView.xaml" | |
213 | 237 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
214 | 238 | internal System.Windows.Controls.Grid MCGrid; |
215 | 239 | |
... | ... | @@ -217,7 +241,7 @@ |
217 | 241 | #line hidden |
218 | 242 | |
219 | 243 | |
220 | - #line 233 "..\..\RoboforkMenuView.xaml" | |
244 | + #line 238 "..\..\RoboforkMenuView.xaml" | |
221 | 245 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
222 | 246 | internal System.Windows.Controls.Grid grdRouteInfo; |
223 | 247 | |
... | ... | @@ -225,7 +249,7 @@ |
225 | 249 | #line hidden |
226 | 250 | |
227 | 251 | |
228 | - #line 307 "..\..\RoboforkMenuView.xaml" | |
252 | + #line 312 "..\..\RoboforkMenuView.xaml" | |
229 | 253 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
230 | 254 | internal System.Windows.Controls.Label LabelSchedule; |
231 | 255 | |
... | ... | @@ -233,7 +257,7 @@ |
233 | 257 | #line hidden |
234 | 258 | |
235 | 259 | |
236 | - #line 311 "..\..\RoboforkMenuView.xaml" | |
260 | + #line 316 "..\..\RoboforkMenuView.xaml" | |
237 | 261 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
238 | 262 | internal RoboforkApp.ScheduleCanvas MyScheduleCanvas; |
239 | 263 | |
... | ... | @@ -241,7 +265,7 @@ |
241 | 265 | #line hidden |
242 | 266 | |
243 | 267 | |
244 | - #line 319 "..\..\RoboforkMenuView.xaml" | |
268 | + #line 324 "..\..\RoboforkMenuView.xaml" | |
245 | 269 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
246 | 270 | internal System.Windows.Controls.Grid MCGridShedule; |
247 | 271 | |
... | ... | @@ -249,7 +273,7 @@ |
249 | 273 | #line hidden |
250 | 274 | |
251 | 275 | |
252 | - #line 345 "..\..\RoboforkMenuView.xaml" | |
276 | + #line 350 "..\..\RoboforkMenuView.xaml" | |
253 | 277 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
254 | 278 | internal System.Windows.Controls.Label WorkVehicle; |
255 | 279 | |
... | ... | @@ -257,7 +281,7 @@ |
257 | 281 | #line hidden |
258 | 282 | |
259 | 283 | |
260 | - #line 350 "..\..\RoboforkMenuView.xaml" | |
284 | + #line 355 "..\..\RoboforkMenuView.xaml" | |
261 | 285 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
262 | 286 | internal System.Windows.Controls.TabItem TabWork; |
263 | 287 | |
... | ... | @@ -265,7 +289,7 @@ |
265 | 289 | #line hidden |
266 | 290 | |
267 | 291 | |
268 | - #line 357 "..\..\RoboforkMenuView.xaml" | |
292 | + #line 362 "..\..\RoboforkMenuView.xaml" | |
269 | 293 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
270 | 294 | internal System.Windows.Controls.TabItem TabSchedule; |
271 | 295 | |
272 | 296 | |
273 | 297 | |
274 | 298 | |
275 | 299 | |
276 | 300 | |
277 | 301 | |
278 | 302 | |
279 | 303 | |
280 | 304 | |
281 | 305 | |
282 | 306 | |
283 | 307 | |
284 | 308 | |
285 | 309 | |
286 | 310 | |
287 | 311 | |
288 | 312 | |
289 | 313 | |
290 | 314 | |
291 | 315 | |
292 | 316 | |
293 | 317 | |
294 | 318 | |
295 | 319 | |
296 | 320 | |
297 | 321 | |
298 | 322 | |
299 | 323 | |
300 | 324 | |
301 | 325 | |
302 | 326 | |
303 | 327 | |
304 | 328 | |
305 | 329 | |
306 | 330 | |
307 | 331 | |
308 | 332 | |
309 | 333 | |
310 | 334 | |
311 | 335 | |
312 | 336 | |
313 | 337 | |
... | ... | @@ -349,183 +373,204 @@ |
349 | 373 | #line hidden |
350 | 374 | return; |
351 | 375 | case 6: |
352 | - this.Vehicle = ((System.Windows.Controls.TreeViewItem)(target)); | |
376 | + this.LoadDB = ((System.Windows.Controls.TreeViewItem)(target)); | |
353 | 377 | return; |
354 | 378 | case 7: |
355 | - this.FK_15 = ((System.Windows.Controls.TreeViewItem)(target)); | |
379 | + this.FORK_FK15 = ((System.Windows.Controls.TreeViewItem)(target)); | |
356 | 380 | |
357 | 381 | #line 57 "..\..\RoboforkMenuView.xaml" |
358 | - this.FK_15.Selected += new System.Windows.RoutedEventHandler(this.btnVehicleItem_Selected); | |
382 | + this.FORK_FK15.Selected += new System.Windows.RoutedEventHandler(this.btnMenu_Selected); | |
359 | 383 | |
360 | 384 | #line default |
361 | 385 | #line hidden |
362 | 386 | return; |
363 | 387 | case 8: |
364 | - this.VehicleAdd = ((System.Windows.Controls.TreeViewItem)(target)); | |
388 | + this.NODE_FK15 = ((System.Windows.Controls.TreeViewItem)(target)); | |
365 | 389 | |
366 | 390 | #line 58 "..\..\RoboforkMenuView.xaml" |
367 | - this.VehicleAdd.Selected += new System.Windows.RoutedEventHandler(this.btnVehicleItem_Selected); | |
391 | + this.NODE_FK15.Selected += new System.Windows.RoutedEventHandler(this.btnMenu_Selected); | |
368 | 392 | |
369 | 393 | #line default |
370 | 394 | #line hidden |
371 | 395 | return; |
372 | 396 | case 9: |
373 | - this.UnderLine = ((System.Windows.Controls.TreeViewItem)(target)); | |
397 | + this.Vehicle = ((System.Windows.Controls.TreeViewItem)(target)); | |
374 | 398 | return; |
375 | 399 | case 10: |
376 | - this.TaskpattermTree = ((System.Windows.Controls.TreeViewItem)(target)); | |
400 | + this.FK_15 = ((System.Windows.Controls.TreeViewItem)(target)); | |
377 | 401 | |
402 | + #line 62 "..\..\RoboforkMenuView.xaml" | |
403 | + this.FK_15.Selected += new System.Windows.RoutedEventHandler(this.btnVehicleItem_Selected); | |
404 | + | |
405 | + #line default | |
406 | + #line hidden | |
407 | + return; | |
408 | + case 11: | |
409 | + this.VehicleAdd = ((System.Windows.Controls.TreeViewItem)(target)); | |
410 | + | |
378 | 411 | #line 63 "..\..\RoboforkMenuView.xaml" |
412 | + this.VehicleAdd.Selected += new System.Windows.RoutedEventHandler(this.btnVehicleItem_Selected); | |
413 | + | |
414 | + #line default | |
415 | + #line hidden | |
416 | + return; | |
417 | + case 12: | |
418 | + this.UnderLine = ((System.Windows.Controls.TreeViewItem)(target)); | |
419 | + return; | |
420 | + case 13: | |
421 | + this.TaskpattermTree = ((System.Windows.Controls.TreeViewItem)(target)); | |
422 | + | |
423 | + #line 68 "..\..\RoboforkMenuView.xaml" | |
379 | 424 | this.TaskpattermTree.Selected += new System.Windows.RoutedEventHandler(this.btnMenu_Selected); |
380 | 425 | |
381 | 426 | #line default |
382 | 427 | #line hidden |
383 | 428 | |
384 | - #line 63 "..\..\RoboforkMenuView.xaml" | |
429 | + #line 68 "..\..\RoboforkMenuView.xaml" | |
385 | 430 | this.TaskpattermTree.Unselected += new System.Windows.RoutedEventHandler(this.btnMenu_UnselectedSet); |
386 | 431 | |
387 | 432 | #line default |
388 | 433 | #line hidden |
389 | 434 | return; |
390 | - case 11: | |
435 | + case 14: | |
391 | 436 | this.WorkAddTree = ((System.Windows.Controls.TreeViewItem)(target)); |
392 | 437 | |
393 | - #line 68 "..\..\RoboforkMenuView.xaml" | |
438 | + #line 73 "..\..\RoboforkMenuView.xaml" | |
394 | 439 | this.WorkAddTree.Selected += new System.Windows.RoutedEventHandler(this.GetWorkAddTree); |
395 | 440 | |
396 | 441 | #line default |
397 | 442 | #line hidden |
398 | 443 | |
399 | - #line 69 "..\..\RoboforkMenuView.xaml" | |
444 | + #line 74 "..\..\RoboforkMenuView.xaml" | |
400 | 445 | this.WorkAddTree.Unselected += new System.Windows.RoutedEventHandler(this.SetWorkAddTree); |
401 | 446 | |
402 | 447 | #line default |
403 | 448 | #line hidden |
404 | 449 | return; |
405 | - case 12: | |
450 | + case 15: | |
406 | 451 | this.ConnectTree = ((System.Windows.Controls.TreeViewItem)(target)); |
407 | 452 | |
408 | - #line 81 "..\..\RoboforkMenuView.xaml" | |
453 | + #line 86 "..\..\RoboforkMenuView.xaml" | |
409 | 454 | this.ConnectTree.Selected += new System.Windows.RoutedEventHandler(this.GetConnectTree); |
410 | 455 | |
411 | 456 | #line default |
412 | 457 | #line hidden |
413 | 458 | |
414 | - #line 82 "..\..\RoboforkMenuView.xaml" | |
459 | + #line 87 "..\..\RoboforkMenuView.xaml" | |
415 | 460 | this.ConnectTree.Unselected += new System.Windows.RoutedEventHandler(this.SetConnectTree); |
416 | 461 | |
417 | 462 | #line default |
418 | 463 | #line hidden |
419 | 464 | return; |
420 | - case 13: | |
465 | + case 16: | |
421 | 466 | this.ParameterTree = ((System.Windows.Controls.TreeViewItem)(target)); |
422 | 467 | |
423 | - #line 87 "..\..\RoboforkMenuView.xaml" | |
468 | + #line 92 "..\..\RoboforkMenuView.xaml" | |
424 | 469 | this.ParameterTree.Selected += new System.Windows.RoutedEventHandler(this.GetParameterTree); |
425 | 470 | |
426 | 471 | #line default |
427 | 472 | #line hidden |
428 | 473 | |
429 | - #line 88 "..\..\RoboforkMenuView.xaml" | |
474 | + #line 93 "..\..\RoboforkMenuView.xaml" | |
430 | 475 | this.ParameterTree.Unselected += new System.Windows.RoutedEventHandler(this.SetParameterTree); |
431 | 476 | |
432 | 477 | #line default |
433 | 478 | #line hidden |
434 | 479 | return; |
435 | - case 14: | |
480 | + case 17: | |
436 | 481 | this.LoggingTree = ((System.Windows.Controls.TreeViewItem)(target)); |
437 | 482 | |
438 | - #line 98 "..\..\RoboforkMenuView.xaml" | |
483 | + #line 103 "..\..\RoboforkMenuView.xaml" | |
439 | 484 | this.LoggingTree.Selected += new System.Windows.RoutedEventHandler(this.GetLoggingTree); |
440 | 485 | |
441 | 486 | #line default |
442 | 487 | #line hidden |
443 | 488 | |
444 | - #line 99 "..\..\RoboforkMenuView.xaml" | |
489 | + #line 104 "..\..\RoboforkMenuView.xaml" | |
445 | 490 | this.LoggingTree.Unselected += new System.Windows.RoutedEventHandler(this.SetLoggingTree); |
446 | 491 | |
447 | 492 | #line default |
448 | 493 | #line hidden |
449 | 494 | return; |
450 | - case 15: | |
495 | + case 18: | |
451 | 496 | this.AlertTree = ((System.Windows.Controls.TreeViewItem)(target)); |
452 | 497 | |
453 | - #line 107 "..\..\RoboforkMenuView.xaml" | |
498 | + #line 112 "..\..\RoboforkMenuView.xaml" | |
454 | 499 | this.AlertTree.Selected += new System.Windows.RoutedEventHandler(this.GetAlertTree); |
455 | 500 | |
456 | 501 | #line default |
457 | 502 | #line hidden |
458 | 503 | |
459 | - #line 108 "..\..\RoboforkMenuView.xaml" | |
504 | + #line 113 "..\..\RoboforkMenuView.xaml" | |
460 | 505 | this.AlertTree.Unselected += new System.Windows.RoutedEventHandler(this.SetAlertTree); |
461 | 506 | |
462 | 507 | #line default |
463 | 508 | #line hidden |
464 | 509 | return; |
465 | - case 16: | |
510 | + case 19: | |
466 | 511 | this.HelpTree = ((System.Windows.Controls.TreeViewItem)(target)); |
467 | 512 | |
468 | - #line 113 "..\..\RoboforkMenuView.xaml" | |
513 | + #line 118 "..\..\RoboforkMenuView.xaml" | |
469 | 514 | this.HelpTree.Selected += new System.Windows.RoutedEventHandler(this.GetHelpTree); |
470 | 515 | |
471 | 516 | #line default |
472 | 517 | #line hidden |
473 | 518 | |
474 | - #line 114 "..\..\RoboforkMenuView.xaml" | |
519 | + #line 119 "..\..\RoboforkMenuView.xaml" | |
475 | 520 | this.HelpTree.Unselected += new System.Windows.RoutedEventHandler(this.SetHelpTree); |
476 | 521 | |
477 | 522 | #line default |
478 | 523 | #line hidden |
479 | 524 | return; |
480 | - case 17: | |
525 | + case 20: | |
481 | 526 | this.NewProjectTree = ((System.Windows.Controls.TreeViewItem)(target)); |
482 | 527 | |
483 | - #line 119 "..\..\RoboforkMenuView.xaml" | |
528 | + #line 124 "..\..\RoboforkMenuView.xaml" | |
484 | 529 | this.NewProjectTree.Selected += new System.Windows.RoutedEventHandler(this.GetNewProjectTree); |
485 | 530 | |
486 | 531 | #line default |
487 | 532 | #line hidden |
488 | 533 | |
489 | - #line 120 "..\..\RoboforkMenuView.xaml" | |
534 | + #line 125 "..\..\RoboforkMenuView.xaml" | |
490 | 535 | this.NewProjectTree.Unselected += new System.Windows.RoutedEventHandler(this.SetNewProjectTree); |
491 | 536 | |
492 | 537 | #line default |
493 | 538 | #line hidden |
494 | 539 | return; |
495 | - case 18: | |
540 | + case 21: | |
496 | 541 | this.MainTab = ((System.Windows.Controls.TabControl)(target)); |
497 | 542 | return; |
498 | - case 19: | |
543 | + case 22: | |
499 | 544 | this.TabMap = ((System.Windows.Controls.TabItem)(target)); |
500 | 545 | return; |
501 | - case 20: | |
546 | + case 23: | |
502 | 547 | this.GridMap = ((System.Windows.Controls.Grid)(target)); |
503 | 548 | return; |
504 | - case 21: | |
549 | + case 24: | |
505 | 550 | this.MyDesignerCanvas = ((RoboforkApp.DesignerCanvas)(target)); |
506 | 551 | return; |
507 | - case 22: | |
552 | + case 25: | |
508 | 553 | this.MCGrid = ((System.Windows.Controls.Grid)(target)); |
509 | 554 | return; |
510 | - case 23: | |
555 | + case 26: | |
511 | 556 | this.grdRouteInfo = ((System.Windows.Controls.Grid)(target)); |
512 | 557 | return; |
513 | - case 24: | |
558 | + case 27: | |
514 | 559 | this.LabelSchedule = ((System.Windows.Controls.Label)(target)); |
515 | 560 | return; |
516 | - case 25: | |
561 | + case 28: | |
517 | 562 | this.MyScheduleCanvas = ((RoboforkApp.ScheduleCanvas)(target)); |
518 | 563 | return; |
519 | - case 26: | |
564 | + case 29: | |
520 | 565 | this.MCGridShedule = ((System.Windows.Controls.Grid)(target)); |
521 | 566 | return; |
522 | - case 27: | |
567 | + case 30: | |
523 | 568 | this.WorkVehicle = ((System.Windows.Controls.Label)(target)); |
524 | 569 | return; |
525 | - case 28: | |
570 | + case 31: | |
526 | 571 | this.TabWork = ((System.Windows.Controls.TabItem)(target)); |
527 | 572 | return; |
528 | - case 29: | |
573 | + case 32: | |
529 | 574 | this.TabSchedule = ((System.Windows.Controls.TabItem)(target)); |
530 | 575 | return; |
531 | 576 | } |
sources/RoboforkApp/obj/Release/RoboforkMenuView.g.i.cs
1 | -๏ปฟ#pragma checksum "..\..\RoboforkMenuView.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "599231713FE3089DBEC7F5AFDBB4E057" | |
1 | +๏ปฟ#pragma checksum "..\..\RoboforkMenuView.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "16F6F520191E2176C653E3BFDE782900" | |
2 | 2 | //------------------------------------------------------------------------------ |
3 | 3 | // <auto-generated> |
4 | 4 | // This code was generated by a tool. |
... | ... | @@ -83,7 +83,7 @@ |
83 | 83 | |
84 | 84 | #line 56 "..\..\RoboforkMenuView.xaml" |
85 | 85 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
86 | - internal System.Windows.Controls.TreeViewItem Vehicle; | |
86 | + internal System.Windows.Controls.TreeViewItem LoadDB; | |
87 | 87 | |
88 | 88 | #line default |
89 | 89 | #line hidden |
... | ... | @@ -91,7 +91,7 @@ |
91 | 91 | |
92 | 92 | #line 57 "..\..\RoboforkMenuView.xaml" |
93 | 93 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
94 | - internal System.Windows.Controls.TreeViewItem FK_15; | |
94 | + internal System.Windows.Controls.TreeViewItem FORK_FK15; | |
95 | 95 | |
96 | 96 | #line default |
97 | 97 | #line hidden |
98 | 98 | |
... | ... | @@ -99,13 +99,37 @@ |
99 | 99 | |
100 | 100 | #line 58 "..\..\RoboforkMenuView.xaml" |
101 | 101 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
102 | + internal System.Windows.Controls.TreeViewItem NODE_FK15; | |
103 | + | |
104 | + #line default | |
105 | + #line hidden | |
106 | + | |
107 | + | |
108 | + #line 61 "..\..\RoboforkMenuView.xaml" | |
109 | + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] | |
110 | + internal System.Windows.Controls.TreeViewItem Vehicle; | |
111 | + | |
112 | + #line default | |
113 | + #line hidden | |
114 | + | |
115 | + | |
116 | + #line 62 "..\..\RoboforkMenuView.xaml" | |
117 | + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] | |
118 | + internal System.Windows.Controls.TreeViewItem FK_15; | |
119 | + | |
120 | + #line default | |
121 | + #line hidden | |
122 | + | |
123 | + | |
124 | + #line 63 "..\..\RoboforkMenuView.xaml" | |
125 | + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] | |
102 | 126 | internal System.Windows.Controls.TreeViewItem VehicleAdd; |
103 | 127 | |
104 | 128 | #line default |
105 | 129 | #line hidden |
106 | 130 | |
107 | 131 | |
108 | - #line 59 "..\..\RoboforkMenuView.xaml" | |
132 | + #line 64 "..\..\RoboforkMenuView.xaml" | |
109 | 133 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
110 | 134 | internal System.Windows.Controls.TreeViewItem UnderLine; |
111 | 135 | |
... | ... | @@ -113,7 +137,7 @@ |
113 | 137 | #line hidden |
114 | 138 | |
115 | 139 | |
116 | - #line 63 "..\..\RoboforkMenuView.xaml" | |
140 | + #line 68 "..\..\RoboforkMenuView.xaml" | |
117 | 141 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
118 | 142 | internal System.Windows.Controls.TreeViewItem TaskpattermTree; |
119 | 143 | |
... | ... | @@ -121,7 +145,7 @@ |
121 | 145 | #line hidden |
122 | 146 | |
123 | 147 | |
124 | - #line 67 "..\..\RoboforkMenuView.xaml" | |
148 | + #line 72 "..\..\RoboforkMenuView.xaml" | |
125 | 149 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
126 | 150 | internal System.Windows.Controls.TreeViewItem WorkAddTree; |
127 | 151 | |
... | ... | @@ -129,7 +153,7 @@ |
129 | 153 | #line hidden |
130 | 154 | |
131 | 155 | |
132 | - #line 80 "..\..\RoboforkMenuView.xaml" | |
156 | + #line 85 "..\..\RoboforkMenuView.xaml" | |
133 | 157 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
134 | 158 | internal System.Windows.Controls.TreeViewItem ConnectTree; |
135 | 159 | |
... | ... | @@ -137,7 +161,7 @@ |
137 | 161 | #line hidden |
138 | 162 | |
139 | 163 | |
140 | - #line 86 "..\..\RoboforkMenuView.xaml" | |
164 | + #line 91 "..\..\RoboforkMenuView.xaml" | |
141 | 165 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
142 | 166 | internal System.Windows.Controls.TreeViewItem ParameterTree; |
143 | 167 | |
... | ... | @@ -145,7 +169,7 @@ |
145 | 169 | #line hidden |
146 | 170 | |
147 | 171 | |
148 | - #line 97 "..\..\RoboforkMenuView.xaml" | |
172 | + #line 102 "..\..\RoboforkMenuView.xaml" | |
149 | 173 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
150 | 174 | internal System.Windows.Controls.TreeViewItem LoggingTree; |
151 | 175 | |
... | ... | @@ -153,7 +177,7 @@ |
153 | 177 | #line hidden |
154 | 178 | |
155 | 179 | |
156 | - #line 106 "..\..\RoboforkMenuView.xaml" | |
180 | + #line 111 "..\..\RoboforkMenuView.xaml" | |
157 | 181 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
158 | 182 | internal System.Windows.Controls.TreeViewItem AlertTree; |
159 | 183 | |
... | ... | @@ -161,7 +185,7 @@ |
161 | 185 | #line hidden |
162 | 186 | |
163 | 187 | |
164 | - #line 112 "..\..\RoboforkMenuView.xaml" | |
188 | + #line 117 "..\..\RoboforkMenuView.xaml" | |
165 | 189 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
166 | 190 | internal System.Windows.Controls.TreeViewItem HelpTree; |
167 | 191 | |
... | ... | @@ -169,7 +193,7 @@ |
169 | 193 | #line hidden |
170 | 194 | |
171 | 195 | |
172 | - #line 118 "..\..\RoboforkMenuView.xaml" | |
196 | + #line 123 "..\..\RoboforkMenuView.xaml" | |
173 | 197 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
174 | 198 | internal System.Windows.Controls.TreeViewItem NewProjectTree; |
175 | 199 | |
... | ... | @@ -177,7 +201,7 @@ |
177 | 201 | #line hidden |
178 | 202 | |
179 | 203 | |
180 | - #line 136 "..\..\RoboforkMenuView.xaml" | |
204 | + #line 141 "..\..\RoboforkMenuView.xaml" | |
181 | 205 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
182 | 206 | internal System.Windows.Controls.TabControl MainTab; |
183 | 207 | |
... | ... | @@ -185,7 +209,7 @@ |
185 | 209 | #line hidden |
186 | 210 | |
187 | 211 | |
188 | - #line 139 "..\..\RoboforkMenuView.xaml" | |
212 | + #line 144 "..\..\RoboforkMenuView.xaml" | |
189 | 213 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
190 | 214 | internal System.Windows.Controls.TabItem TabMap; |
191 | 215 | |
... | ... | @@ -193,7 +217,7 @@ |
193 | 217 | #line hidden |
194 | 218 | |
195 | 219 | |
196 | - #line 152 "..\..\RoboforkMenuView.xaml" | |
220 | + #line 157 "..\..\RoboforkMenuView.xaml" | |
197 | 221 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
198 | 222 | internal System.Windows.Controls.Grid GridMap; |
199 | 223 | |
... | ... | @@ -201,7 +225,7 @@ |
201 | 225 | #line hidden |
202 | 226 | |
203 | 227 | |
204 | - #line 164 "..\..\RoboforkMenuView.xaml" | |
228 | + #line 169 "..\..\RoboforkMenuView.xaml" | |
205 | 229 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
206 | 230 | internal RoboforkApp.DesignerCanvas MyDesignerCanvas; |
207 | 231 | |
... | ... | @@ -209,7 +233,7 @@ |
209 | 233 | #line hidden |
210 | 234 | |
211 | 235 | |
212 | - #line 171 "..\..\RoboforkMenuView.xaml" | |
236 | + #line 176 "..\..\RoboforkMenuView.xaml" | |
213 | 237 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
214 | 238 | internal System.Windows.Controls.Grid MCGrid; |
215 | 239 | |
... | ... | @@ -217,7 +241,7 @@ |
217 | 241 | #line hidden |
218 | 242 | |
219 | 243 | |
220 | - #line 233 "..\..\RoboforkMenuView.xaml" | |
244 | + #line 238 "..\..\RoboforkMenuView.xaml" | |
221 | 245 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
222 | 246 | internal System.Windows.Controls.Grid grdRouteInfo; |
223 | 247 | |
... | ... | @@ -225,7 +249,7 @@ |
225 | 249 | #line hidden |
226 | 250 | |
227 | 251 | |
228 | - #line 307 "..\..\RoboforkMenuView.xaml" | |
252 | + #line 312 "..\..\RoboforkMenuView.xaml" | |
229 | 253 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
230 | 254 | internal System.Windows.Controls.Label LabelSchedule; |
231 | 255 | |
... | ... | @@ -233,7 +257,7 @@ |
233 | 257 | #line hidden |
234 | 258 | |
235 | 259 | |
236 | - #line 311 "..\..\RoboforkMenuView.xaml" | |
260 | + #line 316 "..\..\RoboforkMenuView.xaml" | |
237 | 261 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
238 | 262 | internal RoboforkApp.ScheduleCanvas MyScheduleCanvas; |
239 | 263 | |
... | ... | @@ -241,7 +265,7 @@ |
241 | 265 | #line hidden |
242 | 266 | |
243 | 267 | |
244 | - #line 319 "..\..\RoboforkMenuView.xaml" | |
268 | + #line 324 "..\..\RoboforkMenuView.xaml" | |
245 | 269 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
246 | 270 | internal System.Windows.Controls.Grid MCGridShedule; |
247 | 271 | |
... | ... | @@ -249,7 +273,7 @@ |
249 | 273 | #line hidden |
250 | 274 | |
251 | 275 | |
252 | - #line 345 "..\..\RoboforkMenuView.xaml" | |
276 | + #line 350 "..\..\RoboforkMenuView.xaml" | |
253 | 277 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
254 | 278 | internal System.Windows.Controls.Label WorkVehicle; |
255 | 279 | |
... | ... | @@ -257,7 +281,7 @@ |
257 | 281 | #line hidden |
258 | 282 | |
259 | 283 | |
260 | - #line 350 "..\..\RoboforkMenuView.xaml" | |
284 | + #line 355 "..\..\RoboforkMenuView.xaml" | |
261 | 285 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
262 | 286 | internal System.Windows.Controls.TabItem TabWork; |
263 | 287 | |
... | ... | @@ -265,7 +289,7 @@ |
265 | 289 | #line hidden |
266 | 290 | |
267 | 291 | |
268 | - #line 357 "..\..\RoboforkMenuView.xaml" | |
292 | + #line 362 "..\..\RoboforkMenuView.xaml" | |
269 | 293 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] |
270 | 294 | internal System.Windows.Controls.TabItem TabSchedule; |
271 | 295 | |
272 | 296 | |
273 | 297 | |
274 | 298 | |
275 | 299 | |
276 | 300 | |
277 | 301 | |
278 | 302 | |
279 | 303 | |
280 | 304 | |
281 | 305 | |
282 | 306 | |
283 | 307 | |
284 | 308 | |
285 | 309 | |
286 | 310 | |
287 | 311 | |
288 | 312 | |
289 | 313 | |
290 | 314 | |
291 | 315 | |
292 | 316 | |
293 | 317 | |
294 | 318 | |
295 | 319 | |
296 | 320 | |
297 | 321 | |
298 | 322 | |
299 | 323 | |
300 | 324 | |
301 | 325 | |
302 | 326 | |
303 | 327 | |
304 | 328 | |
305 | 329 | |
306 | 330 | |
307 | 331 | |
308 | 332 | |
309 | 333 | |
310 | 334 | |
311 | 335 | |
312 | 336 | |
313 | 337 | |
... | ... | @@ -349,183 +373,204 @@ |
349 | 373 | #line hidden |
350 | 374 | return; |
351 | 375 | case 6: |
352 | - this.Vehicle = ((System.Windows.Controls.TreeViewItem)(target)); | |
376 | + this.LoadDB = ((System.Windows.Controls.TreeViewItem)(target)); | |
353 | 377 | return; |
354 | 378 | case 7: |
355 | - this.FK_15 = ((System.Windows.Controls.TreeViewItem)(target)); | |
379 | + this.FORK_FK15 = ((System.Windows.Controls.TreeViewItem)(target)); | |
356 | 380 | |
357 | 381 | #line 57 "..\..\RoboforkMenuView.xaml" |
358 | - this.FK_15.Selected += new System.Windows.RoutedEventHandler(this.btnVehicleItem_Selected); | |
382 | + this.FORK_FK15.Selected += new System.Windows.RoutedEventHandler(this.btnMenu_Selected); | |
359 | 383 | |
360 | 384 | #line default |
361 | 385 | #line hidden |
362 | 386 | return; |
363 | 387 | case 8: |
364 | - this.VehicleAdd = ((System.Windows.Controls.TreeViewItem)(target)); | |
388 | + this.NODE_FK15 = ((System.Windows.Controls.TreeViewItem)(target)); | |
365 | 389 | |
366 | 390 | #line 58 "..\..\RoboforkMenuView.xaml" |
367 | - this.VehicleAdd.Selected += new System.Windows.RoutedEventHandler(this.btnVehicleItem_Selected); | |
391 | + this.NODE_FK15.Selected += new System.Windows.RoutedEventHandler(this.btnMenu_Selected); | |
368 | 392 | |
369 | 393 | #line default |
370 | 394 | #line hidden |
371 | 395 | return; |
372 | 396 | case 9: |
373 | - this.UnderLine = ((System.Windows.Controls.TreeViewItem)(target)); | |
397 | + this.Vehicle = ((System.Windows.Controls.TreeViewItem)(target)); | |
374 | 398 | return; |
375 | 399 | case 10: |
376 | - this.TaskpattermTree = ((System.Windows.Controls.TreeViewItem)(target)); | |
400 | + this.FK_15 = ((System.Windows.Controls.TreeViewItem)(target)); | |
377 | 401 | |
402 | + #line 62 "..\..\RoboforkMenuView.xaml" | |
403 | + this.FK_15.Selected += new System.Windows.RoutedEventHandler(this.btnVehicleItem_Selected); | |
404 | + | |
405 | + #line default | |
406 | + #line hidden | |
407 | + return; | |
408 | + case 11: | |
409 | + this.VehicleAdd = ((System.Windows.Controls.TreeViewItem)(target)); | |
410 | + | |
378 | 411 | #line 63 "..\..\RoboforkMenuView.xaml" |
412 | + this.VehicleAdd.Selected += new System.Windows.RoutedEventHandler(this.btnVehicleItem_Selected); | |
413 | + | |
414 | + #line default | |
415 | + #line hidden | |
416 | + return; | |
417 | + case 12: | |
418 | + this.UnderLine = ((System.Windows.Controls.TreeViewItem)(target)); | |
419 | + return; | |
420 | + case 13: | |
421 | + this.TaskpattermTree = ((System.Windows.Controls.TreeViewItem)(target)); | |
422 | + | |
423 | + #line 68 "..\..\RoboforkMenuView.xaml" | |
379 | 424 | this.TaskpattermTree.Selected += new System.Windows.RoutedEventHandler(this.btnMenu_Selected); |
380 | 425 | |
381 | 426 | #line default |
382 | 427 | #line hidden |
383 | 428 | |
384 | - #line 63 "..\..\RoboforkMenuView.xaml" | |
429 | + #line 68 "..\..\RoboforkMenuView.xaml" | |
385 | 430 | this.TaskpattermTree.Unselected += new System.Windows.RoutedEventHandler(this.btnMenu_UnselectedSet); |
386 | 431 | |
387 | 432 | #line default |
388 | 433 | #line hidden |
389 | 434 | return; |
390 | - case 11: | |
435 | + case 14: | |
391 | 436 | this.WorkAddTree = ((System.Windows.Controls.TreeViewItem)(target)); |
392 | 437 | |
393 | - #line 68 "..\..\RoboforkMenuView.xaml" | |
438 | + #line 73 "..\..\RoboforkMenuView.xaml" | |
394 | 439 | this.WorkAddTree.Selected += new System.Windows.RoutedEventHandler(this.GetWorkAddTree); |
395 | 440 | |
396 | 441 | #line default |
397 | 442 | #line hidden |
398 | 443 | |
399 | - #line 69 "..\..\RoboforkMenuView.xaml" | |
444 | + #line 74 "..\..\RoboforkMenuView.xaml" | |
400 | 445 | this.WorkAddTree.Unselected += new System.Windows.RoutedEventHandler(this.SetWorkAddTree); |
401 | 446 | |
402 | 447 | #line default |
403 | 448 | #line hidden |
404 | 449 | return; |
405 | - case 12: | |
450 | + case 15: | |
406 | 451 | this.ConnectTree = ((System.Windows.Controls.TreeViewItem)(target)); |
407 | 452 | |
408 | - #line 81 "..\..\RoboforkMenuView.xaml" | |
453 | + #line 86 "..\..\RoboforkMenuView.xaml" | |
409 | 454 | this.ConnectTree.Selected += new System.Windows.RoutedEventHandler(this.GetConnectTree); |
410 | 455 | |
411 | 456 | #line default |
412 | 457 | #line hidden |
413 | 458 | |
414 | - #line 82 "..\..\RoboforkMenuView.xaml" | |
459 | + #line 87 "..\..\RoboforkMenuView.xaml" | |
415 | 460 | this.ConnectTree.Unselected += new System.Windows.RoutedEventHandler(this.SetConnectTree); |
416 | 461 | |
417 | 462 | #line default |
418 | 463 | #line hidden |
419 | 464 | return; |
420 | - case 13: | |
465 | + case 16: | |
421 | 466 | this.ParameterTree = ((System.Windows.Controls.TreeViewItem)(target)); |
422 | 467 | |
423 | - #line 87 "..\..\RoboforkMenuView.xaml" | |
468 | + #line 92 "..\..\RoboforkMenuView.xaml" | |
424 | 469 | this.ParameterTree.Selected += new System.Windows.RoutedEventHandler(this.GetParameterTree); |
425 | 470 | |
426 | 471 | #line default |
427 | 472 | #line hidden |
428 | 473 | |
429 | - #line 88 "..\..\RoboforkMenuView.xaml" | |
474 | + #line 93 "..\..\RoboforkMenuView.xaml" | |
430 | 475 | this.ParameterTree.Unselected += new System.Windows.RoutedEventHandler(this.SetParameterTree); |
431 | 476 | |
432 | 477 | #line default |
433 | 478 | #line hidden |
434 | 479 | return; |
435 | - case 14: | |
480 | + case 17: | |
436 | 481 | this.LoggingTree = ((System.Windows.Controls.TreeViewItem)(target)); |
437 | 482 | |
438 | - #line 98 "..\..\RoboforkMenuView.xaml" | |
483 | + #line 103 "..\..\RoboforkMenuView.xaml" | |
439 | 484 | this.LoggingTree.Selected += new System.Windows.RoutedEventHandler(this.GetLoggingTree); |
440 | 485 | |
441 | 486 | #line default |
442 | 487 | #line hidden |
443 | 488 | |
444 | - #line 99 "..\..\RoboforkMenuView.xaml" | |
489 | + #line 104 "..\..\RoboforkMenuView.xaml" | |
445 | 490 | this.LoggingTree.Unselected += new System.Windows.RoutedEventHandler(this.SetLoggingTree); |
446 | 491 | |
447 | 492 | #line default |
448 | 493 | #line hidden |
449 | 494 | return; |
450 | - case 15: | |
495 | + case 18: | |
451 | 496 | this.AlertTree = ((System.Windows.Controls.TreeViewItem)(target)); |
452 | 497 | |
453 | - #line 107 "..\..\RoboforkMenuView.xaml" | |
498 | + #line 112 "..\..\RoboforkMenuView.xaml" | |
454 | 499 | this.AlertTree.Selected += new System.Windows.RoutedEventHandler(this.GetAlertTree); |
455 | 500 | |
456 | 501 | #line default |
457 | 502 | #line hidden |
458 | 503 | |
459 | - #line 108 "..\..\RoboforkMenuView.xaml" | |
504 | + #line 113 "..\..\RoboforkMenuView.xaml" | |
460 | 505 | this.AlertTree.Unselected += new System.Windows.RoutedEventHandler(this.SetAlertTree); |
461 | 506 | |
462 | 507 | #line default |
463 | 508 | #line hidden |
464 | 509 | return; |
465 | - case 16: | |
510 | + case 19: | |
466 | 511 | this.HelpTree = ((System.Windows.Controls.TreeViewItem)(target)); |
467 | 512 | |
468 | - #line 113 "..\..\RoboforkMenuView.xaml" | |
513 | + #line 118 "..\..\RoboforkMenuView.xaml" | |
469 | 514 | this.HelpTree.Selected += new System.Windows.RoutedEventHandler(this.GetHelpTree); |
470 | 515 | |
471 | 516 | #line default |
472 | 517 | #line hidden |
473 | 518 | |
474 | - #line 114 "..\..\RoboforkMenuView.xaml" | |
519 | + #line 119 "..\..\RoboforkMenuView.xaml" | |
475 | 520 | this.HelpTree.Unselected += new System.Windows.RoutedEventHandler(this.SetHelpTree); |
476 | 521 | |
477 | 522 | #line default |
478 | 523 | #line hidden |
479 | 524 | return; |
480 | - case 17: | |
525 | + case 20: | |
481 | 526 | this.NewProjectTree = ((System.Windows.Controls.TreeViewItem)(target)); |
482 | 527 | |
483 | - #line 119 "..\..\RoboforkMenuView.xaml" | |
528 | + #line 124 "..\..\RoboforkMenuView.xaml" | |
484 | 529 | this.NewProjectTree.Selected += new System.Windows.RoutedEventHandler(this.GetNewProjectTree); |
485 | 530 | |
486 | 531 | #line default |
487 | 532 | #line hidden |
488 | 533 | |
489 | - #line 120 "..\..\RoboforkMenuView.xaml" | |
534 | + #line 125 "..\..\RoboforkMenuView.xaml" | |
490 | 535 | this.NewProjectTree.Unselected += new System.Windows.RoutedEventHandler(this.SetNewProjectTree); |
491 | 536 | |
492 | 537 | #line default |
493 | 538 | #line hidden |
494 | 539 | return; |
495 | - case 18: | |
540 | + case 21: | |
496 | 541 | this.MainTab = ((System.Windows.Controls.TabControl)(target)); |
497 | 542 | return; |
498 | - case 19: | |
543 | + case 22: | |
499 | 544 | this.TabMap = ((System.Windows.Controls.TabItem)(target)); |
500 | 545 | return; |
501 | - case 20: | |
546 | + case 23: | |
502 | 547 | this.GridMap = ((System.Windows.Controls.Grid)(target)); |
503 | 548 | return; |
504 | - case 21: | |
549 | + case 24: | |
505 | 550 | this.MyDesignerCanvas = ((RoboforkApp.DesignerCanvas)(target)); |
506 | 551 | return; |
507 | - case 22: | |
552 | + case 25: | |
508 | 553 | this.MCGrid = ((System.Windows.Controls.Grid)(target)); |
509 | 554 | return; |
510 | - case 23: | |
555 | + case 26: | |
511 | 556 | this.grdRouteInfo = ((System.Windows.Controls.Grid)(target)); |
512 | 557 | return; |
513 | - case 24: | |
558 | + case 27: | |
514 | 559 | this.LabelSchedule = ((System.Windows.Controls.Label)(target)); |
515 | 560 | return; |
516 | - case 25: | |
561 | + case 28: | |
517 | 562 | this.MyScheduleCanvas = ((RoboforkApp.ScheduleCanvas)(target)); |
518 | 563 | return; |
519 | - case 26: | |
564 | + case 29: | |
520 | 565 | this.MCGridShedule = ((System.Windows.Controls.Grid)(target)); |
521 | 566 | return; |
522 | - case 27: | |
567 | + case 30: | |
523 | 568 | this.WorkVehicle = ((System.Windows.Controls.Label)(target)); |
524 | 569 | return; |
525 | - case 28: | |
570 | + case 31: | |
526 | 571 | this.TabWork = ((System.Windows.Controls.TabItem)(target)); |
527 | 572 | return; |
528 | - case 29: | |
573 | + case 32: | |
529 | 574 | this.TabSchedule = ((System.Windows.Controls.TabItem)(target)); |
530 | 575 | return; |
531 | 576 | } |
sources/RoboforkApp/obj/Release/Stencils/BasicShapes.baml
No preview for this file type
sources/RoboforkApp/obj/Release/Stencils/FlowChartSymbols.baml
No preview for this file type
sources/RoboforkApp/obj/Release/Stencils/RegelungstechnikSymbole.baml
No preview for this file type
sources/RoboforkApp/obj/Release/Stencils/SymbolStencils.baml
No preview for this file type