Commit 90bcde8984a71855d7a010a9f8f21c2d157c5895

Authored by doan
1 parent 6df37ad27f
Exists in master

Update Task 2098

Showing 26 changed files with 526 additions and 275 deletions Side-by-side Diff

sources/.vs/RoboforkApp/v14/.suo
No preview for this file type
sources/RoboforkApp/RoboforkApp.csproj
... ... @@ -108,6 +108,9 @@
108 108 <Compile Include="Commons\Common.cs" />
109 109 <Compile Include="DataModel\ProjectModel.cs" />
110 110 <Compile Include="DataModel\ScaleCanvas.cs" />
  111 + <Compile Include="View\AddParameter.xaml.cs">
  112 + <DependentUpon>AddParameter.xaml</DependentUpon>
  113 + </Compile>
111 114 <Compile Include="View\UpdateNodeView.xaml.cs">
112 115 <DependentUpon>UpdateNodeView.xaml</DependentUpon>
113 116 </Compile>
... ... @@ -198,6 +201,10 @@
198 201 <Page Include="View\AddNodeView.xaml">
199 202 <Generator>MSBuild:Compile</Generator>
200 203 <SubType>Designer</SubType>
  204 + </Page>
  205 + <Page Include="View\AddParameter.xaml">
  206 + <SubType>Designer</SubType>
  207 + <Generator>MSBuild:Compile</Generator>
201 208 </Page>
202 209 <Page Include="View\EditNodeView.xaml">
203 210 <SubType>Designer</SubType>
sources/RoboforkApp/RoboforkMenuView.xaml
... ... @@ -69,54 +69,27 @@
69 69 </TreeViewItem>
70 70 <TreeViewItem Header="[+]"
71 71 FontSize="13"
72   - Name="WorkAddTree"
73   - Selected="btnMenu_UnselectedSet"
74   - Unselected="btnMenu_UnselectedSet">
  72 + Name="WorkAddTree" >
75 73 </TreeViewItem>
76 74 <TreeViewItem Header="--------------------"
77 75 FontSize="13">
78 76 </TreeViewItem>
79 77 </TreeViewItem>
80 78  
81   - <TreeViewItem Header="Setting"
82   - FontSize="13">
83   - <TreeViewItem Header="Connect [Wi-Fi]"
84   - FontSize="13"
85   - Name="ConnectTree"
86   - Selected="btnMenu_UnselectedSet"
87   - Unselected="btnMenu_UnselectedSet">
88   - </TreeViewItem>
89   - <TreeViewItem Header="Parameter"
90   - FontSize="13"
91   - Name="ParameterTree"
92   - Selected="btnMenu_UnselectedSet"
93   - Unselected="btnMenu_UnselectedSet">
94   - </TreeViewItem>
95   - <TreeViewItem Header="--------------------"
96   - FontSize="13">
97   - </TreeViewItem>
  79 + <TreeViewItem Header="Setting" FontSize="13">
  80 + <TreeViewItem Header="Connect [Wi-Fi]" FontSize="13" Name="ConnectTree"></TreeViewItem>
  81 + <TreeViewItem Header="Parameter" FontSize="13" Name="ParameterTree" Tag="ParameterTree" Selected="btnMenu_Selected"></TreeViewItem>
  82 + <TreeViewItem Header="--------------------" FontSize="13"></TreeViewItem>
98 83 </TreeViewItem>
99 84 <!--<TreeViewItem Header="Schedule" FontSize="13" Name="ScheduleTree" Selected="btnMenu_Selected" Unselected="btnMenu_UnselectedSet" Tag="ScheduleRoute"></TreeViewItem>-->
100   - <TreeViewItem Header="Logging"
101   - FontSize="13"
102   - Name="LoggingTree"
103   - Selected="btnMenu_UnselectedSet"
104   - Unselected="btnMenu_UnselectedSet">
  85 + <TreeViewItem Header="Logging" FontSize="13" Name="LoggingTree" >
105 86 </TreeViewItem>
106 87 <TreeViewItem Header=" --------------------">
107 88 </TreeViewItem>
108 89 </TreeViewItem>
109   - <TreeViewItem Header="Alert"
110   - FontSize="13"
111   - Name="AlertTree"
112   - Selected="btnMenu_UnselectedSet"
113   - Unselected="btnMenu_UnselectedSet">
  90 + <TreeViewItem Header="Alert" FontSize="13" Name="AlertTree" >
114 91 </TreeViewItem>
115   - <TreeViewItem Header="Help"
116   - FontSize="13"
117   - Name="HelpTree"
118   - Selected="btnMenu_UnselectedSet"
119   - Unselected="btnMenu_UnselectedSet">
  92 + <TreeViewItem Header="Help" FontSize="13">
120 93 </TreeViewItem>
121 94 <TreeViewItem Header="[+New Project]"
122 95 FontSize="13"
sources/RoboforkApp/RoboforkMenuView.xaml.cs
... ... @@ -13,6 +13,7 @@
13 13 using System.Windows.Media.Imaging;
14 14 using System.Windows.Shapes;
15 15 using RoboforkApp.Commons;
  16 +using RoboforkApp.View;
16 17  
17 18 namespace RoboforkApp
18 19 {
19 20  
... ... @@ -169,9 +170,19 @@
169 170 LoadInfoNode();
170 171 break;
171 172  
  173 + case "ParameterTree":
  174 + DoBeginSetParameter();
  175 + break;
  176 +
172 177 default:
173 178 break;
174 179 }
  180 + }
  181 + private void DoBeginSetParameter()
  182 + {
  183 +
  184 + AddParameter parameterWindow = new AddParameter();
  185 + parameterWindow.ShowDialog();
175 186 }
176 187  
177 188 private void DoBeginSetSchedule()
sources/RoboforkApp/View/AddNodeView.xaml
... ... @@ -16,15 +16,15 @@
16 16 <ColumnDefinition Width="2*"/>
17 17 </Grid.ColumnDefinitions>
18 18  
19   - <Label Content="Do You Want To Add This Node?" Grid.ColumnSpan="3" FontSize="14" Margin="10,0,0,0"/>
20   - <Label Grid.Row="1" Grid.Column="0" Content="Name Node" FontSize="14" Margin="10,0,0,0"/>
21   - <TextBox Grid.Row="1" Grid.Column="1" Grid.ColumnSpan="2" Name="txtNamNode" FontSize="14" MaxLength="16" TabIndex="0" Margin="5,5,10,5" VerticalContentAlignment="Center"/>
  19 + <Label Content="Do You Want To Add This Node?" Grid.ColumnSpan="3" FontSize="13" Margin="10,0,0,0"/>
  20 + <Label Grid.Row="1" Grid.Column="0" Content="Name Node" FontSize="13" Margin="10,0,0,0"/>
  21 + <TextBox Grid.Row="1" Grid.Column="1" Grid.ColumnSpan="2" Name="txtNamNode" FontSize="13" MaxLength="16" TabIndex="0" Margin="5,5,10,5" VerticalContentAlignment="Center"/>
22 22  
23 23 <Button Grid.Row="2" Grid.Column="0" Grid.ColumnSpan="2" Name="btnAddNode" Tag="AddNode" Margin="10,10,5,0" Click="btnAddNode_Click">
24   - <TextBlock Text="OK" FontSize="14"/>
  24 + <TextBlock Text="OK" FontSize="13"/>
25 25 </Button>
26 26 <Button Grid.Row="2" Grid.Column="2" Name="btnCancel" Tag="AddNode" Margin="5,10,10,0" Click="btnCancel_Click">
27   - <TextBlock Text="Cancel" FontSize="14"/>
  27 + <TextBlock Text="Cancel" FontSize="13"/>
28 28 </Button>
29 29 </Grid>
30 30 </Window>
sources/RoboforkApp/View/AddParameter.xaml
  1 +๏ปฟ<Window x:Class="RoboforkApp.View.AddParameter"
  2 + xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3 + xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4 + xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5 + xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6 + xmlns:local="clr-namespace:RoboforkApp.View"
  7 + mc:Ignorable="d"
  8 + Title="AddParameter" Height="350" Width="300" ResizeMode="NoResize" WindowStartupLocation="CenterScreen">
  9 + <Grid>
  10 +
  11 + <Grid.RowDefinitions>
  12 + <RowDefinition Height="1*"/>
  13 + <RowDefinition Height="1*"/>
  14 + <RowDefinition Height="1*"/>
  15 + <RowDefinition Height="1*"/>
  16 + <RowDefinition Height="1*"/>
  17 + <RowDefinition Height="1*"/>
  18 + <RowDefinition Height="1*"/>
  19 + <RowDefinition Height="1*"/>
  20 + <RowDefinition Height="1*"/>
  21 + <RowDefinition Height="0.5*"/>
  22 + <RowDefinition Height="1*"/>
  23 + <RowDefinition Height="0.5*"/>
  24 + </Grid.RowDefinitions>
  25 + <Grid.ColumnDefinitions>
  26 + <ColumnDefinition Width="0.1*"/>
  27 + <ColumnDefinition Width="*"/>
  28 + <ColumnDefinition Width="0.1*"/>
  29 + </Grid.ColumnDefinitions>
  30 +
  31 + <Label Grid.Row="0" Grid.Column="1" Content="Parameter" FontSize="15" Margin="0,0,0,0" VerticalContentAlignment="Center" HorizontalContentAlignment="Center"/>
  32 + <Label Grid.Row="1" Grid.Column="1" Content="Mode Name" FontSize="13" Margin="0,0,0,0"/>
  33 + <TextBox Grid.Row="2" Grid.Column="1" Name="txtModeName" FontSize="13" MaxLength="16" TabIndex="0" VerticalContentAlignment="Center"/>
  34 +
  35 + <Label Grid.Row="3" Grid.Column="1" Content="Set Item Name" FontSize="13" Margin="0,0,0,0"/>
  36 + <TextBox Grid.Row="4" Grid.Column="1" Name="txtSetItemName" FontSize="13" MaxLength="16" TabIndex="0" VerticalContentAlignment="Center"/>
  37 +
  38 + <Label Grid.Row="5" Grid.Column="1" Content="Set Item Code" FontSize="13" Margin="0,0,0,0"/>
  39 + <TextBox Grid.Row="6" Grid.Column="1" Name="txtSetItemCode" FontSize="13" MaxLength="16" TabIndex="0" VerticalContentAlignment="Center"/>
  40 +
  41 + <Label Grid.Row="7" Grid.Column="1" Content="Set Item unit" FontSize="13" Margin="0,0,0,0"/>
  42 + <TextBox Grid.Row="8" Grid.Column="1" Name="txtSetItemunit" FontSize="13" MaxLength="16" TabIndex="0" VerticalContentAlignment="Center"/>
  43 + <Grid Grid.Row="10" Grid.Column="1">
  44 + <Grid.ColumnDefinitions>
  45 + <ColumnDefinition Width="*"/>
  46 + <ColumnDefinition Width="*"/>
  47 + </Grid.ColumnDefinitions>
  48 +
  49 + <Button Grid.Row="0" Grid.Column="0" Name="btnAddParameter" Tag="AddNode" Margin="0,0,5,0" Click="btnAddParameter_Click">
  50 + <TextBlock Text="Add Parameter" FontSize="13"/>
  51 + </Button>
  52 +
  53 + <Button Grid.Row="0" Grid.Column="1" Name="btnCancel" Tag="AddNode" Margin="5,0,0,0" Click="btnCancel_Click">
  54 + <TextBlock Text="Cancel" FontSize="13"/>
  55 + </Button>
  56 + </Grid>
  57 + </Grid>
  58 +</Window>
sources/RoboforkApp/View/AddParameter.xaml.cs
  1 +๏ปฟusing System;
  2 +using System.Collections.Generic;
  3 +using System.Linq;
  4 +using System.Text;
  5 +using System.Threading.Tasks;
  6 +using System.Windows;
  7 +using System.Windows.Controls;
  8 +using System.Windows.Data;
  9 +using System.Windows.Documents;
  10 +using System.Windows.Input;
  11 +using System.Windows.Media;
  12 +using System.Windows.Media.Imaging;
  13 +using System.Windows.Shapes;
  14 +
  15 +namespace RoboforkApp.View
  16 +{
  17 + /// <summary>
  18 + /// Interaction logic for AddParameter.xaml
  19 + /// </summary>
  20 + public partial class AddParameter : Window
  21 + {
  22 + public AddParameter()
  23 + {
  24 + InitializeComponent();
  25 + }
  26 +
  27 + private void btnAddParameter_Click(object sender, RoutedEventArgs e)
  28 + {
  29 + this.Close();
  30 + }
  31 +
  32 + private void btnCancel_Click(object sender, RoutedEventArgs e)
  33 + {
  34 + this.Close();
  35 + }
  36 + }
  37 +}
sources/RoboforkApp/bin/Debug/RboforkApp.exe
No preview for this file type
sources/RoboforkApp/bin/Debug/RboforkApp.pdb
No preview for this file type
sources/RoboforkApp/obj/Debug/RboforkApp.exe
No preview for this file type
sources/RoboforkApp/obj/Debug/RboforkApp.g.resources
No preview for this file type
sources/RoboforkApp/obj/Debug/RboforkApp.pdb
No preview for this file type
sources/RoboforkApp/obj/Debug/RboforkApp_MarkupCompile.cache
... ... @@ -10,11 +10,11 @@
10 10 false
11 11 DEBUG;TRACE
12 12 E:\02_Project\Du an Anh Dai\Robofork5\sources\RoboforkApp\App.xaml
13   -26741552706
  13 +27-814088365
14 14  
15   -36669086903
  15 +37-2061963540
16 16 15305039836
17   -Stencils\BasicShapes.xaml;Stencils\FlowChartSymbols.xaml;Stencils\RegelungstechnikSymbole.xaml;Stencils\SymbolStencils.xaml;UserControls\simulationRobo.xaml;View\AddNodeView.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;View\UpdateNodeView.xaml;
  17 +Stencils\BasicShapes.xaml;Stencils\FlowChartSymbols.xaml;Stencils\RegelungstechnikSymbole.xaml;Stencils\SymbolStencils.xaml;UserControls\simulationRobo.xaml;View\AddNodeView.xaml;View\AddParameter.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;View\UpdateNodeView.xaml;
18 18  
19 19 False
sources/RoboforkApp/obj/Debug/RboforkApp_MarkupCompile.i.cache
... ... @@ -10,11 +10,11 @@
10 10 false
11 11 DEBUG;TRACE
12 12 E:\02_Project\Du an Anh Dai\Robofork5\sources\RoboforkApp\App.xaml
13   -26741552706
  13 +27-814088365
14 14  
15   -40-390295508
  15 +411173621345
16 16 15305039836
17   -Stencils\BasicShapes.xaml;Stencils\FlowChartSymbols.xaml;Stencils\RegelungstechnikSymbole.xaml;Stencils\SymbolStencils.xaml;UserControls\simulationRobo.xaml;View\AddNodeView.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;View\UpdateNodeView.xaml;
  17 +Stencils\BasicShapes.xaml;Stencils\FlowChartSymbols.xaml;Stencils\RegelungstechnikSymbole.xaml;Stencils\SymbolStencils.xaml;UserControls\simulationRobo.xaml;View\AddNodeView.xaml;View\AddParameter.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;View\UpdateNodeView.xaml;
18 18  
19   -False
  19 +True
sources/RoboforkApp/obj/Debug/RboforkApp_MarkupCompile.i.lref
  1 +๏ปฟ
  2 +
  3 +FE:\02_Project\Du an Anh Dai\Robofork5\sources\RoboforkApp\RoboforkMenuView.xaml;;
sources/RoboforkApp/obj/Debug/RboforkApp_MarkupCompile.lref
... ... @@ -10,4 +10,5 @@
10 10 FE:\02_Project\Du an Anh Dai\Robofork5\sources\RoboforkApp\Resources\Toolbox.xaml;;
11 11 FE:\02_Project\Du an Anh Dai\Robofork5\sources\RoboforkApp\Resources\ZoomBox.xaml;;
12 12 FE:\02_Project\Du an Anh Dai\Robofork5\sources\RoboforkApp\RoboforkMenuView.xaml;;
  13 +FE:\02_Project\Du an Anh Dai\Robofork5\sources\RoboforkApp\View\AddParameter.xaml;;
sources/RoboforkApp/obj/Debug/RoboforkApp.csproj.FileListAbsolute.txt
... ... @@ -566,4 +566,6 @@
566 566 E:\02_Project\Du an Anh Dai\Robofork5\sources\RoboforkApp\obj\Debug\RboforkApp.g.resources
567 567 E:\02_Project\Du an Anh Dai\Robofork5\sources\RoboforkApp\obj\Debug\RboforkApp.exe
568 568 E:\02_Project\Du an Anh Dai\Robofork5\sources\RoboforkApp\obj\Debug\RboforkApp.pdb
  569 +E:\02_Project\Du an Anh Dai\Robofork5\sources\RoboforkApp\obj\Debug\View\AddParameter.g.cs
  570 +E:\02_Project\Du an Anh Dai\Robofork5\sources\RoboforkApp\obj\Debug\View\AddParameter.baml
sources/RoboforkApp/obj/Debug/RoboforkMenuView.baml
No preview for this file type
sources/RoboforkApp/obj/Debug/RoboforkMenuView.g.cs
1   -๏ปฟ#pragma checksum "..\..\RoboforkMenuView.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "1E44DDA2942C2829E425FC11C3E73C1E"
  1 +๏ปฟ#pragma checksum "..\..\RoboforkMenuView.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "D60D0E49C547E58BDEF88699407291B3"
2 2 //------------------------------------------------------------------------------
3 3 // <auto-generated>
4 4 // This code was generated by a tool.
... ... @@ -153,7 +153,7 @@
153 153 #line hidden
154 154  
155 155  
156   - #line 85 "..\..\RoboforkMenuView.xaml"
  156 + #line 80 "..\..\RoboforkMenuView.xaml"
157 157 [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
158 158 internal System.Windows.Controls.TreeViewItem ConnectTree;
159 159  
... ... @@ -161,7 +161,7 @@
161 161 #line hidden
162 162  
163 163  
164   - #line 91 "..\..\RoboforkMenuView.xaml"
  164 + #line 81 "..\..\RoboforkMenuView.xaml"
165 165 [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
166 166 internal System.Windows.Controls.TreeViewItem ParameterTree;
167 167  
... ... @@ -169,7 +169,7 @@
169 169 #line hidden
170 170  
171 171  
172   - #line 102 "..\..\RoboforkMenuView.xaml"
  172 + #line 85 "..\..\RoboforkMenuView.xaml"
173 173 [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
174 174 internal System.Windows.Controls.TreeViewItem LoggingTree;
175 175  
... ... @@ -177,7 +177,7 @@
177 177 #line hidden
178 178  
179 179  
180   - #line 111 "..\..\RoboforkMenuView.xaml"
  180 + #line 90 "..\..\RoboforkMenuView.xaml"
181 181 [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
182 182 internal System.Windows.Controls.TreeViewItem AlertTree;
183 183  
184 184  
185 185  
... ... @@ -185,23 +185,15 @@
185 185 #line hidden
186 186  
187 187  
188   - #line 117 "..\..\RoboforkMenuView.xaml"
  188 + #line 96 "..\..\RoboforkMenuView.xaml"
189 189 [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
190   - internal System.Windows.Controls.TreeViewItem HelpTree;
191   -
192   - #line default
193   - #line hidden
194   -
195   -
196   - #line 123 "..\..\RoboforkMenuView.xaml"
197   - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
198 190 internal System.Windows.Controls.TreeViewItem NewProjectTree;
199 191  
200 192 #line default
201 193 #line hidden
202 194  
203 195  
204   - #line 141 "..\..\RoboforkMenuView.xaml"
  196 + #line 114 "..\..\RoboforkMenuView.xaml"
205 197 [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
206 198 internal System.Windows.Controls.TabControl MainTab;
207 199  
... ... @@ -209,7 +201,7 @@
209 201 #line hidden
210 202  
211 203  
212   - #line 144 "..\..\RoboforkMenuView.xaml"
  204 + #line 117 "..\..\RoboforkMenuView.xaml"
213 205 [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
214 206 internal System.Windows.Controls.TabItem TabMap;
215 207  
... ... @@ -217,7 +209,7 @@
217 209 #line hidden
218 210  
219 211  
220   - #line 157 "..\..\RoboforkMenuView.xaml"
  212 + #line 130 "..\..\RoboforkMenuView.xaml"
221 213 [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
222 214 internal System.Windows.Controls.Grid GridMap;
223 215  
... ... @@ -225,7 +217,7 @@
225 217 #line hidden
226 218  
227 219  
228   - #line 166 "..\..\RoboforkMenuView.xaml"
  220 + #line 139 "..\..\RoboforkMenuView.xaml"
229 221 [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
230 222 internal System.Windows.Controls.Grid GridCanVas;
231 223  
... ... @@ -233,7 +225,7 @@
233 225 #line hidden
234 226  
235 227  
236   - #line 169 "..\..\RoboforkMenuView.xaml"
  228 + #line 142 "..\..\RoboforkMenuView.xaml"
237 229 [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
238 230 internal RoboforkApp.DesignerCanvas MyDesignerCanvas;
239 231  
... ... @@ -241,7 +233,7 @@
241 233 #line hidden
242 234  
243 235  
244   - #line 177 "..\..\RoboforkMenuView.xaml"
  236 + #line 150 "..\..\RoboforkMenuView.xaml"
245 237 [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
246 238 internal System.Windows.Controls.Grid MCGrid;
247 239  
... ... @@ -249,7 +241,7 @@
249 241 #line hidden
250 242  
251 243  
252   - #line 239 "..\..\RoboforkMenuView.xaml"
  244 + #line 212 "..\..\RoboforkMenuView.xaml"
253 245 [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
254 246 internal System.Windows.Controls.Grid grdRouteInfo;
255 247  
... ... @@ -257,7 +249,7 @@
257 249 #line hidden
258 250  
259 251  
260   - #line 313 "..\..\RoboforkMenuView.xaml"
  252 + #line 286 "..\..\RoboforkMenuView.xaml"
261 253 [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
262 254 internal System.Windows.Controls.Label LabelSchedule;
263 255  
... ... @@ -265,7 +257,7 @@
265 257 #line hidden
266 258  
267 259  
268   - #line 317 "..\..\RoboforkMenuView.xaml"
  260 + #line 290 "..\..\RoboforkMenuView.xaml"
269 261 [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
270 262 internal RoboforkApp.ScheduleCanvas MyScheduleCanvas;
271 263  
... ... @@ -273,7 +265,7 @@
273 265 #line hidden
274 266  
275 267  
276   - #line 325 "..\..\RoboforkMenuView.xaml"
  268 + #line 298 "..\..\RoboforkMenuView.xaml"
277 269 [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
278 270 internal System.Windows.Controls.Grid MCGridShedule;
279 271  
... ... @@ -281,7 +273,7 @@
281 273 #line hidden
282 274  
283 275  
284   - #line 351 "..\..\RoboforkMenuView.xaml"
  276 + #line 324 "..\..\RoboforkMenuView.xaml"
285 277 [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
286 278 internal System.Windows.Controls.Label WorkVehicle;
287 279  
... ... @@ -289,7 +281,7 @@
289 281 #line hidden
290 282  
291 283  
292   - #line 356 "..\..\RoboforkMenuView.xaml"
  284 + #line 329 "..\..\RoboforkMenuView.xaml"
293 285 [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
294 286 internal System.Windows.Controls.TabItem TabWork;
295 287  
... ... @@ -297,7 +289,7 @@
297 289 #line hidden
298 290  
299 291  
300   - #line 363 "..\..\RoboforkMenuView.xaml"
  292 + #line 336 "..\..\RoboforkMenuView.xaml"
301 293 [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
302 294 internal System.Windows.Controls.TabItem TabSchedule;
303 295  
304 296  
305 297  
306 298  
307 299  
308 300  
309 301  
310 302  
311 303  
312 304  
313 305  
314 306  
315 307  
316 308  
317 309  
318 310  
319 311  
320 312  
321 313  
322 314  
323 315  
324 316  
... ... @@ -468,146 +460,77 @@
468 460 return;
469 461 case 15:
470 462 this.WorkAddTree = ((System.Windows.Controls.TreeViewItem)(target));
471   -
472   - #line 73 "..\..\RoboforkMenuView.xaml"
473   - this.WorkAddTree.Selected += new System.Windows.RoutedEventHandler(this.btnMenu_UnselectedSet);
474   -
475   - #line default
476   - #line hidden
477   -
478   - #line 74 "..\..\RoboforkMenuView.xaml"
479   - this.WorkAddTree.Unselected += new System.Windows.RoutedEventHandler(this.btnMenu_UnselectedSet);
480   -
481   - #line default
482   - #line hidden
483 463 return;
484 464 case 16:
485 465 this.ConnectTree = ((System.Windows.Controls.TreeViewItem)(target));
486   -
487   - #line 86 "..\..\RoboforkMenuView.xaml"
488   - this.ConnectTree.Selected += new System.Windows.RoutedEventHandler(this.btnMenu_UnselectedSet);
489   -
490   - #line default
491   - #line hidden
492   -
493   - #line 87 "..\..\RoboforkMenuView.xaml"
494   - this.ConnectTree.Unselected += new System.Windows.RoutedEventHandler(this.btnMenu_UnselectedSet);
495   -
496   - #line default
497   - #line hidden
498 466 return;
499 467 case 17:
500 468 this.ParameterTree = ((System.Windows.Controls.TreeViewItem)(target));
501 469  
502   - #line 92 "..\..\RoboforkMenuView.xaml"
503   - this.ParameterTree.Selected += new System.Windows.RoutedEventHandler(this.btnMenu_UnselectedSet);
  470 + #line 81 "..\..\RoboforkMenuView.xaml"
  471 + this.ParameterTree.Selected += new System.Windows.RoutedEventHandler(this.btnMenu_Selected);
504 472  
505 473 #line default
506 474 #line hidden
507   -
508   - #line 93 "..\..\RoboforkMenuView.xaml"
509   - this.ParameterTree.Unselected += new System.Windows.RoutedEventHandler(this.btnMenu_UnselectedSet);
510   -
511   - #line default
512   - #line hidden
513 475 return;
514 476 case 18:
515 477 this.LoggingTree = ((System.Windows.Controls.TreeViewItem)(target));
516   -
517   - #line 103 "..\..\RoboforkMenuView.xaml"
518   - this.LoggingTree.Selected += new System.Windows.RoutedEventHandler(this.btnMenu_UnselectedSet);
519   -
520   - #line default
521   - #line hidden
522   -
523   - #line 104 "..\..\RoboforkMenuView.xaml"
524   - this.LoggingTree.Unselected += new System.Windows.RoutedEventHandler(this.btnMenu_UnselectedSet);
525   -
526   - #line default
527   - #line hidden
528 478 return;
529 479 case 19:
530 480 this.AlertTree = ((System.Windows.Controls.TreeViewItem)(target));
531   -
532   - #line 112 "..\..\RoboforkMenuView.xaml"
533   - this.AlertTree.Selected += new System.Windows.RoutedEventHandler(this.btnMenu_UnselectedSet);
534   -
535   - #line default
536   - #line hidden
537   -
538   - #line 113 "..\..\RoboforkMenuView.xaml"
539   - this.AlertTree.Unselected += new System.Windows.RoutedEventHandler(this.btnMenu_UnselectedSet);
540   -
541   - #line default
542   - #line hidden
543 481 return;
544 482 case 20:
545   - this.HelpTree = ((System.Windows.Controls.TreeViewItem)(target));
546   -
547   - #line 118 "..\..\RoboforkMenuView.xaml"
548   - this.HelpTree.Selected += new System.Windows.RoutedEventHandler(this.btnMenu_UnselectedSet);
549   -
550   - #line default
551   - #line hidden
552   -
553   - #line 119 "..\..\RoboforkMenuView.xaml"
554   - this.HelpTree.Unselected += new System.Windows.RoutedEventHandler(this.btnMenu_UnselectedSet);
555   -
556   - #line default
557   - #line hidden
558   - return;
559   - case 21:
560 483 this.NewProjectTree = ((System.Windows.Controls.TreeViewItem)(target));
561 484  
562   - #line 124 "..\..\RoboforkMenuView.xaml"
  485 + #line 97 "..\..\RoboforkMenuView.xaml"
563 486 this.NewProjectTree.Selected += new System.Windows.RoutedEventHandler(this.btnProjectItem_Selected);
564 487  
565 488 #line default
566 489 #line hidden
567 490  
568   - #line 125 "..\..\RoboforkMenuView.xaml"
  491 + #line 98 "..\..\RoboforkMenuView.xaml"
569 492 this.NewProjectTree.Unselected += new System.Windows.RoutedEventHandler(this.btnMenu_UnselectedSet);
570 493  
571 494 #line default
572 495 #line hidden
573 496 return;
574   - case 22:
  497 + case 21:
575 498 this.MainTab = ((System.Windows.Controls.TabControl)(target));
576 499 return;
577   - case 23:
  500 + case 22:
578 501 this.TabMap = ((System.Windows.Controls.TabItem)(target));
579 502 return;
580   - case 24:
  503 + case 23:
581 504 this.GridMap = ((System.Windows.Controls.Grid)(target));
582 505 return;
583   - case 25:
  506 + case 24:
584 507 this.GridCanVas = ((System.Windows.Controls.Grid)(target));
585 508 return;
586   - case 26:
  509 + case 25:
587 510 this.MyDesignerCanvas = ((RoboforkApp.DesignerCanvas)(target));
588 511 return;
589   - case 27:
  512 + case 26:
590 513 this.MCGrid = ((System.Windows.Controls.Grid)(target));
591 514 return;
592   - case 28:
  515 + case 27:
593 516 this.grdRouteInfo = ((System.Windows.Controls.Grid)(target));
594 517 return;
595   - case 29:
  518 + case 28:
596 519 this.LabelSchedule = ((System.Windows.Controls.Label)(target));
597 520 return;
598   - case 30:
  521 + case 29:
599 522 this.MyScheduleCanvas = ((RoboforkApp.ScheduleCanvas)(target));
600 523 return;
601   - case 31:
  524 + case 30:
602 525 this.MCGridShedule = ((System.Windows.Controls.Grid)(target));
603 526 return;
604   - case 32:
  527 + case 31:
605 528 this.WorkVehicle = ((System.Windows.Controls.Label)(target));
606 529 return;
607   - case 33:
  530 + case 32:
608 531 this.TabWork = ((System.Windows.Controls.TabItem)(target));
609 532 return;
610   - case 34:
  533 + case 33:
611 534 this.TabSchedule = ((System.Windows.Controls.TabItem)(target));
612 535 return;
613 536 }
sources/RoboforkApp/obj/Debug/RoboforkMenuView.g.i.cs
1   -๏ปฟ#pragma checksum "..\..\RoboforkMenuView.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "1E44DDA2942C2829E425FC11C3E73C1E"
  1 +๏ปฟ#pragma checksum "..\..\RoboforkMenuView.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "D60D0E49C547E58BDEF88699407291B3"
2 2 //------------------------------------------------------------------------------
3 3 // <auto-generated>
4 4 // This code was generated by a tool.
... ... @@ -153,7 +153,7 @@
153 153 #line hidden
154 154  
155 155  
156   - #line 85 "..\..\RoboforkMenuView.xaml"
  156 + #line 80 "..\..\RoboforkMenuView.xaml"
157 157 [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
158 158 internal System.Windows.Controls.TreeViewItem ConnectTree;
159 159  
... ... @@ -161,7 +161,7 @@
161 161 #line hidden
162 162  
163 163  
164   - #line 91 "..\..\RoboforkMenuView.xaml"
  164 + #line 81 "..\..\RoboforkMenuView.xaml"
165 165 [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
166 166 internal System.Windows.Controls.TreeViewItem ParameterTree;
167 167  
... ... @@ -169,7 +169,7 @@
169 169 #line hidden
170 170  
171 171  
172   - #line 102 "..\..\RoboforkMenuView.xaml"
  172 + #line 85 "..\..\RoboforkMenuView.xaml"
173 173 [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
174 174 internal System.Windows.Controls.TreeViewItem LoggingTree;
175 175  
... ... @@ -177,7 +177,7 @@
177 177 #line hidden
178 178  
179 179  
180   - #line 111 "..\..\RoboforkMenuView.xaml"
  180 + #line 90 "..\..\RoboforkMenuView.xaml"
181 181 [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
182 182 internal System.Windows.Controls.TreeViewItem AlertTree;
183 183  
184 184  
185 185  
... ... @@ -185,23 +185,15 @@
185 185 #line hidden
186 186  
187 187  
188   - #line 117 "..\..\RoboforkMenuView.xaml"
  188 + #line 96 "..\..\RoboforkMenuView.xaml"
189 189 [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
190   - internal System.Windows.Controls.TreeViewItem HelpTree;
191   -
192   - #line default
193   - #line hidden
194   -
195   -
196   - #line 123 "..\..\RoboforkMenuView.xaml"
197   - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
198 190 internal System.Windows.Controls.TreeViewItem NewProjectTree;
199 191  
200 192 #line default
201 193 #line hidden
202 194  
203 195  
204   - #line 141 "..\..\RoboforkMenuView.xaml"
  196 + #line 114 "..\..\RoboforkMenuView.xaml"
205 197 [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
206 198 internal System.Windows.Controls.TabControl MainTab;
207 199  
... ... @@ -209,7 +201,7 @@
209 201 #line hidden
210 202  
211 203  
212   - #line 144 "..\..\RoboforkMenuView.xaml"
  204 + #line 117 "..\..\RoboforkMenuView.xaml"
213 205 [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
214 206 internal System.Windows.Controls.TabItem TabMap;
215 207  
... ... @@ -217,7 +209,7 @@
217 209 #line hidden
218 210  
219 211  
220   - #line 157 "..\..\RoboforkMenuView.xaml"
  212 + #line 130 "..\..\RoboforkMenuView.xaml"
221 213 [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
222 214 internal System.Windows.Controls.Grid GridMap;
223 215  
... ... @@ -225,7 +217,7 @@
225 217 #line hidden
226 218  
227 219  
228   - #line 166 "..\..\RoboforkMenuView.xaml"
  220 + #line 139 "..\..\RoboforkMenuView.xaml"
229 221 [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
230 222 internal System.Windows.Controls.Grid GridCanVas;
231 223  
... ... @@ -233,7 +225,7 @@
233 225 #line hidden
234 226  
235 227  
236   - #line 169 "..\..\RoboforkMenuView.xaml"
  228 + #line 142 "..\..\RoboforkMenuView.xaml"
237 229 [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
238 230 internal RoboforkApp.DesignerCanvas MyDesignerCanvas;
239 231  
... ... @@ -241,7 +233,7 @@
241 233 #line hidden
242 234  
243 235  
244   - #line 177 "..\..\RoboforkMenuView.xaml"
  236 + #line 150 "..\..\RoboforkMenuView.xaml"
245 237 [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
246 238 internal System.Windows.Controls.Grid MCGrid;
247 239  
... ... @@ -249,7 +241,7 @@
249 241 #line hidden
250 242  
251 243  
252   - #line 239 "..\..\RoboforkMenuView.xaml"
  244 + #line 212 "..\..\RoboforkMenuView.xaml"
253 245 [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
254 246 internal System.Windows.Controls.Grid grdRouteInfo;
255 247  
... ... @@ -257,7 +249,7 @@
257 249 #line hidden
258 250  
259 251  
260   - #line 313 "..\..\RoboforkMenuView.xaml"
  252 + #line 286 "..\..\RoboforkMenuView.xaml"
261 253 [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
262 254 internal System.Windows.Controls.Label LabelSchedule;
263 255  
... ... @@ -265,7 +257,7 @@
265 257 #line hidden
266 258  
267 259  
268   - #line 317 "..\..\RoboforkMenuView.xaml"
  260 + #line 290 "..\..\RoboforkMenuView.xaml"
269 261 [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
270 262 internal RoboforkApp.ScheduleCanvas MyScheduleCanvas;
271 263  
... ... @@ -273,7 +265,7 @@
273 265 #line hidden
274 266  
275 267  
276   - #line 325 "..\..\RoboforkMenuView.xaml"
  268 + #line 298 "..\..\RoboforkMenuView.xaml"
277 269 [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
278 270 internal System.Windows.Controls.Grid MCGridShedule;
279 271  
... ... @@ -281,7 +273,7 @@
281 273 #line hidden
282 274  
283 275  
284   - #line 351 "..\..\RoboforkMenuView.xaml"
  276 + #line 324 "..\..\RoboforkMenuView.xaml"
285 277 [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
286 278 internal System.Windows.Controls.Label WorkVehicle;
287 279  
... ... @@ -289,7 +281,7 @@
289 281 #line hidden
290 282  
291 283  
292   - #line 356 "..\..\RoboforkMenuView.xaml"
  284 + #line 329 "..\..\RoboforkMenuView.xaml"
293 285 [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
294 286 internal System.Windows.Controls.TabItem TabWork;
295 287  
... ... @@ -297,7 +289,7 @@
297 289 #line hidden
298 290  
299 291  
300   - #line 363 "..\..\RoboforkMenuView.xaml"
  292 + #line 336 "..\..\RoboforkMenuView.xaml"
301 293 [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
302 294 internal System.Windows.Controls.TabItem TabSchedule;
303 295  
304 296  
305 297  
306 298  
307 299  
308 300  
309 301  
310 302  
311 303  
312 304  
313 305  
314 306  
315 307  
316 308  
317 309  
318 310  
319 311  
320 312  
321 313  
322 314  
323 315  
324 316  
... ... @@ -468,146 +460,77 @@
468 460 return;
469 461 case 15:
470 462 this.WorkAddTree = ((System.Windows.Controls.TreeViewItem)(target));
471   -
472   - #line 73 "..\..\RoboforkMenuView.xaml"
473   - this.WorkAddTree.Selected += new System.Windows.RoutedEventHandler(this.btnMenu_UnselectedSet);
474   -
475   - #line default
476   - #line hidden
477   -
478   - #line 74 "..\..\RoboforkMenuView.xaml"
479   - this.WorkAddTree.Unselected += new System.Windows.RoutedEventHandler(this.btnMenu_UnselectedSet);
480   -
481   - #line default
482   - #line hidden
483 463 return;
484 464 case 16:
485 465 this.ConnectTree = ((System.Windows.Controls.TreeViewItem)(target));
486   -
487   - #line 86 "..\..\RoboforkMenuView.xaml"
488   - this.ConnectTree.Selected += new System.Windows.RoutedEventHandler(this.btnMenu_UnselectedSet);
489   -
490   - #line default
491   - #line hidden
492   -
493   - #line 87 "..\..\RoboforkMenuView.xaml"
494   - this.ConnectTree.Unselected += new System.Windows.RoutedEventHandler(this.btnMenu_UnselectedSet);
495   -
496   - #line default
497   - #line hidden
498 466 return;
499 467 case 17:
500 468 this.ParameterTree = ((System.Windows.Controls.TreeViewItem)(target));
501 469  
502   - #line 92 "..\..\RoboforkMenuView.xaml"
503   - this.ParameterTree.Selected += new System.Windows.RoutedEventHandler(this.btnMenu_UnselectedSet);
  470 + #line 81 "..\..\RoboforkMenuView.xaml"
  471 + this.ParameterTree.Selected += new System.Windows.RoutedEventHandler(this.btnMenu_Selected);
504 472  
505 473 #line default
506 474 #line hidden
507   -
508   - #line 93 "..\..\RoboforkMenuView.xaml"
509   - this.ParameterTree.Unselected += new System.Windows.RoutedEventHandler(this.btnMenu_UnselectedSet);
510   -
511   - #line default
512   - #line hidden
513 475 return;
514 476 case 18:
515 477 this.LoggingTree = ((System.Windows.Controls.TreeViewItem)(target));
516   -
517   - #line 103 "..\..\RoboforkMenuView.xaml"
518   - this.LoggingTree.Selected += new System.Windows.RoutedEventHandler(this.btnMenu_UnselectedSet);
519   -
520   - #line default
521   - #line hidden
522   -
523   - #line 104 "..\..\RoboforkMenuView.xaml"
524   - this.LoggingTree.Unselected += new System.Windows.RoutedEventHandler(this.btnMenu_UnselectedSet);
525   -
526   - #line default
527   - #line hidden
528 478 return;
529 479 case 19:
530 480 this.AlertTree = ((System.Windows.Controls.TreeViewItem)(target));
531   -
532   - #line 112 "..\..\RoboforkMenuView.xaml"
533   - this.AlertTree.Selected += new System.Windows.RoutedEventHandler(this.btnMenu_UnselectedSet);
534   -
535   - #line default
536   - #line hidden
537   -
538   - #line 113 "..\..\RoboforkMenuView.xaml"
539   - this.AlertTree.Unselected += new System.Windows.RoutedEventHandler(this.btnMenu_UnselectedSet);
540   -
541   - #line default
542   - #line hidden
543 481 return;
544 482 case 20:
545   - this.HelpTree = ((System.Windows.Controls.TreeViewItem)(target));
546   -
547   - #line 118 "..\..\RoboforkMenuView.xaml"
548   - this.HelpTree.Selected += new System.Windows.RoutedEventHandler(this.btnMenu_UnselectedSet);
549   -
550   - #line default
551   - #line hidden
552   -
553   - #line 119 "..\..\RoboforkMenuView.xaml"
554   - this.HelpTree.Unselected += new System.Windows.RoutedEventHandler(this.btnMenu_UnselectedSet);
555   -
556   - #line default
557   - #line hidden
558   - return;
559   - case 21:
560 483 this.NewProjectTree = ((System.Windows.Controls.TreeViewItem)(target));
561 484  
562   - #line 124 "..\..\RoboforkMenuView.xaml"
  485 + #line 97 "..\..\RoboforkMenuView.xaml"
563 486 this.NewProjectTree.Selected += new System.Windows.RoutedEventHandler(this.btnProjectItem_Selected);
564 487  
565 488 #line default
566 489 #line hidden
567 490  
568   - #line 125 "..\..\RoboforkMenuView.xaml"
  491 + #line 98 "..\..\RoboforkMenuView.xaml"
569 492 this.NewProjectTree.Unselected += new System.Windows.RoutedEventHandler(this.btnMenu_UnselectedSet);
570 493  
571 494 #line default
572 495 #line hidden
573 496 return;
574   - case 22:
  497 + case 21:
575 498 this.MainTab = ((System.Windows.Controls.TabControl)(target));
576 499 return;
577   - case 23:
  500 + case 22:
578 501 this.TabMap = ((System.Windows.Controls.TabItem)(target));
579 502 return;
580   - case 24:
  503 + case 23:
581 504 this.GridMap = ((System.Windows.Controls.Grid)(target));
582 505 return;
583   - case 25:
  506 + case 24:
584 507 this.GridCanVas = ((System.Windows.Controls.Grid)(target));
585 508 return;
586   - case 26:
  509 + case 25:
587 510 this.MyDesignerCanvas = ((RoboforkApp.DesignerCanvas)(target));
588 511 return;
589   - case 27:
  512 + case 26:
590 513 this.MCGrid = ((System.Windows.Controls.Grid)(target));
591 514 return;
592   - case 28:
  515 + case 27:
593 516 this.grdRouteInfo = ((System.Windows.Controls.Grid)(target));
594 517 return;
595   - case 29:
  518 + case 28:
596 519 this.LabelSchedule = ((System.Windows.Controls.Label)(target));
597 520 return;
598   - case 30:
  521 + case 29:
599 522 this.MyScheduleCanvas = ((RoboforkApp.ScheduleCanvas)(target));
600 523 return;
601   - case 31:
  524 + case 30:
602 525 this.MCGridShedule = ((System.Windows.Controls.Grid)(target));
603 526 return;
604   - case 32:
  527 + case 31:
605 528 this.WorkVehicle = ((System.Windows.Controls.Label)(target));
606 529 return;
607   - case 33:
  530 + case 32:
608 531 this.TabWork = ((System.Windows.Controls.TabItem)(target));
609 532 return;
610   - case 34:
  533 + case 33:
611 534 this.TabSchedule = ((System.Windows.Controls.TabItem)(target));
612 535 return;
613 536 }
sources/RoboforkApp/obj/Debug/View/AddNodeView.baml
No preview for this file type
sources/RoboforkApp/obj/Debug/View/AddNodeView.g.cs
1   -๏ปฟ#pragma checksum "..\..\..\View\AddNodeView.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "52F48E381FE3944C9A01AA9C13F65DE7"
  1 +๏ปฟ#pragma checksum "..\..\..\View\AddNodeView.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "C8459A6F2D8E8DE9FD2A47FC335E7B04"
2 2 //------------------------------------------------------------------------------
3 3 // <auto-generated>
4 4 // This code was generated by a tool.
sources/RoboforkApp/obj/Debug/View/AddNodeView.g.i.cs
1   -๏ปฟ#pragma checksum "..\..\..\View\AddNodeView.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "52F48E381FE3944C9A01AA9C13F65DE7"
  1 +๏ปฟ#pragma checksum "..\..\..\View\AddNodeView.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "C8459A6F2D8E8DE9FD2A47FC335E7B04"
2 2 //------------------------------------------------------------------------------
3 3 // <auto-generated>
4 4 // This code was generated by a tool.
sources/RoboforkApp/obj/Debug/View/AddParameter.baml
No preview for this file type
sources/RoboforkApp/obj/Debug/View/AddParameter.g.cs
  1 +๏ปฟ#pragma checksum "..\..\..\View\AddParameter.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "41E5FC95268ABB56DFE43CB56579ABF3"
  2 +//------------------------------------------------------------------------------
  3 +// <auto-generated>
  4 +// This code was generated by a tool.
  5 +// Runtime Version:4.0.30319.42000
  6 +//
  7 +// Changes to this file may cause incorrect behavior and will be lost if
  8 +// the code is regenerated.
  9 +// </auto-generated>
  10 +//------------------------------------------------------------------------------
  11 +
  12 +using RoboforkApp.View;
  13 +using System;
  14 +using System.Diagnostics;
  15 +using System.Windows;
  16 +using System.Windows.Automation;
  17 +using System.Windows.Controls;
  18 +using System.Windows.Controls.Primitives;
  19 +using System.Windows.Data;
  20 +using System.Windows.Documents;
  21 +using System.Windows.Ink;
  22 +using System.Windows.Input;
  23 +using System.Windows.Markup;
  24 +using System.Windows.Media;
  25 +using System.Windows.Media.Animation;
  26 +using System.Windows.Media.Effects;
  27 +using System.Windows.Media.Imaging;
  28 +using System.Windows.Media.Media3D;
  29 +using System.Windows.Media.TextFormatting;
  30 +using System.Windows.Navigation;
  31 +using System.Windows.Shapes;
  32 +using System.Windows.Shell;
  33 +
  34 +
  35 +namespace RoboforkApp.View {
  36 +
  37 +
  38 + /// <summary>
  39 + /// AddParameter
  40 + /// </summary>
  41 + public partial class AddParameter : System.Windows.Window, System.Windows.Markup.IComponentConnector {
  42 +
  43 +
  44 + #line 33 "..\..\..\View\AddParameter.xaml"
  45 + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
  46 + internal System.Windows.Controls.TextBox txtModeName;
  47 +
  48 + #line default
  49 + #line hidden
  50 +
  51 +
  52 + #line 36 "..\..\..\View\AddParameter.xaml"
  53 + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
  54 + internal System.Windows.Controls.TextBox txtSetItemName;
  55 +
  56 + #line default
  57 + #line hidden
  58 +
  59 +
  60 + #line 39 "..\..\..\View\AddParameter.xaml"
  61 + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
  62 + internal System.Windows.Controls.TextBox txtSetItemCode;
  63 +
  64 + #line default
  65 + #line hidden
  66 +
  67 +
  68 + #line 42 "..\..\..\View\AddParameter.xaml"
  69 + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
  70 + internal System.Windows.Controls.TextBox txtSetItemunit;
  71 +
  72 + #line default
  73 + #line hidden
  74 +
  75 +
  76 + #line 49 "..\..\..\View\AddParameter.xaml"
  77 + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
  78 + internal System.Windows.Controls.Button btnAddParameter;
  79 +
  80 + #line default
  81 + #line hidden
  82 +
  83 +
  84 + #line 53 "..\..\..\View\AddParameter.xaml"
  85 + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
  86 + internal System.Windows.Controls.Button btnCancel;
  87 +
  88 + #line default
  89 + #line hidden
  90 +
  91 + private bool _contentLoaded;
  92 +
  93 + /// <summary>
  94 + /// InitializeComponent
  95 + /// </summary>
  96 + [System.Diagnostics.DebuggerNonUserCodeAttribute()]
  97 + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
  98 + public void InitializeComponent() {
  99 + if (_contentLoaded) {
  100 + return;
  101 + }
  102 + _contentLoaded = true;
  103 + System.Uri resourceLocater = new System.Uri("/RboforkApp;component/view/addparameter.xaml", System.UriKind.Relative);
  104 +
  105 + #line 1 "..\..\..\View\AddParameter.xaml"
  106 + System.Windows.Application.LoadComponent(this, resourceLocater);
  107 +
  108 + #line default
  109 + #line hidden
  110 + }
  111 +
  112 + [System.Diagnostics.DebuggerNonUserCodeAttribute()]
  113 + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
  114 + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
  115 + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
  116 + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
  117 + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
  118 + void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
  119 + switch (connectionId)
  120 + {
  121 + case 1:
  122 + this.txtModeName = ((System.Windows.Controls.TextBox)(target));
  123 + return;
  124 + case 2:
  125 + this.txtSetItemName = ((System.Windows.Controls.TextBox)(target));
  126 + return;
  127 + case 3:
  128 + this.txtSetItemCode = ((System.Windows.Controls.TextBox)(target));
  129 + return;
  130 + case 4:
  131 + this.txtSetItemunit = ((System.Windows.Controls.TextBox)(target));
  132 + return;
  133 + case 5:
  134 + this.btnAddParameter = ((System.Windows.Controls.Button)(target));
  135 +
  136 + #line 49 "..\..\..\View\AddParameter.xaml"
  137 + this.btnAddParameter.Click += new System.Windows.RoutedEventHandler(this.btnAddParameter_Click);
  138 +
  139 + #line default
  140 + #line hidden
  141 + return;
  142 + case 6:
  143 + this.btnCancel = ((System.Windows.Controls.Button)(target));
  144 +
  145 + #line 53 "..\..\..\View\AddParameter.xaml"
  146 + this.btnCancel.Click += new System.Windows.RoutedEventHandler(this.btnCancel_Click);
  147 +
  148 + #line default
  149 + #line hidden
  150 + return;
  151 + }
  152 + this._contentLoaded = true;
  153 + }
  154 + }
  155 +}
sources/RoboforkApp/obj/Debug/View/AddParameter.g.i.cs
  1 +๏ปฟ#pragma checksum "..\..\..\View\AddParameter.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "41E5FC95268ABB56DFE43CB56579ABF3"
  2 +//------------------------------------------------------------------------------
  3 +// <auto-generated>
  4 +// This code was generated by a tool.
  5 +// Runtime Version:4.0.30319.42000
  6 +//
  7 +// Changes to this file may cause incorrect behavior and will be lost if
  8 +// the code is regenerated.
  9 +// </auto-generated>
  10 +//------------------------------------------------------------------------------
  11 +
  12 +using RoboforkApp.View;
  13 +using System;
  14 +using System.Diagnostics;
  15 +using System.Windows;
  16 +using System.Windows.Automation;
  17 +using System.Windows.Controls;
  18 +using System.Windows.Controls.Primitives;
  19 +using System.Windows.Data;
  20 +using System.Windows.Documents;
  21 +using System.Windows.Ink;
  22 +using System.Windows.Input;
  23 +using System.Windows.Markup;
  24 +using System.Windows.Media;
  25 +using System.Windows.Media.Animation;
  26 +using System.Windows.Media.Effects;
  27 +using System.Windows.Media.Imaging;
  28 +using System.Windows.Media.Media3D;
  29 +using System.Windows.Media.TextFormatting;
  30 +using System.Windows.Navigation;
  31 +using System.Windows.Shapes;
  32 +using System.Windows.Shell;
  33 +
  34 +
  35 +namespace RoboforkApp.View {
  36 +
  37 +
  38 + /// <summary>
  39 + /// AddParameter
  40 + /// </summary>
  41 + public partial class AddParameter : System.Windows.Window, System.Windows.Markup.IComponentConnector {
  42 +
  43 +
  44 + #line 33 "..\..\..\View\AddParameter.xaml"
  45 + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
  46 + internal System.Windows.Controls.TextBox txtModeName;
  47 +
  48 + #line default
  49 + #line hidden
  50 +
  51 +
  52 + #line 36 "..\..\..\View\AddParameter.xaml"
  53 + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
  54 + internal System.Windows.Controls.TextBox txtSetItemName;
  55 +
  56 + #line default
  57 + #line hidden
  58 +
  59 +
  60 + #line 39 "..\..\..\View\AddParameter.xaml"
  61 + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
  62 + internal System.Windows.Controls.TextBox txtSetItemCode;
  63 +
  64 + #line default
  65 + #line hidden
  66 +
  67 +
  68 + #line 42 "..\..\..\View\AddParameter.xaml"
  69 + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
  70 + internal System.Windows.Controls.TextBox txtSetItemunit;
  71 +
  72 + #line default
  73 + #line hidden
  74 +
  75 +
  76 + #line 49 "..\..\..\View\AddParameter.xaml"
  77 + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
  78 + internal System.Windows.Controls.Button btnAddParameter;
  79 +
  80 + #line default
  81 + #line hidden
  82 +
  83 +
  84 + #line 53 "..\..\..\View\AddParameter.xaml"
  85 + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
  86 + internal System.Windows.Controls.Button btnCancel;
  87 +
  88 + #line default
  89 + #line hidden
  90 +
  91 + private bool _contentLoaded;
  92 +
  93 + /// <summary>
  94 + /// InitializeComponent
  95 + /// </summary>
  96 + [System.Diagnostics.DebuggerNonUserCodeAttribute()]
  97 + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
  98 + public void InitializeComponent() {
  99 + if (_contentLoaded) {
  100 + return;
  101 + }
  102 + _contentLoaded = true;
  103 + System.Uri resourceLocater = new System.Uri("/RboforkApp;component/view/addparameter.xaml", System.UriKind.Relative);
  104 +
  105 + #line 1 "..\..\..\View\AddParameter.xaml"
  106 + System.Windows.Application.LoadComponent(this, resourceLocater);
  107 +
  108 + #line default
  109 + #line hidden
  110 + }
  111 +
  112 + [System.Diagnostics.DebuggerNonUserCodeAttribute()]
  113 + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
  114 + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
  115 + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
  116 + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
  117 + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
  118 + void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
  119 + switch (connectionId)
  120 + {
  121 + case 1:
  122 + this.txtModeName = ((System.Windows.Controls.TextBox)(target));
  123 + return;
  124 + case 2:
  125 + this.txtSetItemName = ((System.Windows.Controls.TextBox)(target));
  126 + return;
  127 + case 3:
  128 + this.txtSetItemCode = ((System.Windows.Controls.TextBox)(target));
  129 + return;
  130 + case 4:
  131 + this.txtSetItemunit = ((System.Windows.Controls.TextBox)(target));
  132 + return;
  133 + case 5:
  134 + this.btnAddParameter = ((System.Windows.Controls.Button)(target));
  135 +
  136 + #line 49 "..\..\..\View\AddParameter.xaml"
  137 + this.btnAddParameter.Click += new System.Windows.RoutedEventHandler(this.btnAddParameter_Click);
  138 +
  139 + #line default
  140 + #line hidden
  141 + return;
  142 + case 6:
  143 + this.btnCancel = ((System.Windows.Controls.Button)(target));
  144 +
  145 + #line 53 "..\..\..\View\AddParameter.xaml"
  146 + this.btnCancel.Click += new System.Windows.RoutedEventHandler(this.btnCancel_Click);
  147 +
  148 + #line default
  149 + #line hidden
  150 + return;
  151 + }
  152 + this._contentLoaded = true;
  153 + }
  154 + }
  155 +}