Blame view

sources/RoboforkApp/RoboforkMenuView.xaml 25 KB
729be9a6d   doan   New Project
1
2
3
4
5
6
7
  <Window x:Class="RoboforkApp.RoboforkMenu"
          xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
          xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
          xmlns:s="clr-namespace:RoboforkApp"
          Title="Robofork App"
          ResizeMode="NoResize"  
          WindowStartupLocation="CenterScreen"
6870a03e3   doan   仕様 #2035 : 画面構成変更...
8
          Height="1000" Width="1300">
729be9a6d   doan   New Project
9
10
11
      <Grid ShowGridLines="False" Margin="20,20,20,20">
  
          <Grid.RowDefinitions>
6870a03e3   doan   仕様 #2035 : 画面構成変更...
12
              <RowDefinition Height="0.8*"/>
729be9a6d   doan   New Project
13
14
15
16
17
18
19
20
21
              <RowDefinition Height="10*"/>
          </Grid.RowDefinitions>
          <Border Grid.Row="0" BorderThickness="1" BorderBrush="Gray" Margin="0,0,0,5">
              <Grid ShowGridLines="False">
                  <Grid.RowDefinitions>
                      <RowDefinition Height="*"/>
                      <RowDefinition Height="*"/>
                  </Grid.RowDefinitions>
                  <Label Grid.Row="0" Content="Autonomous Planning Tool" Margin="10,0,0,0" 
6870a03e3   doan   仕様 #2035 : 画面構成変更...
22
                                              FontSize="16"/>
729be9a6d   doan   New Project
23
24
25
26
27
28
              </Grid>
          </Border>
  
          <Grid ShowGridLines="False" Grid.Row="1">
  
              <Grid.ColumnDefinitions>
6870a03e3   doan   仕様 #2035 : 画面構成変更...
29
                  <ColumnDefinition Width="1.2*"/>
729be9a6d   doan   New Project
30
31
32
33
34
35
36
37
38
39
                  <ColumnDefinition Width="20"/>
                  <ColumnDefinition Width="3*"/>
              </Grid.ColumnDefinitions>
  
              <Grid ShowGridLines="False" Grid.Column="0">
                  <Grid.RowDefinitions>
                      <RowDefinition Height="3*"/>
                      <RowDefinition Height="1*"/>
                  </Grid.RowDefinitions>
                  <Border Grid.Row="0" BorderThickness="1" BorderBrush="White" Margin="0,0,0,5">
d96c9e481   doan   Update Source Code
40
41
42
                      <TreeView Name="ProjectTreeView">
                          <TreeViewItem Name="ProjectAAA" IsExpanded="True" Header="Project [AAA工場]" FontSize="17" >
                              <TreeViewItem Name="Map" IsExpanded="True" Header="MAP" FontSize="17">
23c508ed2   toan   2045: Merge Setup...
43
44
                                  <TreeViewItem Header="Setup Restriction" FontSize="17" Name="SetupRestriction" Selected="btnMenu_Selected" Unselected="btnMenu_UnselectedSet" Tag="SetupRestriction">
                                      <!--<TreeViewItem Header="Set Start" FontSize="17" Name="btnSetStart" Selected="btnMenu_Selected" Unselected="btnMenu_UnselectedSet" Tag="SetStart"></TreeViewItem>
fa577fd8d   toan   2036: Update foll...
45
46
47
                                      <TreeViewItem Header="Set Goal" FontSize="17" Name="btnSetGoal" Selected="btnMenu_Selected" Unselected="btnMenu_UnselectedSet" Tag="SetGoal"></TreeViewItem>
                                      <TreeViewItem Header="Set Route" FontSize="17" Name="btnSetRoute" Selected="btnMenu_Selected" Unselected="btnMenu_UnselectedSet" Tag="SetupRoute"></TreeViewItem>
                                      <TreeViewItem Header="Make Root" FontSize="17" Name="btnMakeRoot" Selected="btnMenu_Selected" Unselected="btnMenu_UnselectedSet" Tag="MakeRoot"></TreeViewItem>
23c508ed2   toan   2045: Merge Setup...
48
                                      <TreeViewItem Header="Delete Route" FontSize="17" Name="btnDeleteRoute" Selected="btnMenu_Selected" Unselected="btnMenu_UnselectedSet" Tag="DeleteRoute"></TreeViewItem>-->
729be9a6d   doan   New Project
49
                                  </TreeViewItem>
b338e1ff5   nguyen_nam   no message
50
                                  <TreeViewItem IsExpanded="True" Header="Node" FontSize="17" Name="NodeTree" Selected="btnMenu_Selected" Unselected="btnMenu_UnselectedSet" Tag="NodeTree">
729be9a6d   doan   New Project
51
                                  </TreeViewItem>
6870a03e3   doan   仕様 #2035 : 画面構成変更...
52
                                  <TreeViewItem Header="--------------------"      FontSize="17">
729be9a6d   doan   New Project
53
54
                                  </TreeViewItem>
                              </TreeViewItem>
d96c9e481   doan   Update Source Code
55
56
57
58
                              <TreeViewItem Name="Vehicle" Header="Vehicle" FontSize="17">
                                  <TreeViewItem Name="FK_15" Header="FK15_#1" FontSize="17" Selected="btnVehicleItem_Selected" Tag="VehicleItem" ></TreeViewItem>
                                  <TreeViewItem Name="VehicleAdd" Header="[+]" FontSize="17"  Selected="btnVehicleItem_Selected" Tag="VehicleAddTree"></TreeViewItem>
                                  <TreeViewItem Name="UnderLine" Header="--------------------"></TreeViewItem>
729be9a6d   doan   New Project
59
                              </TreeViewItem>
ec7e1c699   toan   2063 : Commit source
60
                              <TreeViewItem Header="Work" FontSize="17">
6312cbd86   doan   Task 2062
61
                                  <TreeViewItem Header="Task patterm [FK15_#1]" FontSize="17" Name="TaskpattermTree" Selected="btnMenu_Selected" Unselected="btnMenu_UnselectedSet"  Tag="TaskpattermTree">
729be9a6d   doan   New Project
62
63
                                  </TreeViewItem>
                                  <TreeViewItem Header="[+]"
6870a03e3   doan   仕様 #2035 : 画面構成変更...
64
                                                    FontSize="17"
729be9a6d   doan   New Project
65
66
67
68
69
                                                Name="WorkAddTree" 
                                                Selected="GetWorkAddTree"
                                                Unselected="SetWorkAddTree">
                                  </TreeViewItem>
                                  <TreeViewItem Header="--------------------"
6870a03e3   doan   仕様 #2035 : 画面構成変更...
70
                                                    FontSize="17">
729be9a6d   doan   New Project
71
72
73
74
                                  </TreeViewItem>
                              </TreeViewItem>
  
                              <TreeViewItem Header="Setting"
6870a03e3   doan   仕様 #2035 : 画面構成変更...
75
                                                    FontSize="17">
729be9a6d   doan   New Project
76
                                  <TreeViewItem Header="Connect [Wi-Fi]"
6870a03e3   doan   仕様 #2035 : 画面構成変更...
77
                                                    FontSize="17"
729be9a6d   doan   New Project
78
79
80
81
82
                                                Name="ConnectTree" 
                                                Selected="GetConnectTree"
                                                Unselected="SetConnectTree">
                                  </TreeViewItem>
                                  <TreeViewItem Header="Parameter"
6870a03e3   doan   仕様 #2035 : 画面構成変更...
83
                                                    FontSize="17"
729be9a6d   doan   New Project
84
85
86
87
88
                                                Name="ParameterTree" 
                                                Selected="GetParameterTree"
                                                Unselected="SetParameterTree">
                                  </TreeViewItem>
                                  <TreeViewItem Header="--------------------"
6870a03e3   doan   仕様 #2035 : 画面構成変更...
89
                                                    FontSize="17">
729be9a6d   doan   New Project
90
91
                                  </TreeViewItem>
                              </TreeViewItem>
23c508ed2   toan   2045: Merge Setup...
92
                              <!--<TreeViewItem Header="Schedule" FontSize="17" Name="ScheduleTree" Selected="btnMenu_Selected" Unselected="btnMenu_UnselectedSet" Tag="ScheduleRoute"></TreeViewItem>-->
729be9a6d   doan   New Project
93
                              <TreeViewItem Header="Logging"
6870a03e3   doan   仕様 #2035 : 画面構成変更...
94
                                                    FontSize="17"
729be9a6d   doan   New Project
95
96
97
98
99
100
101
102
                                                Name="LoggingTree" 
                                                Selected="GetLoggingTree"
                                                Unselected="SetLoggingTree">
                              </TreeViewItem>
                              <TreeViewItem Header="     --------------------">
                              </TreeViewItem>
                          </TreeViewItem>
                          <TreeViewItem Header="Alert"
6870a03e3   doan   仕様 #2035 : 画面構成変更...
103
                                              FontSize="17"
729be9a6d   doan   New Project
104
105
106
107
108
                                          Name="AlertTree" 
                                          Selected="GetAlertTree"
                                          Unselected="SetAlertTree">
                          </TreeViewItem>
                          <TreeViewItem Header="Help"
6870a03e3   doan   仕様 #2035 : 画面構成変更...
109
                                              FontSize="17"
729be9a6d   doan   New Project
110
111
112
113
114
                                          Name="HelpTree" 
                                          Selected="GetHelpTree"
                                          Unselected="SetHelpTree">
                          </TreeViewItem>
                          <TreeViewItem Header="[+New Project]"
6870a03e3   doan   仕様 #2035 : 画面構成変更...
115
                                              FontSize="17"
729be9a6d   doan   New Project
116
117
118
119
120
121
122
123
124
125
126
127
128
129
                                          Name="NewProjectTree" 
                                          Selected="GetNewProjectTree"
                                          Unselected="SetNewProjectTree">
                          </TreeViewItem>
                      </TreeView>
                  </Border>
                  <Border Grid.Row="1" BorderThickness="1" BorderBrush="Gray" Margin="0,5,0,0">
  
                      <Grid ShowGridLines="False">
                          <Grid.RowDefinitions>
                              <RowDefinition Height="1*"/>
                              <RowDefinition Height="5*"/>
                          </Grid.RowDefinitions>
                          <Label Grid.Row="0" Content="Viewer" Margin="10,0,0,0"
6870a03e3   doan   仕様 #2035 : 画面構成変更...
130
                                              FontSize="17"/>
729be9a6d   doan   New Project
131
132
133
134
135
136
137
138
139
                      </Grid>
                  </Border>
              </Grid>
              <TabControl x:Name="MainTab" 
                      Margin="0,0,0,0"
                      Grid.Column="2" >
                  <TabItem x:Name="TabMap" >
                      <TabItem.Header>
                          <StackPanel Orientation="Horizontal">
6870a03e3   doan   仕様 #2035 : 画面構成変更...
140
                              <TextBlock Text="MAP " VerticalAlignment="Center"     FontSize="17"></TextBlock>
729be9a6d   doan   New Project
141
142
143
144
                          </StackPanel>
                      </TabItem.Header>
                      <Grid ShowGridLines="False">
                          <Grid.RowDefinitions>
6870a03e3   doan   仕様 #2035 : 画面構成変更...
145
                              <RowDefinition Height="5*"/>
729be9a6d   doan   New Project
146
147
148
                              <RowDefinition Height="1*"/>
                              <RowDefinition Height="1*"/>
                          </Grid.RowDefinitions>
6870a03e3   doan   仕様 #2035 : 画面構成変更...
149
                          <Grid ShowGridLines="False" Grid.Row="0" Name="GridMap">
210553190   doan   仕様 #2061 と仕様 #2062
150

6870a03e3   doan   仕様 #2035 : 画面構成変更...
151
152
153
154
155
156
                              <Grid >
                                  <Grid.ColumnDefinitions>
                                      <ColumnDefinition Width="{Binding ActualHeight, ElementName=GridMap}"/>
                                      <ColumnDefinition Width="*"/>
                                  </Grid.ColumnDefinitions>
                                  <Border Grid.Column="0" BorderThickness="1" BorderBrush="Red" Margin="5,5,5,5">
729be9a6d   doan   New Project
157

210553190   doan   仕様 #2061 と仕様 #2062
158
159
160
161
                                      <Grid>
                                          <!--<Image x:Name="Image_Map" Source="E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Images/map.png" Stretch="Fill" />-->
                                          
                                          <s:DesignerCanvas  x:Name="MyDesignerCanvas"
729be9a6d   doan   New Project
162
163
                                            AllowDrop="True"
                                            Background="White" HorizontalAlignment="Stretch">
210553190   doan   仕様 #2061 と仕様 #2062
164
165
166
167
168
                                              <Canvas.LayoutTransform>
                                                  <!--Adjust ScaleX and ScaleY in lock-step to zoom-->
                                                  <ScaleTransform ScaleX=".57" ScaleY=".57" CenterX=".57" CenterY=".57" />
                                              </Canvas.LayoutTransform>
                                              <Grid Name="MCGrid" ShowGridLines="True" 
729be9a6d   doan   New Project
169
170
                                                Width="{Binding ActualWidth, ElementName=MyDesignerCanvas}" 
                                                Height="{Binding ActualHeight, ElementName=MyDesignerCanvas}">
210553190   doan   仕様 #2061 と仕様 #2062
171
172
173
174
                                                  
                                                  <Grid.Background>
                                                      <ImageBrush ImageSource="Images/map.png"/>
                                                  </Grid.Background>
729be9a6d   doan   New Project
175

210553190   doan   仕様 #2061 と仕様 #2062
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
                                                  <!--<Grid.RowDefinitions>
                                                      <RowDefinition Height="1*"/>
                                                      <RowDefinition Height="1*"/>
                                                      <RowDefinition Height="1*"/>
                                                      <RowDefinition Height="1*"/>
                                                      <RowDefinition Height="1*"/>
                                                      <RowDefinition Height="1*"/>
                                                      <RowDefinition Height="1*"/>
                                                      <RowDefinition Height="1*"/>
                                                      <RowDefinition Height="1*"/>
                                                      <RowDefinition Height="1*"/>
                                                  </Grid.RowDefinitions>
                                                  <Grid.ColumnDefinitions>
                                                      <ColumnDefinition Width="*"/>
                                                      <ColumnDefinition Width="*"/>
                                                      <ColumnDefinition Width="*"/>
                                                      <ColumnDefinition Width="*"/>
                                                      <ColumnDefinition Width="*"/>
                                                      <ColumnDefinition Width="*"/>
                                                      <ColumnDefinition Width="*"/>
                                                      <ColumnDefinition Width="*"/>
                                                      <ColumnDefinition Width="*"/>
                                                      <ColumnDefinition Width="*"/>
                                                  </Grid.ColumnDefinitions>
                                                  <TextBlock Grid.Row="0" Grid.Column="1" Foreground="SkyBlue">100</TextBlock>
                                                  <TextBlock Grid.Row="0" Grid.Column="2" Foreground="SkyBlue">200</TextBlock>
                                                  <TextBlock Grid.Row="0" Grid.Column="3" Foreground="SkyBlue">300</TextBlock>
                                                  <TextBlock Grid.Row="0" Grid.Column="4" Foreground="SkyBlue">400</TextBlock>
                                                  <TextBlock Grid.Row="0" Grid.Column="5" Foreground="SkyBlue">500</TextBlock>
                                                  <TextBlock Grid.Row="0" Grid.Column="6" Foreground="SkyBlue">600</TextBlock>
                                                  <TextBlock Grid.Row="0" Grid.Column="7" Foreground="SkyBlue">700</TextBlock>
                                                  <TextBlock Grid.Row="0" Grid.Column="8" Foreground="SkyBlue">800</TextBlock>
                                                  <TextBlock Grid.Row="0" Grid.Column="9" Foreground="SkyBlue">900</TextBlock>
729be9a6d   doan   New Project
209

210553190   doan   仕様 #2061 と仕様 #2062
210
211
212
213
214
215
216
217
218
219
                                                  <TextBlock Grid.Row="1" Grid.Column="0" Foreground="SkyBlue">100</TextBlock>
                                                  <TextBlock Grid.Row="2" Grid.Column="0" Foreground="SkyBlue">200</TextBlock>
                                                  <TextBlock Grid.Row="3" Grid.Column="0" Foreground="SkyBlue">300</TextBlock>
                                                  <TextBlock Grid.Row="4" Grid.Column="0" Foreground="SkyBlue">400</TextBlock>
                                                  <TextBlock Grid.Row="5" Grid.Column="0" Foreground="SkyBlue">500</TextBlock>
                                                  <TextBlock Grid.Row="6" Grid.Column="0" Foreground="SkyBlue">600</TextBlock>
                                                  <TextBlock Grid.Row="7" Grid.Column="0" Foreground="SkyBlue">700</TextBlock>
                                                  <TextBlock Grid.Row="8" Grid.Column="0" Foreground="SkyBlue">800</TextBlock>
                                                  <TextBlock Grid.Row="9" Grid.Column="0" Foreground="SkyBlue">900</TextBlock>-->
                                              </Grid>
729be9a6d   doan   New Project
220

210553190   doan   仕様 #2061 と仕様 #2062
221
222
                                          </s:DesignerCanvas>
                                      </Grid>
729be9a6d   doan   New Project
223

6870a03e3   doan   仕様 #2035 : 画面構成変更...
224
                                  </Border>
729be9a6d   doan   New Project
225

6870a03e3   doan   仕様 #2035 : 画面構成変更...
226
                                  <Border Grid.Column="1" BorderThickness="1" BorderBrush="Gray" Margin="5,5,5,5">
729be9a6d   doan   New Project
227

a47f478f0   doan   開発 #2045 : node の...
228
                                      <DockPanel  >
b338e1ff5   nguyen_nam   no message
229
                                          <ScrollViewer>
a47f478f0   doan   開発 #2045 : node の...
230
231
                                              <Grid Name="grdRouteInfo">
                                                  <Grid.RowDefinitions>
729be9a6d   doan   New Project
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
                                                  <RowDefinition Height="1*"/>
                                                  <RowDefinition Height="1*"/>
                                                  <RowDefinition Height="1*"/>
                                                  <RowDefinition Height="1*"/>
                                                  <RowDefinition Height="1*"/>
                                                  <RowDefinition Height="1*"/>
                                                  <RowDefinition Height="1*"/>
                                                  <RowDefinition Height="1*"/>
                                                  <RowDefinition Height="1*"/>
                                                  <RowDefinition Height="1*"/>
                                                  <RowDefinition Height="1*"/>
                                                  <RowDefinition Height="1*"/>
                                                  <RowDefinition Height="1*"/>
                                                  <RowDefinition Height="1*"/>
                                                  <RowDefinition Height="1*"/>
6870a03e3   doan   仕様 #2035 : 画面構成変更...
247

729be9a6d   doan   New Project
248
249
                                              </Grid.RowDefinitions>
                                              <Grid.ColumnDefinitions>
a47f478f0   doan   開発 #2045 : node の...
250
                                                  <ColumnDefinition Width="1*"/>
729be9a6d   doan   New Project
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
                                                  <ColumnDefinition Width="6*"/>
                                              </Grid.ColumnDefinitions>
                                              <Border Grid.Row="0" Grid.Column="0" BorderThickness="1" />
                                              <Border Grid.Row="1" Grid.Column="0" BorderThickness="1" />
                                              <Border Grid.Row="2" Grid.Column="0" BorderThickness="1" />
                                              <Border Grid.Row="3" Grid.Column="0" BorderThickness="1" />
                                              <Border Grid.Row="4" Grid.Column="0" BorderThickness="1" />
                                              <Border Grid.Row="5" Grid.Column="0" BorderThickness="1" />
                                              <Border Grid.Row="6" Grid.Column="0" BorderThickness="1" />
                                              <Border Grid.Row="7" Grid.Column="0" BorderThickness="1" />
                                              <Border Grid.Row="8" Grid.Column="0" BorderThickness="1" />
                                              <Border Grid.Row="9" Grid.Column="0" BorderThickness="1" />
                                              <Border Grid.Row="10" Grid.Column="0" BorderThickness="1" />
                                              <Border Grid.Row="11" Grid.Column="0" BorderThickness="1" />
                                              <Border Grid.Row="12" Grid.Column="0" BorderThickness="1" />
                                              <Border Grid.Row="13" Grid.Column="0" BorderThickness="1" />
                                              <Border Grid.Row="14" Grid.Column="0" BorderThickness="1" />
                                              <Border Grid.Row="15" Grid.Column="0" BorderThickness="1" />
6870a03e3   doan   仕様 #2035 : 画面構成変更...
269
270
271
272
273
274
275
276
277
278
279
280
                                              <Label Grid.Row="0"  Grid.Column="1" Content="Monitor"      FontSize="17"/>
                                              <Label Grid.Row="1"  Grid.Column="1" Content="AOR 28249 [kg/h]"      FontSize="17"/>
                                              <Label Grid.Row="2"  Grid.Column="1" Content="ABC 4738 [trq]"      FontSize="17"/>
                                              <Label Grid.Row="3"  Grid.Column="1" Content="ATR 49593 [%]"      FontSize="17"/>
                                              <Label Grid.Row="4"  Grid.Column="1" Content="DEK 50403 [G]"      FontSize="17"/>
                                              <Label Grid.Row="5"  Grid.Column="1" Content="SKG 2739 [kg]"      FontSize="17"/>
                                              <Label Grid.Row="6"  Grid.Column="1" Content="SOC 86 [%]"      FontSize="17"/>
                                              <Label Grid.Row="7"  Grid.Column="1" Content="  :"      FontSize="17"/>
                                              <Label Grid.Row="8"  Grid.Column="1" Content="  :"      FontSize="17"/>
                                              <Label Grid.Row="9"  Grid.Column="1" Content="  :"      FontSize="17"/>
                                              <Label Grid.Row="10"  Grid.Column="1" Content="  :"      FontSize="17"/>
                                              <Label Grid.Row="11"  Grid.Column="1" Content="  :"      FontSize="17"/>
729be9a6d   doan   New Project
281
                                          </Grid>
b338e1ff5   nguyen_nam   no message
282
                                          </ScrollViewer>
6870a03e3   doan   仕様 #2035 : 画面構成変更...
283
284
285
                                      </DockPanel >
                                  </Border>
                              </Grid>
729be9a6d   doan   New Project
286
287
288
289
290
                          </Grid>
                          <Border Grid.Row="1" BorderThickness="1" BorderBrush="Gray" Margin="5,5,5,5">
                              <Grid ShowGridLines="False">
                                  <Grid.ColumnDefinitions>
                                      <ColumnDefinition Width="1*"/>
6870a03e3   doan   仕様 #2035 : 画面構成変更...
291
                                      <ColumnDefinition Width="8*"/>
729be9a6d   doan   New Project
292
293
294
295
296
297
298
                                  </Grid.ColumnDefinitions>
                                  <Grid ShowGridLines="False" Grid.Column="0">
                                      <Grid.RowDefinitions>
                                          <RowDefinition Height="1*"/>
                                          <RowDefinition Height="1*"/>
                                          <RowDefinition Height="1*"/>
                                      </Grid.RowDefinitions>
6870a03e3   doan   仕様 #2035 : 画面構成変更...
299
                                      <Label Grid.Row="0" Content="Schedule" Margin="10,0,0,0"      FontSize="17"/>
fd7150b8b   doan   Update Task 2062
300
                                      <Label Name="LabelSchedule" Grid.Row="1" Content="FK15_#1" Margin="10,0,0,0"     FontSize="17"/>
729be9a6d   doan   New Project
301
302
                                  </Grid>
                                  <Border Grid.Column="1" BorderThickness="1" BorderBrush="Red" Margin="5,5,5,5">
d55d921a3   toan   2045: Draw Schedule
303
                                      <s:ScheduleCanvas x:Name="MyScheduleCanvas"
729be9a6d   doan   New Project
304
305
                                            AllowDrop="True"
                                            Background="White" HorizontalAlignment="Stretch">
d55d921a3   toan   2045: Draw Schedule
306
307
308
309
310
                                          <Canvas.LayoutTransform>
                                              <!--Adjust ScaleX and ScaleY in lock-step to zoom-->
                                              <ScaleTransform ScaleX=".57" ScaleY=".57" CenterX=".57" CenterY=".57" />
                                          </Canvas.LayoutTransform>
                                          
729be9a6d   doan   New Project
311
                                          <Grid Name="MCGridShedule" Background="White" ShowGridLines="True" 
d55d921a3   toan   2045: Draw Schedule
312
313
                                                Width="{Binding ActualWidth, ElementName=MyScheduleCanvas}" 
                                                Height="{Binding ActualHeight, ElementName=MyScheduleCanvas}">
729be9a6d   doan   New Project
314
315
316
317
318
319
320
  
                                              <Grid.RowDefinitions>
                                                  <RowDefinition Height="1*"/>
                                                  <RowDefinition Height="1*"/>
                                              </Grid.RowDefinitions>
                                              <Grid.ColumnDefinitions>
                                                  <ColumnDefinition Width="*"/>
729be9a6d   doan   New Project
321
                                              </Grid.ColumnDefinitions>
729be9a6d   doan   New Project
322
323
  
                                              <TextBlock Grid.Row="1" Grid.Column="0" Foreground="SkyBlue">100</TextBlock>
d55d921a3   toan   2045: Draw Schedule
324
                                              <!--<TextBlock Grid.Row="2" Grid.Column="0" Foreground="SkyBlue">200</TextBlock>-->
729be9a6d   doan   New Project
325
                                          </Grid>
d55d921a3   toan   2045: Draw Schedule
326
                                      </s:ScheduleCanvas>
729be9a6d   doan   New Project
327
328
329
330
331
332
  
                                  </Border>
                              </Grid>
                          </Border>
                          <Border Grid.Row="2" BorderThickness="1" BorderBrush="Gray" Margin="5,5,5,5">
                              <Grid ShowGridLines="False">
d96c9e481   doan   Update Source Code
333
334
335
336
                                  <Grid.RowDefinitions>
                                      <RowDefinition Height="1*"/>
                                      <RowDefinition Height="2*"/>
                                  </Grid.RowDefinitions>
fd7150b8b   doan   Update Task 2062
337
                                  <Label Name="WorkVehicle" Grid.Row="0" Content="Work [FK15_#1]" Margin="10,0,0,0"     FontSize="17"/>
729be9a6d   doan   New Project
338
339
340
341
342
343
344
                              </Grid>
                          </Border>
                      </Grid>
                  </TabItem>
                  <TabItem x:Name="TabWork" >
                      <TabItem.Header>
                          <StackPanel Orientation="Horizontal">
6870a03e3   doan   仕様 #2035 : 画面構成変更...
345
                              <TextBlock Text=" Work " VerticalAlignment="Center"     FontSize="17"></TextBlock>
729be9a6d   doan   New Project
346
347
348
349
350
351
                          </StackPanel>
                      </TabItem.Header>
                  </TabItem>
                  <TabItem x:Name="TabSchedule" >
                      <TabItem.Header>
                          <StackPanel Orientation="Horizontal">
6870a03e3   doan   仕様 #2035 : 画面構成変更...
352
                              <TextBlock Text=" Schedule " VerticalAlignment="Center"     FontSize="17"></TextBlock>
729be9a6d   doan   New Project
353
354
355
356
357
358
359
                          </StackPanel>
                      </TabItem.Header>
                  </TabItem>
              </TabControl>
          </Grid>
      </Grid>
  </Window>