MainWindow.xaml 82 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261
  1. <fluent:RibbonWindow x:Class="PRSDesktop.MainWindow"
  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:PRSDesktop"
  7. mc:Ignorable="d"
  8. xmlns:syncfusion="http://schemas.syncfusion.com/wpf"
  9. xmlns:themes="clr-namespace:InABox.WPF.Themes;assembly=InABox.Wpf"
  10. xmlns:fluent="urn:fluent-ribbon"
  11. Title="PRS Desktop"
  12. Height="900" Width="1200" Left="100" Top="100"
  13. WindowStartupLocation="CenterScreen"
  14. WindowState="Maximized"
  15. HorizontalContentAlignment="Stretch"
  16. VerticalContentAlignment="Stretch"
  17. Loaded="Window_Loaded"
  18. Unloaded="Window_Unloaded"
  19. Closing="Window_Closing"
  20. Closed="RibbonWindow_Closed"
  21. PreviewMouseUp="RibbonWindow_PreviewMouseUp"
  22. PreviewKeyUp="RibbonWindow_PreviewKeyUp"
  23. Activated="RibbonWindow_Activated"
  24. Background="{Binding Path=(themes:ThemeManager.WorkspaceBackgroundBrush)}"
  25. Foreground="{Binding Path=(themes:ThemeManager.WorkspaceForegroundBrush)}"
  26. TitleBackground="{Binding Path=(themes:ThemeManager.WorkspaceBackgroundBrush)}"
  27. TitleForeground="{Binding Path=(themes:ThemeManager.WorkspaceForegroundBrush)}"
  28. GlowBrush="{Binding Path=(themes:ThemeManager.BackstageBackgroundBrush)}"
  29. NonActiveGlowBrush="{Binding Path=(themes:ThemeManager.WorkspaceBackgroundBrush)}"
  30. NonActiveBorderBrush="{Binding Path=(themes:ThemeManager.BackstageBackgroundBrush)}">
  31. <fluent:RibbonWindow.Resources>
  32. <!-- <ResourceDictionary> -->
  33. <SolidColorBrush x:Key="Fluent.Ribbon.Brushes.Backstage.BackButton.Background"
  34. Color="{Binding Path=(themes:ThemeManager.BackstageBackgroundColor)}" />
  35. <SolidColorBrush x:Key="Fluent.Ribbon.Brushes.Backstage.BackButton.Foreground"
  36. Color="{Binding Path=(themes:ThemeManager.BackstageForegroundColor)}" />
  37. <ControlTemplate x:Key="VerticalSplitter">
  38. <Grid Background="{TemplateBinding Background}" Width="4">
  39. <Button x:Name="PART_Left" Visibility="Collapsed" />
  40. <Button x:Name="PART_Right" Visibility="Collapsed" />
  41. <StackPanel Margin="0" Orientation="Vertical" VerticalAlignment="Center"
  42. HorizontalAlignment="Center">
  43. <Ellipse Fill="Silver" HorizontalAlignment="Center" Height="2" Width="2" Opacity="1"
  44. Margin="0,2,0,0" />
  45. <Ellipse Fill="Silver" HorizontalAlignment="Center" Height="2" Width="2" Opacity="1"
  46. Margin="0,2,0,0" />
  47. <Ellipse Fill="Silver" HorizontalAlignment="Center" Height="2" Width="2" Opacity="1"
  48. Margin="0,2,0,0" />
  49. <Ellipse Fill="Silver" HorizontalAlignment="Center" Height="2" Width="2" Opacity="1"
  50. Margin="0,2,0,0" />
  51. <Ellipse Fill="Silver" HorizontalAlignment="Center" Height="2" Width="2" Opacity="1"
  52. Margin="0,2,0,0" />
  53. <Ellipse Fill="Silver" HorizontalAlignment="Center" Height="2" Width="2" Opacity="1"
  54. Margin="0,2,0,0" />
  55. <Ellipse Fill="Silver" HorizontalAlignment="Center" Height="2" Width="2" Opacity="1"
  56. Margin="0,2,0,0" />
  57. </StackPanel>
  58. </Grid>
  59. </ControlTemplate>
  60. <!-- </ResourceDictionary> -->
  61. </fluent:RibbonWindow.Resources>
  62. <Grid x:Name="_mainScreen">
  63. <Grid.ColumnDefinitions>
  64. <ColumnDefinition Width="*" />
  65. <ColumnDefinition Width="Auto" />
  66. </Grid.ColumnDefinitions>
  67. <Grid.RowDefinitions>
  68. <RowDefinition x:Name="_ribbonRow" Height="Auto" />
  69. <RowDefinition Height="*" />
  70. <RowDefinition Height="Auto" />
  71. </Grid.RowDefinitions>
  72. <fluent:Ribbon x:Name="_ribbon" Grid.Row="0" Grid.ColumnSpan="2" IsCollapsed="False"
  73. PreviewMouseDoubleClick="_ribbon_OnPreviewMouseDoubleClick"
  74. Background="{Binding Path=(themes:ThemeManager.WorkspaceBackgroundBrush)}"
  75. Foreground="{Binding Path=(themes:ThemeManager.WorkspaceForegroundBrush)}"
  76. Loaded="_ribbon_OnLoaded"
  77. >
  78. <fluent:Ribbon.Menu>
  79. <fluent:Backstage Header="System"
  80. Background="{Binding Path=(themes:ThemeManager.BackstageBackgroundBrush)}"
  81. Foreground="{Binding Path=(themes:ThemeManager.BackstageForegroundBrush)}">
  82. <fluent:BackstageTabControl
  83. x:Name="_backstage"
  84. ItemsPanelBackground="{Binding Path=(themes:ThemeManager.BackstageBackgroundBrush)}"
  85. Background="{Binding Path=(themes:ThemeManager.WorkspaceBackgroundBrush)}"
  86. Foreground="{Binding Path=(themes:ThemeManager.WorkspaceForegroundBrush)}">
  87. <fluent:SeparatorTabItem x:Name="BackstageSeparator" Height="20" />
  88. <fluent:Button
  89. x:Name="DatabaseSettings"
  90. Header="Database Settings"
  91. Click="DatabaseSettings_OnClick"
  92. Size="Middle"
  93. HorizontalAlignment="Stretch"
  94. Foreground="{Binding Path=(themes:ThemeManager.BackstageForegroundBrush)}" />
  95. <fluent:SeparatorTabItem x:Name="BackstageSeparator0" Height="20" />
  96. <fluent:Button
  97. x:Name="CompanyInformation"
  98. Header="Company Information"
  99. Click="CompanyInformation_OnClick"
  100. Size="Middle"
  101. HorizontalAlignment="Stretch"
  102. Foreground="{Binding Path=(themes:ThemeManager.BackstageForegroundBrush)}" />
  103. <fluent:SeparatorTabItem x:Name="BackstageSeparator1" Height="20" />
  104. <fluent:Button
  105. x:Name="SecurityDefaultsButton"
  106. Header="Security Defaults"
  107. Click="SecurityDefaultsButton_OnClick"
  108. Size="Middle"
  109. HorizontalAlignment="Stretch"
  110. Foreground="{Binding Path=(themes:ThemeManager.BackstageForegroundBrush)}" />
  111. <fluent:SeparatorTabItem x:Name="BackstageSeparator1a" Height="20" />
  112. <fluent:Button
  113. x:Name="SystemLogsButton"
  114. Header="View System Logs"
  115. Click="SystemLogsButton_OnClick"
  116. Size="Middle"
  117. HorizontalAlignment="Stretch"
  118. Foreground="{Binding Path=(themes:ThemeManager.BackstageForegroundBrush)}" />
  119. <fluent:SeparatorTabItem x:Name="BackstageSeparator2" Height="20" />
  120. <fluent:Button
  121. x:Name="DocumentTypeList"
  122. Header="Document Types"
  123. Click="DocumentTypeList_OnClick"
  124. Size="Middle"
  125. HorizontalAlignment="Stretch"
  126. Foreground="{Binding Path=(themes:ThemeManager.BackstageForegroundBrush)}" />
  127. <fluent:Button
  128. x:Name="DocumentList"
  129. Header="Document List"
  130. Click="DocumentList_OnClick"
  131. Size="Middle"
  132. HorizontalAlignment="Stretch"
  133. Foreground="{Binding Path=(themes:ThemeManager.BackstageForegroundBrush)}" />
  134. <fluent:Button
  135. x:Name="TaskTypesButton"
  136. Header="Task Types"
  137. Click="TaskTypesButton_OnClick"
  138. Size="Middle"
  139. HorizontalAlignment="Stretch"
  140. Foreground="{Binding Path=(themes:ThemeManager.BackstageForegroundBrush)}" />
  141. <fluent:SeparatorTabItem x:Name="BackstageSeparator5" Height="20" />
  142. <fluent:Button
  143. x:Name="EditDetailsButton"
  144. VerticalAlignment="Bottom"
  145. Header="My Details"
  146. Click="EditDetailsButton_OnClick"
  147. Size="Middle"
  148. HorizontalAlignment="Stretch"
  149. Foreground="{Binding Path=(themes:ThemeManager.BackstageForegroundBrush)}" />
  150. <fluent:Button
  151. x:Name="LogoutButton"
  152. VerticalAlignment="Bottom"
  153. Header="Log Out"
  154. Click="LogoutButton_OnClick"
  155. Size="Middle"
  156. HorizontalAlignment="Stretch"
  157. Foreground="{Binding Path=(themes:ThemeManager.BackstageForegroundBrush)}" />
  158. <fluent:Button
  159. x:Name="LoginButton"
  160. VerticalAlignment="Bottom"
  161. Header="Log In"
  162. Click="LoginButton_OnClick"
  163. Size="Middle"
  164. HorizontalAlignment="Stretch"
  165. Foreground="{Binding Path=(themes:ThemeManager.BackstageForegroundBrush)}" />
  166. <fluent:SeparatorTabItem Height="20" />
  167. <fluent:Button
  168. x:Name="ExitButton"
  169. VerticalAlignment="Bottom"
  170. Header="Exit"
  171. Click="ExitButton_OnClick"
  172. Size="Middle"
  173. HorizontalAlignment="Stretch"
  174. Foreground="{Binding Path=(themes:ThemeManager.BackstageForegroundBrush)}" />
  175. </fluent:BackstageTabControl>
  176. </fluent:Backstage>
  177. </fluent:Ribbon.Menu>
  178. <fluent:RibbonTabItem x:Name="QuotesTab" Header="Quotes" IsSelected="False" Visibility="Collapsed">
  179. <fluent:RibbonGroupBox x:Name="QuotesActions" Header="Actions" LauncherClick="ManageModulesClick"
  180. IsLauncherVisible="False">
  181. <fluent:Button Header="Refresh" LargeIcon="pack://application:,,,/Resources/refresh.png"
  182. Click="RefreshMenu_Click" />
  183. <syncfusion:RibbonSeparator />
  184. <fluent:Button x:Name="QuotesDashboardButton" Header="Dashboards"
  185. LargeIcon="pack://application:,,,/Resources/kpi.png" Click="Dashboards_Checked"
  186. MinWidth="60" />
  187. <fluent:Button x:Name="QuotesMessagesButton" Header="Notification Centre"
  188. LargeIcon="pack://application:,,,/Resources/email.png"
  189. Click="Messages_Checked" MinWidth="60" />
  190. <fluent:Button x:Name="QuotesTaskButton" Header="Task List"
  191. LargeIcon="pack://application:,,,/Resources/kanban.png"
  192. Click="Tasks_Checked" MinWidth="60" />
  193. <fluent:Button x:Name="QuotesAttendanceButton" Header="In/Out Board"
  194. LargeIcon="pack://application:,,,/Resources/attendance.png"
  195. Click="Attendance_Checked" MinWidth="60" />
  196. <fluent:Button x:Name="QuotesMapButton" Header="Live Maps"
  197. LargeIcon="pack://application:,,,/Resources/map.png" Click="Maps_Checked"
  198. MinWidth="60" />
  199. <fluent:Button x:Name="QuotesDailyReportButton" Header="Daily Report"
  200. LargeIcon="pack://application:,,,/Resources/report.png"
  201. Click="DailyReport_Checked" MinWidth="60" />
  202. <syncfusion:RibbonSeparator x:Name="QuotesTaskSeparator" />
  203. <fluent:Button x:Name="QuotesButton" Header="Quotes"
  204. LargeIcon="pack://application:,,,/Resources/quotation.png"
  205. Click="Quotes_Checked" MinWidth="60" />
  206. <syncfusion:RibbonSeparator x:Name="QuotesActionSeparator" />
  207. <fluent:Button x:Name="KitsMasterList" Header="Product Kits"
  208. LargeIcon="pack://application:,,,/Resources/kit.png"
  209. Click="KitsMasterList_Click" MinWidth="60" />
  210. <fluent:Button x:Name="CostSheetsMasterList" Header="Cost Sheets"
  211. LargeIcon="pack://application:,,,/Resources/costsheet.png"
  212. Click="CostSheetsMasterList_Click" MinWidth="60" />
  213. </fluent:RibbonGroupBox>
  214. <fluent:RibbonGroupBox x:Name="QuoteReports" Width="Auto" MinWidth="60" Header="Print"
  215. LauncherClick="ManageReportsMenu_Click" IsLauncherVisible="False"
  216. Visibility="Collapsed"/>
  217. <!--fluent:RibbonGroupBox x:Name="QuotesSetup" Width="Auto" Header="Tools" IsLauncherVisible="False">
  218. <fluent:Button x:Name="QuoteStatusButton" Header="Status Codes"
  219. LargeIcon="pack://application:,,,/Resources/quotestatus.png"
  220. Click="QuoteStatusButton_Click" MinWidth="60" />
  221. <fluent:Button x:Name="QuoteDesignSectionButton" Header="Design Sections"
  222. LargeIcon="pack://application:,,,/Resources/design.png"
  223. Click="QuoteDesignSectionButton_Click" MinWidth="60" />
  224. <syncfusion:RibbonSeparator x:Name="QuotesSetupSeparator" />
  225. <fluent:Button x:Name="KitConditionList" Header="Kit Conditions"
  226. LargeIcon="pack://application:,,,/Resources/kitcondition.png"
  227. Click="KitConditionList_Click" MinWidth="60" />
  228. <fluent:Button x:Name="KitFormulaeList" Header="Kit Formulae"
  229. LargeIcon="pack://application:,,,/Resources/kitformula.png"
  230. Click="KitFormulaeList_Click" MinWidth="60" />
  231. <fluent:Button x:Name="CostSheetTypeList" Header="Cost Sheet Types"
  232. LargeIcon="pack://application:,,,/Resources/costsheettype.png"
  233. Click="CostSheetTypeList_Click" MinWidth="60" />
  234. <fluent:Button x:Name="CostSheetBrandList" Header="Cost Sheet Brands"
  235. LargeIcon="pack://application:,,,/Resources/costsheetbrand.png"
  236. Click="CostSheetBrandList_Click" MinWidth="60" />
  237. <fluent:Button x:Name="CostSheetSectionList" Header="Cost Sheet Sections"
  238. LargeIcon="pack://application:,,,/Resources/costsheetsection.png"
  239. Click="CostSheetSectionList_Click" MinWidth="60" />
  240. <syncfusion:RibbonSeparator x:Name="QuotesSetupSeparator2" />
  241. <fluent:Button x:Name="QuoteDiagramSymbols" Header="Symbols"
  242. LargeIcon="pack://application:,,,/Resources/pencil.png"
  243. Click="QuoteDiagramSymbols_Checked" MinWidth="60" />
  244. <fluent:Button x:Name="QuoteDiagramSymbolTypes" Header="Symbol Types"
  245. LargeIcon="pack://application:,,,/Resources/attachment.png"
  246. Click="QuoteDiagramSymbolTypes_Checked" MinWidth="60" />
  247. <fluent:Button x:Name="QuoteTakeOffUnits" Header="Dimension Types"
  248. LargeIcon="pack://application:,,,/Resources/box.png"
  249. Click="QuoteTakeOffUnits_Click" MinWidth="60" />
  250. </fluent:RibbonGroupBox-->
  251. </fluent:RibbonTabItem>
  252. <fluent:RibbonTabItem x:Name="ProjectsTab" Header="Projects" IsSelected="False" Visibility="Collapsed">
  253. <fluent:RibbonGroupBox x:Name="ProjectsActions" Header="Actions" LauncherClick="ManageModulesClick"
  254. IsLauncherVisible="False">
  255. <fluent:Button Header="Refresh"
  256. LargeIcon="pack://application:,,,/Resources/refresh.png"
  257. Click="RefreshMenu_Click" MinWidth="60" />
  258. <syncfusion:RibbonSeparator />
  259. <fluent:Button x:Name="ProjectsDashboardButton" Header="Dashboards"
  260. LargeIcon="pack://application:,,,/Resources/kpi.png"
  261. Click="Dashboards_Checked" MinWidth="60" />
  262. <fluent:Button x:Name="ProjectMessagesButton" Size="Large"
  263. Header="Notification Centre"
  264. LargeIcon="pack://application:,,,/Resources/email.png"
  265. Click="Messages_Checked" MinWidth="60" />
  266. <fluent:Button x:Name="ProjectTaskButton" Header="Task List"
  267. LargeIcon="pack://application:,,,/Resources/kanban.png"
  268. Click="Tasks_Checked" MinWidth="60" />
  269. <fluent:Button x:Name="ProjectAttendanceButton" Header="In/Out Board"
  270. LargeIcon="pack://application:,,,/Resources/attendance.png"
  271. Click="Attendance_Checked" MinWidth="60" />
  272. <fluent:Button x:Name="ProjectsMapButton" Header="Live Maps"
  273. LargeIcon="pack://application:,,,/Resources/map.png" Click="Maps_Checked"
  274. MinWidth="60" />
  275. <fluent:Button x:Name="ProjectDailyReportButton" Header="Daily Report"
  276. LargeIcon="pack://application:,,,/Resources/report.png"
  277. Click="DailyReport_Checked" MinWidth="60" />
  278. <syncfusion:RibbonSeparator x:Name="ProjectTaskSeparator" />
  279. <fluent:Button x:Name="ProjectsButton" Header="Projects"
  280. LargeIcon="pack://application:,,,/Resources/project.png"
  281. Click="Jobs_Checked" MinWidth="60" />
  282. <fluent:Button x:Name="ProjectPlannerButton" Header="Project Planner"
  283. LargeIcon="pack://application:,,,/Resources/calendar.png"
  284. Click="ProjectPlanner_Checked" MinWidth="60" />
  285. <fluent:Button x:Name="DesignManagementButton" Header="Design Management"
  286. LargeIcon="pack://application:,,,/Resources/design.png"
  287. Click="DesignManagement_Checked" MinWidth="60" />
  288. <fluent:Button x:Name="ServiceButton" Header="Service"
  289. LargeIcon="pack://application:,,,/Resources/service.png"
  290. Click="Service_Checked" MinWidth="60" />
  291. </fluent:RibbonGroupBox>
  292. <fluent:RibbonGroupBox x:Name="ProjectReports" Width="Auto" MinWidth="60" Header="Print"
  293. LauncherClick="ManageReportsMenu_Click" Visibility="Collapsed"
  294. IsLauncherVisible="False" />
  295. <!--fluent:RibbonGroupBox x:Name="ProjectSetup" Width="Auto" Header="Tools"
  296. IsLauncherVisible="False">
  297. <fluent:Button x:Name="JobStatusButton" Header="Job Statuses"
  298. LargeIcon="pack://application:,,,/Resources/view.png"
  299. Click="JobStatusButton_Click" MinWidth="60" />
  300. <fluent:Button x:Name="JobDocumentMileStoneButton" Size="Large"
  301. Header="Document MileStones"
  302. LargeIcon="pack://application:,,,/Resources/revision.png"
  303. Click="JobDocumentMileStoneButton_OnClick" MinWidth="60" />
  304. <fluent:Button x:Name="FinancialStatusButton" Header="Financial Statuses"
  305. LargeIcon="pack://application:,,,/Resources/view.png"
  306. Click="FinancialStatusButton_Click" MinWidth="60" />
  307. <fluent:Button x:Name="DrawingTemplatesButton" Header="Drawing Templates"
  308. LargeIcon="pack://application:,,,/Resources/doc-misc.png"
  309. Click="DrawingTemplatesButton_Click" MinWidth="60" />
  310. </fluent:RibbonGroupBox-->
  311. </fluent:RibbonTabItem>
  312. <fluent:RibbonTabItem x:Name="ManufacturingTab" Header="Manufacturing" IsSelected="False"
  313. Visibility="Collapsed">
  314. <fluent:RibbonGroupBox x:Name="ManufacturingActions" Header="Actions"
  315. LauncherClick="ManageModulesClick"
  316. IsLauncherVisible="False">
  317. <fluent:Button Header="Refresh"
  318. LargeIcon="pack://application:,,,/Resources/refresh.png"
  319. Click="RefreshMenu_Click" MinWidth="60"/>
  320. <syncfusion:RibbonSeparator />
  321. <fluent:Button x:Name="ManufacturingDashboardButton" Header="Dashboards"
  322. LargeIcon="pack://application:,,,/Resources/kpi.png"
  323. Click="Dashboards_Checked" MinWidth="60" />
  324. <fluent:Button x:Name="ManufacturingMessagesButton" Size="Large"
  325. Header="Notification Centre"
  326. LargeIcon="pack://application:,,,/Resources/email.png"
  327. Click="Messages_Checked" MinWidth="60" />
  328. <fluent:Button x:Name="ManufacturingTaskButton" Header="Task List"
  329. LargeIcon="pack://application:,,,/Resources/kanban.png"
  330. Click="Tasks_Checked" MinWidth="60" />
  331. <fluent:Button x:Name="ManufacturingAttendanceButton" Size="Large"
  332. Header="In/Out Board"
  333. LargeIcon="pack://application:,,,/Resources/attendance.png"
  334. Click="Attendance_Checked" MinWidth="60" />
  335. <fluent:Button x:Name="ManufacturingMapButton" Header="Live Maps"
  336. LargeIcon="pack://application:,,,/Resources/map.png" Click="Maps_Checked"
  337. MinWidth="60" />
  338. <fluent:Button x:Name="ManufacturingDailyReportButton" Size="Large"
  339. Header="Daily Report"
  340. LargeIcon="pack://application:,,,/Resources/report.png"
  341. Click="DailyReport_Checked" MinWidth="60" />
  342. <syncfusion:RibbonSeparator x:Name="ManufacturingTaskSeparator" />
  343. <fluent:Button x:Name="FactoryStatusButton" Header="Manufacturing Status"
  344. LargeIcon="pack://application:,,,/Resources/factory.png"
  345. Click="ManufacturingMenu_Checked" MinWidth="60" />
  346. <fluent:Button x:Name="FactoryAllocationButton" Size="Large"
  347. Header="Factory Allocation"
  348. LargeIcon="pack://application:,,,/Resources/assignments.png"
  349. Click="FactoryAllocationButton_Click" MinWidth="60" />
  350. <!--<fluent:Button x:Name="FactoryScheduleButton" Header="Factory Schedule" LargeIcon="pack://application:,,,/Resources/clock.png" Click="Schedule_Checked" MinWidth="60"/>-->
  351. <fluent:Button x:Name="FactoryFloorButton" Header="Factory Floor"
  352. LargeIcon="pack://application:,,,/Resources/wrench.png"
  353. Click="FactoryFloorButton_Click" MinWidth="60" />
  354. <!--<fluent:Button x:Name="FactoryReadyButton" Header="Ready To Go" LargeIcon="pack://application:,,,/Resources/truck.png" Click="FactoryReadyButton_Click" MinWidth="60"/>-->
  355. </fluent:RibbonGroupBox>
  356. <fluent:RibbonGroupBox x:Name="ManufacturingReports" Width="Auto" MinWidth="60" Header="Print"
  357. LauncherClick="ManageReportsMenu_Click" Visibility="Collapsed"
  358. IsLauncherVisible="False" />
  359. <!--fluent:RibbonGroupBox x:Name="ManufacturingSetup" Width="Auto" Header="Tools"
  360. IsLauncherVisible="False">
  361. <fluent:Button x:Name="FactorySettingsButton" Header="Factory Settings"
  362. LargeIcon="pack://application:,,,/Resources/factorysetup.png"
  363. Click="FactorySetup_Click" MinWidth="60" />
  364. <fluent:Button x:Name="ManufacturingTemplatesButton" Size="Large"
  365. Header="Manufacturing Templates"
  366. LargeIcon="pack://application:,,,/Resources/template.png"
  367. Click="TemplateSetup_Click" MinWidth="60" />
  368. <fluent:Button x:Name="ManufacturingTrolleysButton" Size="Large"
  369. Header="Manufacturing Trolleys"
  370. LargeIcon="pack://application:,,,/Resources/trolley.png"
  371. Click="TrolleySetup_Click" MinWidth="60" />
  372. <fluent:Button x:Name="ManufacturingLostTimeButton" Size="Large"
  373. Header="Lost Time Types"
  374. LargeIcon="pack://application:,,,/Resources/smiley.png"
  375. Click="LostTimeSetup_Click" MinWidth="60" />
  376. <! - - <fluent:Button x:Name="ManufacturingTransferButton" Header="Transfer Settings" LargeIcon="pack://application:,,,/Resources/warning.png" Click="ManufacturingTransferButton_Click" MinWidth="60"/>
  377. <fluent:Button x:Name="RebuildPacketsButton" Header="Rebuild Packets" LargeIcon="pack://application:,,,/Resources/warning.png" Click="RebuildPacketsButton_Click" MinWidth="60"/> - - >
  378. </fluent:RibbonGroupBox-->
  379. </fluent:RibbonTabItem>
  380. <fluent:RibbonTabItem x:Name="LogisticsTab" Header="Logistics" IsSelected="False" Visibility="Collapsed">
  381. <fluent:RibbonGroupBox x:Name="LogisticsActions" Header="Actions" LauncherClick="ManageModulesClick"
  382. IsLauncherVisible="False">
  383. <fluent:Button Header="Refresh"
  384. LargeIcon="pack://application:,,,/Resources/refresh.png"
  385. Click="RefreshMenu_Click" MinWidth="60" />
  386. <syncfusion:RibbonSeparator />
  387. <fluent:Button x:Name="LogisticsDashboardButton" Header="Dashboards"
  388. LargeIcon="pack://application:,,,/Resources/kpi.png"
  389. Click="Dashboards_Checked" MinWidth="60" />
  390. <fluent:Button x:Name="LogisticsMessagesButton" Size="Large"
  391. Header="Notification Centre"
  392. LargeIcon="pack://application:,,,/Resources/email.png"
  393. Click="Messages_Checked" MinWidth="60" />
  394. <fluent:Button x:Name="LogisticsTaskButton" Header="Task List"
  395. LargeIcon="pack://application:,,,/Resources/kanban.png"
  396. Click="Tasks_Checked" MinWidth="60" />
  397. <fluent:Button x:Name="LogisticsAttendanceButton" Header="In/Out Board"
  398. LargeIcon="pack://application:,,,/Resources/attendance.png"
  399. Click="Attendance_Checked" MinWidth="60" />
  400. <fluent:Button x:Name="LogisticsMapButton" Header="Live Maps"
  401. LargeIcon="pack://application:,,,/Resources/map.png" Click="Maps_Checked"
  402. MinWidth="60" />
  403. <fluent:Button x:Name="LogisticsDailyReportButton" Header="Daily Report"
  404. LargeIcon="pack://application:,,,/Resources/report.png"
  405. Click="DailyReport_Checked" MinWidth="60" />
  406. <syncfusion:RibbonSeparator x:Name="LogisticsTaskSeparator1" />
  407. <fluent:Button x:Name="ReadyToGoItemsButton" Header="Ready To Go"
  408. LargeIcon="pack://application:,,,/Resources/truck.png"
  409. Click="ReadyToGoMenu_Checked" MinWidth="60" />
  410. <fluent:Button x:Name="DispatchButton" Header="Rack List"
  411. LargeIcon="pack://application:,,,/Resources/barcode.png"
  412. Click="DispatchMenu_Checked" MinWidth="60" />
  413. <fluent:Button x:Name="RequisitionsButton" Header="Site Requisitions"
  414. LargeIcon="pack://application:,,,/Resources/box.png"
  415. Click="Requisitions_Checked" MinWidth="60" />
  416. <fluent:Button x:Name="DeliveriesButton" Header="Deliveries"
  417. LargeIcon="pack://application:,,,/Resources/truck.png"
  418. Click="DeliveriesButton_Click" MinWidth="60" />
  419. <fluent:Button x:Name="DeliveredItemsButton" Header="Delivered On Site"
  420. LargeIcon="pack://application:,,,/Resources/lifter.png"
  421. Click="DeliveredOnSiteMenu_Checked" MinWidth="60" />
  422. <syncfusion:RibbonSeparator x:Name="LogisticsTaskSeparator2" />
  423. <fluent:Button x:Name="ConsignmentButton" Header="Incoming Consignments"
  424. LargeIcon="pack://application:,,,/Resources/consignment.png"
  425. Click="ConsignmentButton_Click" MinWidth="60" />
  426. </fluent:RibbonGroupBox>
  427. <fluent:RibbonGroupBox x:Name="LogisticsReports" Width="Auto" MinWidth="60" Header="Print"
  428. LauncherClick="ManageReportsMenu_Click" Visibility="Collapsed"
  429. IsLauncherVisible="False" />
  430. <!--fluent:RibbonGroupBox x:Name="LogisticsSetup" Width="Auto" Header="Tools"
  431. IsLauncherVisible="False">
  432. <fluent:Button x:Name="DeliveryTypesButton" Header="Delivery Types"
  433. LargeIcon="pack://application:,,,/Resources/truck.png"
  434. Click="DeliveryTypesButton_Click" MinWidth="60" />
  435. <fluent:Button x:Name="ConsignmentTypesButton" Header="Consignment Types"
  436. LargeIcon="pack://application:,,,/Resources/service.png"
  437. Click="ConsignmentTypesButton_Click" MinWidth="60" />
  438. </fluent:RibbonGroupBox-->
  439. </fluent:RibbonTabItem>
  440. <fluent:RibbonTabItem x:Name="ProductTab" Header="Product Management" IsSelected="False"
  441. Visibility="Collapsed">
  442. <fluent:RibbonGroupBox x:Name="ProductActions" Width="Auto" Header="Actions"
  443. LauncherClick="ManageModulesClick" IsLauncherVisible="False">
  444. <fluent:Button Header="Refresh"
  445. LargeIcon="pack://application:,,,/Resources/refresh.png"
  446. Click="RefreshMenu_Click" MinWidth="60" />
  447. <syncfusion:RibbonSeparator />
  448. <fluent:Button x:Name="ProductsDashboardButton" Header="Dashboards"
  449. LargeIcon="pack://application:,,,/Resources/kpi.png"
  450. Click="Dashboards_Checked" MinWidth="60" />
  451. <fluent:Button x:Name="ProductsMessagesButton" Size="Large"
  452. Header="Notification Centre"
  453. LargeIcon="pack://application:,,,/Resources/email.png"
  454. Click="Messages_Checked" MinWidth="60" />
  455. <fluent:Button x:Name="ProductsTaskButton" Header="Task List"
  456. LargeIcon="pack://application:,,,/Resources/kanban.png"
  457. Click="Tasks_Checked" MinWidth="60" />
  458. <fluent:Button x:Name="ProductsAttendanceButton" Header="In/Out Board"
  459. LargeIcon="pack://application:,,,/Resources/attendance.png"
  460. Click="Attendance_Checked" MinWidth="60" />
  461. <fluent:Button x:Name="ProductsMapButton" Header="Live Maps"
  462. LargeIcon="pack://application:,,,/Resources/map.png" Click="Maps_Checked"
  463. MinWidth="60" />
  464. <fluent:Button x:Name="ProductsDailyReportButton" Header="Daily Report"
  465. LargeIcon="pack://application:,,,/Resources/report.png"
  466. Click="DailyReport_Checked" MinWidth="60" />
  467. <syncfusion:RibbonSeparator x:Name="ProductsTaskSeparator" />
  468. <fluent:Button x:Name="ProductsMasterList" Header="Product List"
  469. LargeIcon="pack://application:,,,/Resources/product.png"
  470. Click="Products_Checked" MinWidth="60" />
  471. <fluent:Button x:Name="StockLocationList" Header="Stock Locations"
  472. LargeIcon="pack://application:,,,/Resources/parcel.png"
  473. Click="StockLocations_Checked" MinWidth="60" />
  474. <fluent:Button x:Name="StockMovementList" Header="Stock Movements"
  475. LargeIcon="pack://application:,,,/Resources/forklift.png"
  476. Click="StockMovements_Checked" MinWidth="60" />
  477. <fluent:Button x:Name="StockSummaryButton" Header="Stock Forecast"
  478. LargeIcon="pack://application:,,,/Resources/kpi.png"
  479. Click="StockSummaryButton_Clicked" MinWidth="60" />
  480. <fluent:Button x:Name="ReservationManagementButton" Header="Reservation Management"
  481. LargeIcon="pack://application:,,,/Resources/requisition.png"
  482. Click="ReservationManagementButton_Clicked" MinWidth="60" />
  483. </fluent:RibbonGroupBox>
  484. <fluent:RibbonGroupBox x:Name="ProductReports" Width="Auto" MinWidth="60" Header="Print"
  485. LauncherClick="ManageReportsMenu_Click" Visibility="Collapsed"
  486. IsLauncherVisible="False" />
  487. <!--fluent:RibbonGroupBox x:Name="ProductSetup" Width="Auto" Header="Tools"
  488. IsLauncherVisible="False">
  489. <fluent:Button x:Name="ProductDimensionUnitsList" Size="Large"
  490. Header="Units of Measure"
  491. LargeIcon="pack://application:,,,/Resources/unitofmeasure.png"
  492. Click="ProductDimensionUnitsList_Click" MinWidth="60" />
  493. <fluent:Button x:Name="ProductGroupsList" Header="Product Groups"
  494. LargeIcon="pack://application:,,,/Resources/productgroup.png"
  495. Click="ProductGroupsList_Click" MinWidth="60" />
  496. <fluent:Button x:Name="ProductStylesList" Header="Product Styles"
  497. LargeIcon="pack://application:,,,/Resources/palette.png"
  498. Click="ProductStylesList_Click" MinWidth="60" />
  499. <fluent:Button x:Name="StockAreasList" Header="Stock Areas"
  500. LargeIcon="pack://application:,,,/Resources/rack.png"
  501. Click="StockAreasList_Click" MinWidth="60" />
  502. <fluent:Button x:Name="StockWarehouseList" Header="Stock Warehouses"
  503. LargeIcon="pack://application:,,,/Resources/factorysetup.png"
  504. Click="StockWarehouseList_Click" MinWidth="60" />
  505. </fluent:RibbonGroupBox-->
  506. </fluent:RibbonTabItem>
  507. <fluent:RibbonTabItem x:Name="HumanResourcesTab" Header="Human Resources" IsSelected="False"
  508. Visibility="Collapsed">
  509. <fluent:RibbonGroupBox x:Name="HumanResourcesActions" Header="Actions"
  510. LauncherClick="ManageModulesClick" IsLauncherVisible="False">
  511. <fluent:Button Header="Refresh"
  512. LargeIcon="pack://application:,,,/Resources/refresh.png"
  513. Click="RefreshMenu_Click" MinWidth="60" />
  514. <syncfusion:RibbonSeparator />
  515. <fluent:Button x:Name="HumanResourcesDashboardButton" Header="Dashboards"
  516. LargeIcon="pack://application:,,,/Resources/kpi.png"
  517. Click="Dashboards_Checked" MinWidth="60" />
  518. <fluent:Button x:Name="HumanResourcesMessagesButton" Size="Large"
  519. Header="Notification Centre"
  520. LargeIcon="pack://application:,,,/Resources/email.png"
  521. Click="Messages_Checked" MinWidth="60" />
  522. <fluent:Button x:Name="HumanResourcesTaskButton" Header="Task List"
  523. LargeIcon="pack://application:,,,/Resources/kanban.png"
  524. Click="Tasks_Checked" MinWidth="60" />
  525. <fluent:Button x:Name="HumanResourcesAttendanceButton" Size="Large"
  526. Header="In/Out Board"
  527. LargeIcon="pack://application:,,,/Resources/attendance.png"
  528. Click="Attendance_Checked" MinWidth="60" />
  529. <fluent:Button x:Name="HumanResourcesMapButton" Header="Live Maps"
  530. LargeIcon="pack://application:,,,/Resources/map.png" Click="Maps_Checked"
  531. MinWidth="60" />
  532. <fluent:Button x:Name="HumanResourcesDailyReportButton" Size="Large"
  533. Header="Daily Report"
  534. LargeIcon="pack://application:,,,/Resources/report.png"
  535. Click="DailyReport_Checked" MinWidth="60" />
  536. <syncfusion:RibbonSeparator x:Name="HumanResourcesTaskSeparator" />
  537. <fluent:Button x:Name="CalendarButton" Header="Calendar"
  538. LargeIcon="pack://application:,,,/Resources/assignments.png"
  539. Click="CalendarButton_Click" MinWidth="60" />
  540. <fluent:Button x:Name="EmployeePlannerButton" Header="Employee Planner"
  541. LargeIcon="pack://application:,,,/Resources/calendar.png"
  542. Click="EmployeePlannerButton_Click" MinWidth="60" />
  543. <fluent:Button x:Name="TimesheetsButton" Header="Staff TimeSheets"
  544. LargeIcon="pack://application:,,,/Resources/clock.png"
  545. Click="Timesheets_Checked" MinWidth="60" />
  546. <fluent:Button x:Name="LeaveRequestsButton" Header="Leave Requests"
  547. LargeIcon="pack://application:,,,/Resources/leave.png"
  548. Click="LeaveRequestsButton_Click" MinWidth="60" />
  549. <fluent:Button x:Name="MeetingsButton" Header="Meetings"
  550. LargeIcon="pack://application:,,,/Resources/employees.png"
  551. Click="MeetingsButton_Click" MinWidth="60" />
  552. <syncfusion:RibbonSeparator x:Name="HumanResourcesSetupSeparator1" />
  553. <fluent:Button x:Name="UsersButton" Header="User Accounts"
  554. LargeIcon="pack://application:,,,/Resources/user.png"
  555. Click="UserSetup_Click" MinWidth="60" />
  556. <fluent:Button x:Name="EmployeesButton" Header="Employee List"
  557. LargeIcon="pack://application:,,,/Resources/employee.png"
  558. Click="Employees_Click" MinWidth="60" />
  559. <fluent:Button x:Name="OrgChartButton" Header="Org Chart"
  560. LargeIcon="pack://application:,,,/Resources/orgchart.png"
  561. Click="OrgChartButton_Click" MinWidth="60" />
  562. </fluent:RibbonGroupBox>
  563. <fluent:RibbonGroupBox x:Name="HumanResourcesReports" Width="Auto" MinWidth="60" Header="Print"
  564. LauncherClick="ManageReportsMenu_Click" Visibility="Collapsed"
  565. IsLauncherVisible="False" />
  566. <!--fluent:RibbonGroupBox x:Name="HumanResourcesSetup" Width="Auto" Header="Tools"
  567. IsLauncherVisible="False">
  568. <fluent:Button x:Name="SecurityGroupsButton" Header="Security Groups"
  569. LargeIcon="pack://application:,,,/Resources/securitygroup.png"
  570. Click="SecurityGroupsButton_Click" MinWidth="60" />
  571. <fluent:Button x:Name="EmployeeGroupsButton" Header="Employee Groups"
  572. LargeIcon="pack://application:,,,/Resources/employees.png"
  573. Click="GroupsSetup_Click" MinWidth="60" />
  574. <fluent:Button x:Name="EmployeePositionsButton" Header="Positions"
  575. LargeIcon="pack://application:,,,/Resources/position.png"
  576. Click="PositionsSetup_Click" MinWidth="60" />
  577. <fluent:Button x:Name="EmployeeRolesButton" Header="Roles"
  578. LargeIcon="pack://application:,,,/Resources/employeerole.png"
  579. Click="RolesSetup_Click" MinWidth="60" />
  580. <fluent:Button x:Name="EmployeeTeamsButton" Header="Teams"
  581. LargeIcon="pack://application:,,,/Resources/team.png"
  582. Click="EmployeeTeamsButton_Click" MinWidth="60" />
  583. <fluent:Button x:Name="EmployeeActivitiesButton" Header="Activities"
  584. LargeIcon="pack://application:,,,/Resources/quality.png"
  585. Click="ActivityMenu_Click" MinWidth="60" />
  586. <fluent:Button x:Name="EmployeeQualificationsButton" Size="Large"
  587. Header="Qualifications"
  588. LargeIcon="pack://application:,,,/Resources/certificate.png"
  589. Click="QualificationMenu_Click" MinWidth="60" />
  590. <syncfusion:RibbonSeparator x:Name="HumanResourcesSetupSeparator2" />
  591. <fluent:Button x:Name="OvertimeRulesButton" Header="Overtime Rules"
  592. LargeIcon="pack://application:,,,/Resources/overtime.png"
  593. Click="OvertimeRulesButton_Click" MinWidth="60" />
  594. <fluent:Button x:Name="StandardLeaveButton" Header="Standard Leave"
  595. LargeIcon="pack://application:,,,/Resources/fireworks.png"
  596. Click="StandardLeaveButton_Click" MinWidth="60" />
  597. </fluent:RibbonGroupBox-->
  598. </fluent:RibbonTabItem>
  599. <fluent:RibbonTabItem x:Name="AccountsTab" Header="Accounts" IsSelected="False" Visibility="Collapsed">
  600. <fluent:RibbonGroupBox x:Name="AccountsActions" Header="Actions" LauncherClick="ManageModulesClick"
  601. IsLauncherVisible="False">
  602. <fluent:Button Header="Refresh"
  603. LargeIcon="pack://application:,,,/Resources/refresh.png"
  604. Click="RefreshMenu_Click" MinWidth="60" />
  605. <syncfusion:RibbonSeparator />
  606. <fluent:Button x:Name="AccountsDashboardButton" Header="Dashboards"
  607. LargeIcon="pack://application:,,,/Resources/kpi.png"
  608. Click="Dashboards_Checked" MinWidth="60" />
  609. <fluent:Button x:Name="AccountsMessagesButton" Size="Large"
  610. Header="Notification Centre"
  611. LargeIcon="pack://application:,,,/Resources/email.png"
  612. Click="Messages_Checked" MinWidth="60" />
  613. <fluent:Button x:Name="AccountsTaskButton" Header="Task List"
  614. LargeIcon="pack://application:,,,/Resources/kanban.png"
  615. Click="Tasks_Checked" MinWidth="60" />
  616. <fluent:Button x:Name="AccountsDataButton" Header="Data Entry"
  617. LargeIcon="pack://application:,,,/Resources/pencil.png"
  618. Click="DataEntry_Click" MinWidth="60" />
  619. <fluent:Button x:Name="AccountsAttendanceButton" Header="In/Out Board"
  620. LargeIcon="pack://application:,,,/Resources/attendance.png"
  621. Click="Attendance_Checked" MinWidth="60" />
  622. <fluent:Button x:Name="AccountsMapButton" Header="Live Maps"
  623. LargeIcon="pack://application:,,,/Resources/map.png" Click="Maps_Checked"
  624. MinWidth="60" />
  625. <fluent:Button x:Name="AccountsDailyReportButton" Header="Daily Report"
  626. LargeIcon="pack://application:,,,/Resources/report.png"
  627. Click="DailyReport_Checked" MinWidth="60" />
  628. <syncfusion:RibbonSeparator x:Name="AccountsTaskSeparator1" />
  629. <fluent:Button x:Name="CustomerList" Header="Customers"
  630. LargeIcon="pack://application:,,,/Resources/customer.png"
  631. Click="CustomerList_Click" MinWidth="60" />
  632. <fluent:Button x:Name="InvoiceList" Header="Invoices"
  633. LargeIcon="pack://application:,,,/Resources/invoice.png"
  634. Click="InvoiceList_Click" MinWidth="60" />
  635. <fluent:Button x:Name="ReceiptList" Header="Receipts"
  636. LargeIcon="pack://application:,,,/Resources/receipt.png"
  637. Click="ReceiptList_Click" MinWidth="60" />
  638. <syncfusion:RibbonSeparator x:Name="AccountsTaskSeparator2" />
  639. <fluent:Button x:Name="SupplierList" Header="Suppliers"
  640. LargeIcon="pack://application:,,,/Resources/supplier.png"
  641. Click="SupplierList_Click" MinWidth="60" />
  642. <fluent:Button x:Name="PurchasesList" Header="Purchase Orders"
  643. LargeIcon="pack://application:,,,/Resources/purchase.png"
  644. Click="PurchasesList_Click" MinWidth="60" />
  645. <fluent:Button x:Name="BillsList" Header="Bills"
  646. LargeIcon="pack://application:,,,/Resources/bill.png"
  647. Click="BillsList_Click" MinWidth="60" />
  648. <fluent:Button x:Name="PaymentsList" Header="Payments"
  649. LargeIcon="pack://application:,,,/Resources/payment.png"
  650. Click="PaymentsList_Click" MinWidth="60" />
  651. </fluent:RibbonGroupBox>
  652. <fluent:RibbonGroupBox x:Name="AccountsReports" Width="Auto" MinWidth="60" Header="Print"
  653. LauncherClick="ManageReportsMenu_Click" Visibility="Collapsed"
  654. IsLauncherVisible="False" />
  655. <!--fluent:RibbonGroupBox x:Name="AccountsSetup" Width="Auto" Header="Tools"
  656. IsLauncherVisible="False">
  657. <fluent:Button x:Name="ContactTypeList" Header="Contact Types"
  658. LargeIcon="pack://application:,,,/Resources/contacttype.png"
  659. Click="ContactTypeList_Click" MinWidth="60" />
  660. <fluent:Button x:Name="TaxCodeList" Header="Tax Codes"
  661. LargeIcon="pack://application:,,,/Resources/taxcode.png"
  662. Click="TaxCodeList_Click" MinWidth="60" />
  663. <fluent:Button x:Name="ReceiptTypeList" Header="Receipt Types"
  664. LargeIcon="pack://application:,,,/Resources/receipt.png"
  665. Click="ReceiptTypeList_Click" MinWidth="60" />
  666. <fluent:Button x:Name="PaymentTypeList" Header="Payment Types"
  667. LargeIcon="pack://application:,,,/Resources/payment.png"
  668. Click="PaymentTypeList_Click" MinWidth="60" />
  669. <fluent:Button x:Name="CostCentresList" Header="Cost Centres"
  670. LargeIcon="pack://application:,,,/Resources/costcentre.png"
  671. Click="CostCentresList_Click" MinWidth="60" />
  672. <fluent:Button x:Name="GLCodesList" Header="GL Codes"
  673. LargeIcon="pack://application:,,,/Resources/glcode.png"
  674. Click="GLCodesList_Click" MinWidth="60" />
  675. <fluent:Button x:Name="PurchaseOrderCategoriesList" Size="Large"
  676. Header="Purchase Order Categories"
  677. LargeIcon="pack://application:,,,/Resources/service.png"
  678. Click="PurchaseOrderCategoriesButton_Click" MinWidth="60" />
  679. </fluent:RibbonGroupBox-->
  680. </fluent:RibbonTabItem>
  681. <fluent:RibbonTabItem x:Name="EquipmentTab" Header="Equipment" IsSelected="True" Visibility="Collapsed">
  682. <fluent:RibbonGroupBox x:Name="EquipmentActions" Width="Auto" Header="Actions"
  683. LauncherClick="ManageModulesClick" IsLauncherVisible="False">
  684. <fluent:Button Header="Refresh"
  685. LargeIcon="pack://application:,,,/Resources/refresh.png"
  686. Click="RefreshMenu_Click" MinWidth="60" />
  687. <syncfusion:RibbonSeparator />
  688. <fluent:Button x:Name="EquipmentDashboardButton" Header="Dashboards"
  689. LargeIcon="pack://application:,,,/Resources/kpi.png"
  690. Click="Dashboards_Checked" MinWidth="60" />
  691. <fluent:Button x:Name="EquipmentMessagesButton" Size="Large"
  692. Header="Notification Centre"
  693. LargeIcon="pack://application:,,,/Resources/email.png"
  694. Click="Messages_Checked" MinWidth="60" />
  695. <fluent:Button x:Name="EquipmentTaskButton" Header="Task List"
  696. LargeIcon="pack://application:,,,/Resources/kanban.png"
  697. Click="Tasks_Checked" MinWidth="60" />
  698. <fluent:Button x:Name="EquipmentAttendanceButton" Header="In/Out Board"
  699. LargeIcon="pack://application:,,,/Resources/attendance.png"
  700. Click="Attendance_Checked" MinWidth="60" />
  701. <fluent:Button x:Name="EquipmentMapButton" Header="Live Maps"
  702. LargeIcon="pack://application:,,,/Resources/map.png" Click="Maps_Checked"
  703. MinWidth="60" />
  704. <fluent:Button x:Name="EquipmentDailyReportButton" Header="Daily Report"
  705. LargeIcon="pack://application:,,,/Resources/report.png"
  706. Click="DailyReport_Checked" MinWidth="60" />
  707. <syncfusion:RibbonSeparator x:Name="EquipmentTaskSeparator" />
  708. <fluent:Button x:Name="EquipmentButton" Header="Equipment List"
  709. LargeIcon="pack://application:,,,/Resources/specifications.png"
  710. Click="Equipment_Checked" MinWidth="60" />
  711. <fluent:Button x:Name="TrackersMasterList" Header="GPS Trackers"
  712. LargeIcon="pack://application:,,,/Resources/milestone.png"
  713. Click="Trackers_Click" MinWidth="60" />
  714. </fluent:RibbonGroupBox>
  715. <fluent:RibbonGroupBox x:Name="EquipmentReports" Width="Auto" MinWidth="60" Header="Print"
  716. LauncherClick="ManageReportsMenu_Click" Visibility="Collapsed"
  717. IsLauncherVisible="False" />
  718. <!--fluent:RibbonGroupBox x:Name="EquipmentSetup" Width="Auto" Header="Tools"
  719. IsLauncherVisible="False">
  720. <fluent:Button x:Name="TrackerTypesMasterList" Header="Tracker Types"
  721. LargeIcon="pack://application:,,,/Resources/milestone.png"
  722. Click="TrackerTypes_Click" MinWidth="60" />
  723. <fluent:Button x:Name="StickersMasterList" Header="Stickers"
  724. LargeIcon="pack://application:,,,/Resources/barcode.png"
  725. Click="Stickers_Click" MinWidth="60" />
  726. <fluent:Button x:Name="DigitalKeysMasterList" Header="Digital Keys"
  727. LargeIcon="pack://application:,,,/Resources/key.png"
  728. Click="DigitalKeys_Click" MinWidth="60" />
  729. <fluent:Button x:Name="EquipmentGroupList" Header="Equipment Groups"
  730. LargeIcon="pack://application:,,,/Resources/specifications.png"
  731. Click="EquipmentGroupList_Click" MinWidth="60" />
  732. </fluent:RibbonGroupBox-->
  733. </fluent:RibbonTabItem>
  734. <fluent:RibbonTabItem x:Name="DigitalFormsTab" Header="Digital Forms" IsSelected="False" Visibility="Collapsed">
  735. <fluent:RibbonGroupBox x:Name="DigitalFormsActions" Width="Auto" Header="Actions"
  736. LauncherClick="ManageModulesClick" IsLauncherVisible="False">
  737. <fluent:Button Header="Refresh"
  738. LargeIcon="pack://application:,,,/Resources/refresh.png"
  739. Click="RefreshMenu_Click" MinWidth="60" />
  740. <syncfusion:RibbonSeparator />
  741. <fluent:Button x:Name="DigitalFormsDashboardButton" Header="Dashboards"
  742. LargeIcon="pack://application:,,,/Resources/kpi.png"
  743. Click="Dashboards_Checked" MinWidth="60" />
  744. <fluent:Button x:Name="DigitalFormsMessagesButton" Size="Large"
  745. Header="Notification Centre"
  746. LargeIcon="pack://application:,,,/Resources/email.png"
  747. Click="Messages_Checked" MinWidth="60" />
  748. <fluent:Button x:Name="DigitalFormsTaskButton" Header="Task List"
  749. LargeIcon="pack://application:,,,/Resources/kanban.png"
  750. Click="Tasks_Checked" MinWidth="60" />
  751. <fluent:Button x:Name="DigitalFormsAttendanceButton" Header="In/Out Board"
  752. LargeIcon="pack://application:,,,/Resources/attendance.png"
  753. Click="Attendance_Checked" MinWidth="60" />
  754. <fluent:Button x:Name="DigitalFormsMapButton" Header="Live Maps"
  755. LargeIcon="pack://application:,,,/Resources/map.png" Click="Maps_Checked"
  756. MinWidth="60" />
  757. <fluent:Button x:Name="DigitalFormsDailyReportButton" Header="Daily Report"
  758. LargeIcon="pack://application:,,,/Resources/report.png"
  759. Click="DailyReport_Checked" MinWidth="60" />
  760. <syncfusion:RibbonSeparator x:Name="DigitalFormsTaskSeparator" />
  761. <fluent:Button x:Name="DigitalFormsFormsLibraryButton" Header="Forms Library"
  762. LargeIcon="pack://application:,,,/Resources/checklist.png"
  763. Click="DigitalFormsFormsLibraryButton_Click" MinWidth="60" />
  764. <fluent:Button x:Name="DigitalFormsCompletedFormsButton" Header="Completed Forms"
  765. LargeIcon="pack://application:,,,/Resources/checklist.png"
  766. Click="DigitalFormsCompletedFormsButton_Click" MinWidth="60" />
  767. </fluent:RibbonGroupBox>
  768. </fluent:RibbonTabItem>
  769. <fluent:RibbonTabItem x:Name="DashboardsTab" Header="Dashboards" IsSelected="False" Visibility="Collapsed">
  770. <fluent:RibbonGroupBox x:Name="DashboardsActions" Header="Actions" LauncherClick="ManageModulesClick"
  771. IsLauncherVisible="False">
  772. <fluent:Button Header="Refresh"
  773. LargeIcon="pack://application:,,,/Resources/refresh.png"
  774. Click="RefreshMenu_Click" MinWidth="60" />
  775. <syncfusion:RibbonSeparator />
  776. <fluent:Button x:Name="DashboardsDashboardButton" Header="Dashboards"
  777. LargeIcon="pack://application:,,,/Resources/kpi.png"
  778. Click="Dashboards_Checked" MinWidth="60" />
  779. <fluent:Button x:Name="DashboardMessagesButton" Size="Large"
  780. Header="Notification Centre"
  781. LargeIcon="pack://application:,,,/Resources/email.png"
  782. Click="Messages_Checked" MinWidth="60" />
  783. <fluent:Button x:Name="DashboardsTaskButton" Header="Task List"
  784. LargeIcon="pack://application:,,,/Resources/kanban.png"
  785. Click="Tasks_Checked" MinWidth="60" />
  786. <fluent:Button x:Name="DashboardsAttendanceButton" Header="In/Out Board"
  787. LargeIcon="pack://application:,,,/Resources/attendance.png"
  788. Click="Attendance_Checked" MinWidth="60" />
  789. <fluent:Button x:Name="DashboardsMapButton" Header="Live Maps"
  790. LargeIcon="pack://application:,,,/Resources/map.png" Click="Maps_Checked"
  791. MinWidth="60" />
  792. <fluent:Button x:Name="DashboardsDailyReportButton" Header="Daily Report"
  793. LargeIcon="pack://application:,,,/Resources/report.png"
  794. Click="DailyReport_Checked" MinWidth="60" />
  795. <syncfusion:RibbonSeparator x:Name="DashboardsTaskSeparator" />
  796. <!--This is where the static dashboards need to go-->
  797. <fluent:Button x:Name="FactoryProductivityButton" Header="Factory KPIs"
  798. LargeIcon="pack://application:,,,/Resources/kpi.png"
  799. Click="FactoryProductivityButton_Click" MinWidth="60" />
  800. <fluent:Button x:Name="TemplateAnalysisButton" Header="Template Analysis"
  801. LargeIcon="pack://application:,,,/Resources/kpi.png"
  802. Click="TemplateAnalysisButton_Click" MinWidth="60" />
  803. <fluent:Button x:Name="FactoryAnalysisButton" Header="Factory Analysis"
  804. LargeIcon="pack://application:,,,/Resources/kpi.png"
  805. Click="FactoryAnalysisButton_Click" MinWidth="60" />
  806. <fluent:Button x:Name="DatabaseActivityButton" Header="Database Activity"
  807. LargeIcon="pack://application:,,,/Resources/kpi.png"
  808. Click="DatabaseActivityButton_Click" MinWidth="60" />
  809. <fluent:Button x:Name="UserActivityButton" Header="User Activity"
  810. LargeIcon="pack://application:,,,/Resources/kpi.png"
  811. Click="UserActivityButton_Click" MinWidth="60" />
  812. <fluent:Button x:Name="QuickStatusButton" Header="Quick Status"
  813. LargeIcon="pack://application:,,,/Resources/kpi.png"
  814. Click="QuickStatus_Click" MinWidth="60" />
  815. </fluent:RibbonGroupBox>
  816. <fluent:RibbonGroupBox x:Name="DashboardsReports" Width="Auto" MinWidth="60" Header="Print"
  817. LauncherClick="ManageReportsMenu_Click" Visibility="Collapsed"
  818. IsLauncherVisible="False" />
  819. </fluent:RibbonTabItem>
  820. </fluent:Ribbon>
  821. <Grid Grid.Row="0" Grid.Column="1">
  822. <Grid.ColumnDefinitions>
  823. <ColumnDefinition Width="*" />
  824. <ColumnDefinition Width="*" />
  825. <ColumnDefinition Width="*" />
  826. </Grid.ColumnDefinitions>
  827. <Grid.RowDefinitions>
  828. <RowDefinition Height="30" />
  829. <RowDefinition Height="*" />
  830. </Grid.RowDefinitions>
  831. <fluent:Button
  832. x:Name="SendNotification"
  833. Header="Send Notification"
  834. BorderBrush="Gray"
  835. BorderThickness="0.75"
  836. Margin="0,0,5,0"
  837. Background="WhiteSmoke"
  838. Grid.Row="0"
  839. Grid.Column="2"
  840. Size="Middle"
  841. Icon="Resources/team.png"
  842. HorizontalAlignment="Stretch"
  843. Height="25"
  844. Click="SendNotificationClick" />
  845. <fluent:Button Grid.Row="1" Grid.Column="0"
  846. Header="Setup"
  847. LargeIcon="Resources/view.png"
  848. Click="Setup_Click"
  849. Margin="0,0,5,20"/>
  850. <fluent:Button Grid.Row="1" Grid.Column="1"
  851. Header="Forms"
  852. LargeIcon="Resources/contract.png"
  853. Click="Forms_Click"
  854. Margin="0,0,5,20"/>
  855. <Border Grid.Row="1" Grid.Column="2"
  856. BorderBrush="Silver" BorderThickness="0,0.75,0.75,0.75" Padding="0,0,5,20">
  857. <StackPanel Orientation="Horizontal">
  858. <fluent:Button
  859. Header="Online Help"
  860. LargeIcon="Resources/help.png"
  861. Click="Wiki_Click" />
  862. <fluent:Button
  863. x:Name="EquipmentTechnicalLibrary"
  864. Header="Technical Library"
  865. LargeIcon="Resources/doc-pdf.png"
  866. Click="Library_Click" />
  867. </StackPanel>
  868. </Border>
  869. </Grid>
  870. <DockingManager x:Name="DockingManager"
  871. Grid.Row="1"
  872. Grid.Column="0"
  873. Grid.ColumnSpan="2"
  874. AllowMixedOrientation="True"
  875. AutoWindowSizeWhenOpened="True"
  876. IsVirtualizingAnchorable="True"
  877. IsVirtualizingDocument="True"
  878. Margin="-4,-4,-4,0" Padding="0" BorderBrush="Silver" BorderThickness="0,0.75,0,0">
  879. <DockingManager.Theme>
  880. <MetroTheme />
  881. </DockingManager.Theme>
  882. <DockingManager.Resources>
  883. <!-- DockingManager.Background, LayoutDocumentFloatingWindowControl.Header.Foreground-->
  884. <SolidColorBrush x:Key="AvalonDock_ThemeMetro_BaseColor1"
  885. Color="{Binding Path=(themes:ThemeManager.WorkspaceBackgroundColor)}" />
  886. <!-- AnchorablePaneTitle.DropDownControlArea.Foreground, LayoutAnchorControl.Foreground, LayoutAnchorableFloatingWindowControl.Foreground-->
  887. <SolidColorBrush x:Key="AvalonDock_ThemeMetro_BaseColor2"
  888. Color="{Binding Path=(themes:ThemeManager.WorkspaceForegroundColor)}" />
  889. <!-- TabItem.IsActive.Border, AnchorablePaneTitle.IsActive.Border LayoutAnchorControl.IsActive.Border -->
  890. <!-- LayoutDocumentFolatingWindowControl.IsActive.Border -->
  891. <SolidColorBrush x:Key="AvalonDock_ThemeMetro_BaseColor3"
  892. Color="{Binding Path=(themes:ThemeManager.SelectedTabItemBackgroundColor)}" />
  893. <!-- TabItem.Hover.Border, LayoutAnchorControl.Hover.Border -->
  894. <SolidColorBrush x:Key="AvalonDock_ThemeMetro_BaseColor4"
  895. Color="{Binding Path=(themes:ThemeManager.SelectedTabItemBackgroundColor)}" />
  896. <!-- TabItem.IsSelected.Border, TabItem.IsActive.ForeGround, TabItem.Hover.Foreground, LayoutFloatingWindowControl.Background -->
  897. <SolidColorBrush x:Key="AvalonDock_ThemeMetro_BaseColor5"
  898. Color="{Binding Path=(themes:ThemeManager.WorkspaceForegroundColor)}" />
  899. <!-- FloatingWindowControl.Border, LayoutAnchorableFloatingWindowControl.Border -->
  900. <SolidColorBrush x:Key="AvalonDock_ThemeMetro_BaseColor6"
  901. Color="{Binding Path=(themes:ThemeManager.WorkspaceForegroundColor)}" />
  902. <!-- LayoutGridResizerControl.Background, NavigatorWindow.Background -->
  903. <SolidColorBrush x:Key="AvalonDock_ThemeMetro_BaseColor7" Color="#EEEEEE" />
  904. </DockingManager.Resources>
  905. <LayoutRoot>
  906. <LayoutPanel Orientation="Horizontal">
  907. <LayoutDocumentPaneGroup>
  908. <LayoutDocumentPane x:Name="LayoutDocumentPane" ShowHeader="False">
  909. <LayoutDocument Title="Document 1" ContentId="document1">
  910. <Grid x:Name="DockingGrid">
  911. <Grid.RowDefinitions>
  912. <RowDefinition Height="*" />
  913. </Grid.RowDefinitions>
  914. <Grid.ColumnDefinitions>
  915. <ColumnDefinition Width="*" />
  916. <ColumnDefinition Width="0" />
  917. <ColumnDefinition Width="0" />
  918. </Grid.ColumnDefinitions>
  919. <ContentControl x:Name="ContentControl" HorizontalAlignment="Stretch"
  920. VerticalAlignment="Stretch"
  921. Grid.Column="0" Grid.Row="0" Margin="0,-4,2,-4" />
  922. <syncfusion:SfGridSplitter Grid.Row="0" Grid.Column="1"
  923. ResizeBehavior="PreviousAndNext"
  924. Background="Transparent"
  925. Template="{StaticResource VerticalSplitter}">
  926. <syncfusion:SfGridSplitter.PreviewStyle>
  927. <Style TargetType="Control">
  928. <Setter Property="Background" Value="Gray" />
  929. <Setter Property="Template">
  930. <Setter.Value>
  931. <ControlTemplate TargetType="Control">
  932. <Grid x:Name="Root" Opacity="0.5">
  933. <Rectangle Fill="{TemplateBinding Background}" />
  934. </Grid>
  935. </ControlTemplate>
  936. </Setter.Value>
  937. </Setter>
  938. </Style>
  939. </syncfusion:SfGridSplitter.PreviewStyle>
  940. </syncfusion:SfGridSplitter>
  941. <local:NotificationsDock
  942. x:Name="Notifications"
  943. Grid.Row="0"
  944. Grid.Column="2"
  945. Changed="Notifications_Changed"
  946. Margin="0,-4,0,-4" />
  947. </Grid>
  948. </LayoutDocument>
  949. </LayoutDocumentPane>
  950. </LayoutDocumentPaneGroup>
  951. </LayoutPanel>
  952. <LayoutRoot.LeftSide>
  953. <LayoutAnchorSide>
  954. <LayoutAnchorGroup x:Name="DockGroup">
  955. <LayoutAnchorable
  956. x:Name="ContactDock"
  957. Title="Address Book"
  958. ContentId="contacts"
  959. CanClose="False"
  960. CanFloat="False"
  961. CanHide="False"
  962. CanAutoHide="False"
  963. CanDockAsTabbedDocument="False"
  964. CanMove="False"
  965. AutoHideWidth="500"
  966. FloatingWidth="500"
  967. AutoHideMinWidth="400"
  968. IsActiveChanged="DockPanel_OnIsActiveChanged">
  969. <Border BorderThickness="0.75" BorderBrush="Gray">
  970. <local:ContactDock x:Name="Contacts" />
  971. </Border>
  972. </LayoutAnchorable>
  973. <LayoutAnchorable
  974. x:Name="JobDock"
  975. Title="Projects"
  976. ContentId="projects"
  977. CanClose="False"
  978. CanFloat="False"
  979. CanHide="False"
  980. CanAutoHide="False"
  981. CanDockAsTabbedDocument="False"
  982. CanMove="False"
  983. AutoHideWidth="500"
  984. FloatingWidth="500"
  985. AutoHideMinWidth="400"
  986. IsActiveChanged="DockPanel_OnIsActiveChanged">
  987. <Border BorderThickness="0.75" BorderBrush="Gray">
  988. <local:JobDock x:Name="Jobs" />
  989. </Border>
  990. </LayoutAnchorable>
  991. <LayoutAnchorable
  992. x:Name="ConsignmentDock"
  993. Title="Consignments"
  994. ContentId="consignments"
  995. CanClose="False"
  996. CanFloat="False"
  997. CanHide="False"
  998. CanAutoHide="True"
  999. CanDockAsTabbedDocument="False"
  1000. AutoHideWidth="500"
  1001. FloatingWidth="500"
  1002. AutoHideMinWidth="400"
  1003. IsActiveChanged="DockPanel_OnIsActiveChanged">
  1004. <Border BorderThickness="0.75" BorderBrush="Gray">
  1005. <local:ConsignmentDock x:Name="Consignments" />
  1006. </Border>
  1007. </LayoutAnchorable>
  1008. <LayoutAnchorable
  1009. x:Name="DeliveryDock"
  1010. Title="Deliveries"
  1011. ContentId="deliveries"
  1012. CanClose="False"
  1013. CanFloat="False"
  1014. CanHide="False"
  1015. CanAutoHide="True"
  1016. CanDockAsTabbedDocument="False"
  1017. AutoHideWidth="500"
  1018. FloatingWidth="500"
  1019. AutoHideMinWidth="400"
  1020. IsActiveChanged="DockPanel_OnIsActiveChanged">
  1021. <Border BorderThickness="0.75" BorderBrush="Gray">
  1022. <local:DeliveryDock x:Name="Deliveries" />
  1023. </Border>
  1024. </LayoutAnchorable>
  1025. <LayoutAnchorable
  1026. x:Name="ProductLookupDock"
  1027. Title="Products"
  1028. ContentId="products"
  1029. CanClose="False"
  1030. CanFloat="False"
  1031. CanHide="False"
  1032. CanAutoHide="True"
  1033. CanDockAsTabbedDocument="False"
  1034. AutoHideWidth="500"
  1035. FloatingWidth="500"
  1036. AutoHideMinWidth="400"
  1037. IsActiveChanged="DockPanel_OnIsActiveChanged">
  1038. <Border BorderThickness="0.75" BorderBrush="Gray">
  1039. <local:ProductLookupDock x:Name="ProductLookup" />
  1040. </Border>
  1041. </LayoutAnchorable>
  1042. <LayoutAnchorable
  1043. x:Name="DigitalFormsDock"
  1044. Title="Digital Forms"
  1045. ContentId="digitalforms"
  1046. CanClose="False"
  1047. CanFloat="False"
  1048. CanHide="False"
  1049. CanAutoHide="True"
  1050. CanDockAsTabbedDocument="False"
  1051. AutoHideWidth="500"
  1052. FloatingWidth="500"
  1053. AutoHideMinWidth="400"
  1054. IsActiveChanged="DockPanel_OnIsActiveChanged">
  1055. <Border BorderThickness="0.75" BorderBrush="Gray">
  1056. <local:DigitalFormsDock x:Name="DigitalForms" />
  1057. </Border>
  1058. </LayoutAnchorable>
  1059. </LayoutAnchorGroup>
  1060. </LayoutAnchorSide>
  1061. </LayoutRoot.LeftSide>
  1062. </LayoutRoot>
  1063. </DockingManager>
  1064. <Border Grid.Row="2" Grid.Column="0" Grid.ColumnSpan="2" BorderThickness="0"
  1065. Background="DimGray">
  1066. <Grid>
  1067. <Grid.ColumnDefinitions>
  1068. <ColumnDefinition Width="Auto" />
  1069. <ColumnDefinition Width="*" />
  1070. <ColumnDefinition Width="Auto" />
  1071. <ColumnDefinition Width="Auto" />
  1072. <ColumnDefinition Width="Auto" />
  1073. <ColumnDefinition Width="Auto" />
  1074. <ColumnDefinition Width="Auto" />
  1075. <ColumnDefinition Width="Auto" />
  1076. <ColumnDefinition Width="Auto" />
  1077. <ColumnDefinition Width="100" />
  1078. <ColumnDefinition Width="Auto" />
  1079. </Grid.ColumnDefinitions>
  1080. <Label Grid.Column="0" x:Name="ProfileName" Content="" HorizontalContentAlignment="Center"
  1081. VerticalContentAlignment="Center" Foreground="WhiteSmoke" Padding="20,0,20,0" />
  1082. <Label Grid.Column="1" x:Name="URL" Content="" VerticalContentAlignment="Center" Foreground="WhiteSmoke" />
  1083. <DockPanel x:Name="TaskTracking" Grid.Column="2" Margin="0,0,50,0">
  1084. <Button DockPanel.Dock="Right" BorderBrush="Transparent" Background="Transparent"
  1085. Click="SelectTask_Click" Width="25">
  1086. <Image x:Name="SelectTask" Source="Resources/uparrow.png" />
  1087. </Button>
  1088. <Label x:Name="SelectedTaskName" DockPanel.Dock="Left" VerticalContentAlignment="Center"
  1089. Content="(No Task Selected)" Foreground="WhiteSmoke" />
  1090. </DockPanel>
  1091. <Button Grid.Column="3" x:Name="VideoRecordingButton" BorderThickness="0" Background="Transparent"
  1092. Click="VideoRecordingButton_Click">
  1093. <Image x:Name="VideoRecordingStatus"
  1094. Source="pack://application:,,,/Resources/videorecording.png"
  1095. Height="24" Margin="2" />
  1096. </Button>
  1097. <Button Grid.Column="4" x:Name="RecordingNotesButton" BorderThickness="0" Background="Transparent"
  1098. Click="RecordingNotesButton_Click" Visibility="Hidden">
  1099. <Image x:Name="RecordingNotesStatus" Source="pack://application:,,,/Resources/speechbubble.png"
  1100. Height="24" Margin="2" />
  1101. </Button>
  1102. <Button Grid.Column="5" x:Name="AudioRecordingButton" BorderThickness="0" Background="Transparent"
  1103. Click="AudioRecordingButton_Click" Visibility="Hidden">
  1104. <Image x:Name="AudioRecordingStatus"
  1105. Source="pack://application:,,,/Resources/audiorecording.png"
  1106. Height="24" Margin="2" />
  1107. </Button>
  1108. <Button Grid.Column="6" x:Name="SecondaryWindowButton" BorderThickness="0" Background="Transparent"
  1109. Click="SecondaryWindow_Click" Visibility="Visible">
  1110. <Image x:Name="SecondaryWindowStatus" Source="pack://application:,,,/Resources/target.png"
  1111. Height="24" Margin="2" />
  1112. </Button>
  1113. <Button Grid.Column="7" x:Name="ConsoleButton" BorderThickness="0" Background="Transparent"
  1114. Click="Console_Click" Visibility="Visible">
  1115. <Image x:Name="ConsoleStatus" Source="pack://application:,,,/Resources/view.png" Height="24"
  1116. Margin="2" />
  1117. </Button>
  1118. <Image x:Name="BackgroundUploadStatus"
  1119. Source="pack://application:,,,/Resources/upload.png"
  1120. Height="24" Margin="2"
  1121. Visibility="Hidden"/>
  1122. <Label Grid.Column="9" x:Name="UserID" Content="" HorizontalContentAlignment="Center"
  1123. VerticalContentAlignment="Center" Foreground="WhiteSmoke" />
  1124. <Label Grid.Column="10" x:Name="PasswordExpiryNotice" Content="" HorizontalContentAlignment="Center"
  1125. VerticalContentAlignment="Center" Background="Firebrick" Foreground="Yellow"
  1126. Visibility="Collapsed" />
  1127. </Grid>
  1128. </Border>
  1129. </Grid>
  1130. </fluent:RibbonWindow>