12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112 |
- <fluent:RibbonWindow x:Class="PRSDesktop.MainWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:local="clr-namespace:PRSDesktop"
- mc:Ignorable="d"
- xmlns:syncfusion="http://schemas.syncfusion.com/wpf"
- xmlns:themes="clr-namespace:InABox.WPF.Themes;assembly=InABox.Wpf"
- xmlns:fluent="urn:fluent-ribbon"
- Title="PRS Desktop"
- Height="900" Width="1200" Left="100" Top="100"
- WindowStartupLocation="CenterScreen"
- WindowState="Maximized"
- HorizontalContentAlignment="Stretch"
- VerticalContentAlignment="Stretch"
- Loaded="Window_Loaded"
- Unloaded="Window_Unloaded"
- Closing="Window_Closing"
- Closed="RibbonWindow_Closed"
- PreviewMouseUp="RibbonWindow_PreviewMouseUp"
- PreviewKeyUp="RibbonWindow_PreviewKeyUp"
- Activated="RibbonWindow_Activated"
- Background="{Binding Path=(themes:ThemeManager.WorkspaceBackgroundBrush)}"
- Foreground="{Binding Path=(themes:ThemeManager.WorkspaceForegroundBrush)}"
- TitleBackground="{Binding Path=(themes:ThemeManager.WorkspaceBackgroundBrush)}"
- TitleForeground="{Binding Path=(themes:ThemeManager.WorkspaceForegroundBrush)}"
- NonActiveBorderBrush="{Binding Path=(themes:ThemeManager.BackstageBackgroundBrush)}"
- >
- <!-- GlowBrush="{Binding Path=(themes:ThemeManager.BackstageBackgroundBrush)}" -->
- <!-- NonActiveGlowBrush="{Binding Path=(themes:ThemeManager.WorkspaceBackgroundBrush)}" -->
-
- <fluent:RibbonWindow.Resources>
-
- <!-- <ResourceDictionary> -->
- <SolidColorBrush x:Key="Fluent.Ribbon.Brushes.Backstage.BackButton.Background"
- Color="{Binding Path=(themes:ThemeManager.BackstageBackgroundColor)}" />
- <SolidColorBrush x:Key="Fluent.Ribbon.Brushes.Backstage.BackButton.Foreground"
- Color="{Binding Path=(themes:ThemeManager.BackstageForegroundColor)}" />
- <ControlTemplate x:Key="VerticalSplitter">
- <Grid Background="{TemplateBinding Background}" Width="4">
- <Button x:Name="PART_Left" Visibility="Collapsed" />
- <Button x:Name="PART_Right" Visibility="Collapsed" />
- <StackPanel Margin="0" Orientation="Vertical" VerticalAlignment="Center"
- HorizontalAlignment="Center">
- <Ellipse Fill="Silver" HorizontalAlignment="Center" Height="2" Width="2" Opacity="1"
- Margin="0,2,0,0" />
- <Ellipse Fill="Silver" HorizontalAlignment="Center" Height="2" Width="2" Opacity="1"
- Margin="0,2,0,0" />
- <Ellipse Fill="Silver" HorizontalAlignment="Center" Height="2" Width="2" Opacity="1"
- Margin="0,2,0,0" />
- <Ellipse Fill="Silver" HorizontalAlignment="Center" Height="2" Width="2" Opacity="1"
- Margin="0,2,0,0" />
- <Ellipse Fill="Silver" HorizontalAlignment="Center" Height="2" Width="2" Opacity="1"
- Margin="0,2,0,0" />
- <Ellipse Fill="Silver" HorizontalAlignment="Center" Height="2" Width="2" Opacity="1"
- Margin="0,2,0,0" />
- <Ellipse Fill="Silver" HorizontalAlignment="Center" Height="2" Width="2" Opacity="1"
- Margin="0,2,0,0" />
- </StackPanel>
- </Grid>
- </ControlTemplate>
- <!-- </ResourceDictionary> -->
- </fluent:RibbonWindow.Resources>
- <Grid x:Name="_mainScreen">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="*" />
- <ColumnDefinition Width="Auto" />
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition x:Name="_ribbonRow" Height="Auto" />
- <RowDefinition Height="*" />
- <RowDefinition Height="Auto" />
- </Grid.RowDefinitions>
- <fluent:Ribbon x:Name="_ribbon" Grid.Row="0" Grid.ColumnSpan="2" IsCollapsed="False"
- PreviewMouseDoubleClick="_ribbon_OnPreviewMouseDoubleClick"
- Background="{Binding Path=(themes:ThemeManager.WorkspaceBackgroundBrush)}"
- Foreground="{Binding Path=(themes:ThemeManager.WorkspaceForegroundBrush)}"
- Loaded="_ribbon_OnLoaded"
- >
- <fluent:Ribbon.Menu>
- <fluent:Backstage Header="System"
- Background="{Binding Path=(themes:ThemeManager.BackstageBackgroundBrush)}"
- Foreground="{Binding Path=(themes:ThemeManager.BackstageForegroundBrush)}">
- <fluent:BackstageTabControl
- x:Name="_backstage"
- ItemsPanelBackground="{Binding Path=(themes:ThemeManager.BackstageBackgroundBrush)}"
- Background="{Binding Path=(themes:ThemeManager.WorkspaceBackgroundBrush)}"
- Foreground="{Binding Path=(themes:ThemeManager.WorkspaceForegroundBrush)}">
- <fluent:SeparatorTabItem x:Name="BackstageSeparator" Height="20" />
- <fluent:Button
- x:Name="DatabaseSettings"
- Header="Database Settings"
- Click="DatabaseSettings_OnClick"
- Size="Middle"
- HorizontalAlignment="Stretch"
- Foreground="{Binding Path=(themes:ThemeManager.BackstageForegroundBrush)}" />
- <fluent:SeparatorTabItem x:Name="BackstageSeparator0" Height="20" />
- <fluent:Button
- x:Name="CompanyInformation"
- Header="Company Information"
- Click="CompanyInformation_OnClick"
- Size="Middle"
- HorizontalAlignment="Stretch"
- Foreground="{Binding Path=(themes:ThemeManager.BackstageForegroundBrush)}" />
- <fluent:SeparatorTabItem x:Name="BackstageSeparator1" Height="20" />
- <fluent:Button
- x:Name="SecurityDefaultsButton"
- Header="Security Defaults"
- Click="SecurityDefaultsButton_OnClick"
- Size="Middle"
- HorizontalAlignment="Stretch"
- Foreground="{Binding Path=(themes:ThemeManager.BackstageForegroundBrush)}" />
- <fluent:SeparatorTabItem x:Name="BackstageSeparator1a" Height="20" />
- <fluent:Button
- x:Name="SystemLogsButton"
- Header="View System Logs"
- Click="SystemLogsButton_OnClick"
- Size="Middle"
- HorizontalAlignment="Stretch"
- Foreground="{Binding Path=(themes:ThemeManager.BackstageForegroundBrush)}" />
-
- <fluent:Button
- x:Name="OpenSupportSessionButton"
- Header="Open Support Session"
- Click="OpenSupportSession_OnClick"
- Size="Middle"
- HorizontalAlignment="Stretch"
- Foreground="{Binding Path=(themes:ThemeManager.BackstageForegroundBrush)}" />
-
- <fluent:SeparatorTabItem x:Name="BackstageSeparator2a" Height="20" />
-
- <fluent:Button
- x:Name="CheckForUpdatesButton"
- Header="Check For Updates"
- Click="CheckForUpdates_OnClick"
- Size="Middle"
- HorizontalAlignment="Stretch"
- Foreground="{Binding Path=(themes:ThemeManager.BackstageForegroundBrush)}" />
-
- <fluent:SeparatorTabItem x:Name="BackstageSeparator2" Height="20" />
- <fluent:Button
- x:Name="DocumentTypeList"
- Header="Document Types"
- Click="DocumentTypeList_OnClick"
- Size="Middle"
- HorizontalAlignment="Stretch"
- Foreground="{Binding Path=(themes:ThemeManager.BackstageForegroundBrush)}" />
- <fluent:Button
- x:Name="EventList"
- Header="Events"
- Click="EventList_Click"
- Size="Middle"
- HorizontalAlignment="Stretch"
- Foreground="{Binding Path=(themes:ThemeManager.BackstageForegroundBrush)}" />
- <fluent:SeparatorTabItem x:Name="BackstageSeparator5" Height="20" />
- <fluent:Button
- x:Name="EditDetailsButton"
- VerticalAlignment="Bottom"
- Header="My Details"
- Click="EditDetailsButton_OnClick"
- Size="Middle"
- HorizontalAlignment="Stretch"
- Foreground="{Binding Path=(themes:ThemeManager.BackstageForegroundBrush)}" />
- <fluent:Button
- x:Name="LogoutButton"
- VerticalAlignment="Bottom"
- Header="Log Out"
- Click="LogoutButton_OnClick"
- Size="Middle"
- HorizontalAlignment="Stretch"
- Foreground="{Binding Path=(themes:ThemeManager.BackstageForegroundBrush)}" />
- <fluent:Button
- x:Name="LoginButton"
- VerticalAlignment="Bottom"
- Header="Log In"
- Click="LoginButton_OnClick"
- Size="Middle"
- HorizontalAlignment="Stretch"
- Foreground="{Binding Path=(themes:ThemeManager.BackstageForegroundBrush)}" />
- <fluent:SeparatorTabItem Height="20" />
- <fluent:Button
- x:Name="ExitButton"
- VerticalAlignment="Bottom"
- Header="Exit"
- Click="ExitButton_OnClick"
- Size="Middle"
- HorizontalAlignment="Stretch"
- Foreground="{Binding Path=(themes:ThemeManager.BackstageForegroundBrush)}" />
- </fluent:BackstageTabControl>
- </fluent:Backstage>
- </fluent:Ribbon.Menu>
-
- <fluent:RibbonTabItem x:Name="ProjectsTab" Header="Projects" IsSelected="False" Visibility="Collapsed">
- <fluent:RibbonGroupBox x:Name="ProjectsActions" Header="Actions">
-
- <fluent:Button Header="Refresh"
- LargeIcon="pack://application:,,,/Resources/refresh.png"
- Click="RefreshMenu_Click" />
-
- <syncfusion:RibbonSeparator />
-
- <fluent:Button x:Name="ProjectsDashboardButton" Header="Dashboards"
- LargeIcon="pack://application:,,,/Resources/kpi.png" />
-
- <fluent:Button x:Name="ProjectMessagesButton"
- Header="Notification Centre"
- LargeIcon="pack://application:,,,/Resources/email.png" />
-
- <fluent:Button x:Name="ProjectTaskButton" Header="Task List"
- LargeIcon="pack://application:,,,/Resources/kanban.png" />
-
- <fluent:Button x:Name="ProjectAttendanceButton" Header="In/Out Board"
- LargeIcon="pack://application:,,,/Resources/attendance.png" />
-
- <fluent:Button x:Name="ProjectsMapButton" Header="Live Maps"
- LargeIcon="pack://application:,,,/Resources/map.png" />
-
- <fluent:Button x:Name="ProjectDailyReportButton" Header="Daily Report"
- LargeIcon="pack://application:,,,/Resources/report.png" />
-
- <syncfusion:RibbonSeparator x:Name="ProjectTaskSeparator" />
-
- <fluent:Button x:Name="QuotesButton" Header="Quotes"
- LargeIcon="pack://application:,,,/Resources/quotation.png"
- />
-
- <fluent:Button x:Name="ProjectsButton" Header="Projects"
- LargeIcon="pack://application:,,,/Resources/project.png"
- />
-
- <fluent:Button x:Name="ProjectPlannerButton" Header="Project Planner"
- LargeIcon="pack://application:,,,/Resources/calendar.png"
- />
-
- </fluent:RibbonGroupBox>
-
- <fluent:RibbonGroupBox x:Name="ProjectsSetup" Width="Auto" Header="Setup" Visibility="Collapsed">
-
- <fluent:Button x:Name="KitsMasterList" Header="Product Kits"
- LargeIcon="pack://application:,,,/Resources/kit.png" />
-
- <fluent:Button x:Name="CostSheetsMasterList" Header="Cost Sheets"
- LargeIcon="pack://application:,,,/Resources/costsheet.png" />
-
- </fluent:RibbonGroupBox>
- <fluent:RibbonGroupBox x:Name="ProjectReports" Width="Auto" Header="Print" Visibility="Collapsed"/>
- </fluent:RibbonTabItem>
- <fluent:RibbonTabItem x:Name="ManufacturingTab" Header="Manufacturing" IsSelected="False"
- Visibility="Collapsed">
- <fluent:RibbonGroupBox x:Name="ManufacturingActions" Header="Actions">
-
- <fluent:Button Header="Refresh"
- LargeIcon="pack://application:,,,/Resources/refresh.png"
- Click="RefreshMenu_Click" />
- <syncfusion:RibbonSeparator x:Name="ManufacturingTaskSeparator" />
-
- <fluent:Button x:Name="ManufacturingDashboardButton" Header="Dashboards"
- LargeIcon="pack://application:,,,/Resources/kpi.png" />
-
- <fluent:Button x:Name="ManufacturingMessagesButton"
- Header="Notification Centre"
- LargeIcon="pack://application:,,,/Resources/email.png" />
-
- <fluent:Button x:Name="ManufacturingTaskButton" Header="Task List"
- LargeIcon="pack://application:,,,/Resources/kanban.png" />
-
- <fluent:Button x:Name="ManufacturingAttendanceButton"
- Header="In/Out Board"
- LargeIcon="pack://application:,,,/Resources/attendance.png" />
-
- <fluent:Button x:Name="ManufacturingMapButton" Header="Live Maps"
- LargeIcon="pack://application:,,,/Resources/map.png" />
-
- <fluent:Button x:Name="ManufacturingDailyReportButton"
- Header="Daily Report"
- LargeIcon="pack://application:,,,/Resources/report.png" />
-
- <syncfusion:RibbonSeparator x:Name="ManufacturingDesignSeparator" />
-
- <fluent:Button x:Name="DesignManagementButton" Header="Design Management"
- LargeIcon="pack://application:,,,/Resources/design.png" />
-
- <syncfusion:RibbonSeparator x:Name="ManufacturingActionSeparator" />
-
- <fluent:Button x:Name="FactoryStatusButton" Header="Manufacturing Status"
- LargeIcon="pack://application:,,,/Resources/factory.png" />
-
- <fluent:Button x:Name="FactoryAllocationButton"
- Header="Factory Allocation"
- LargeIcon="pack://application:,,,/Resources/assignments.png" />
-
- <fluent:Button x:Name="FactoryFloorButton" Header="Factory Floor"
- LargeIcon="pack://application:,,,/Resources/wrench.png" />
-
- </fluent:RibbonGroupBox>
- <fluent:RibbonGroupBox x:Name="ManufacturingReports" Width="Auto" Header="Print" Visibility="Collapsed"/>
- </fluent:RibbonTabItem>
- <fluent:RibbonTabItem x:Name="ProductTab" Header="Products" IsSelected="False"
- Visibility="Collapsed">
- <fluent:RibbonGroupBox x:Name="ProductActions" Width="Auto" Header="Actions">
-
- <fluent:Button Header="Refresh"
- LargeIcon="pack://application:,,,/Resources/refresh.png"
- Click="RefreshMenu_Click" />
-
- <syncfusion:RibbonSeparator />
-
- <fluent:Button x:Name="ProductsDashboardButton" Header="Dashboards"
- LargeIcon="pack://application:,,,/Resources/kpi.png" />
-
- <fluent:Button x:Name="ProductsMessagesButton"
- Header="Notification Centre"
- LargeIcon="pack://application:,,,/Resources/email.png" />
-
- <fluent:Button x:Name="ProductsTaskButton" Header="Task List"
- LargeIcon="pack://application:,,,/Resources/kanban.png" />
-
- <fluent:Button x:Name="ProductsAttendanceButton" Header="In/Out Board"
- LargeIcon="pack://application:,,,/Resources/attendance.png" />
-
- <fluent:Button x:Name="ProductsMapButton" Header="Live Maps"
- LargeIcon="pack://application:,,,/Resources/map.png" />
-
- <fluent:Button x:Name="ProductsDailyReportButton" Header="Daily Report"
- LargeIcon="pack://application:,,,/Resources/report.png" />
-
- <syncfusion:RibbonSeparator x:Name="ProductsTaskSeparator" />
-
- <fluent:Button x:Name="ProductsMasterList" Header="Product List"
- LargeIcon="pack://application:,,,/Resources/product.png" />
-
- <fluent:Button x:Name="StockLocationList" Header="Stock Locations"
- LargeIcon="pack://application:,,,/Resources/parcel.png" />
-
- <fluent:Button x:Name="StockMovementList" Header="Stock Movements"
- LargeIcon="pack://application:,,,/Resources/forklift.png" />
-
- <fluent:Button x:Name="StockForecastButton" Header="Stock Forecast"
- LargeIcon="pack://application:,,,/Resources/kpi.png" />
-
- <fluent:Button x:Name="ReservationManagementButton" Header="Reservation Management"
- LargeIcon="pack://application:,,,/Resources/requisition.png" />
-
- </fluent:RibbonGroupBox>
- <fluent:RibbonGroupBox x:Name="ProductReports" Width="Auto" Header="Print" Visibility="Collapsed"/>
- </fluent:RibbonTabItem>
- <fluent:RibbonTabItem x:Name="LogisticsTab" Header="Logistics" IsSelected="False" Visibility="Collapsed">
- <fluent:RibbonGroupBox x:Name="LogisticsActions" Header="Actions">
-
- <fluent:Button Header="Refresh"
- LargeIcon="pack://application:,,,/Resources/refresh.png"
- Click="RefreshMenu_Click" />
-
- <syncfusion:RibbonSeparator />
-
- <fluent:Button x:Name="LogisticsDashboardButton" Header="Dashboards"
- LargeIcon="pack://application:,,,/Resources/kpi.png" />
-
- <fluent:Button x:Name="LogisticsMessagesButton"
- Header="Notification Centre"
- LargeIcon="pack://application:,,,/Resources/email.png" />
-
- <fluent:Button x:Name="LogisticsTaskButton" Header="Task List"
- LargeIcon="pack://application:,,,/Resources/kanban.png" />
-
- <fluent:Button x:Name="LogisticsAttendanceButton" Header="In/Out Board"
- LargeIcon="pack://application:,,,/Resources/attendance.png" />
-
- <fluent:Button x:Name="LogisticsMapButton" Header="Live Maps"
- LargeIcon="pack://application:,,,/Resources/map.png" />
-
- <fluent:Button x:Name="LogisticsDailyReportButton" Header="Daily Report"
- LargeIcon="pack://application:,,,/Resources/report.png" />
-
- <syncfusion:RibbonSeparator x:Name="LogisticsTaskSeparator1" />
-
- <fluent:Button x:Name="ReadyToGoItemsButton" Header="Ready To Go"
- LargeIcon="pack://application:,,,/Resources/truck.png" />
-
- <fluent:Button x:Name="DispatchButton" Header="Rack List"
- LargeIcon="pack://application:,,,/Resources/barcode.png" />
-
- <fluent:Button x:Name="RequisitionsButton" Header="Picking Lists"
- LargeIcon="pack://application:,,,/Resources/box.png" />
-
- <fluent:Button x:Name="DeliveriesButton" Header="Deliveries"
- LargeIcon="pack://application:,,,/Resources/truck.png" />
-
- <fluent:Button x:Name="DeliveredItemsButton" Header="Delivered On Site"
- LargeIcon="pack://application:,,,/Resources/lifter.png" />
-
- <syncfusion:RibbonSeparator x:Name="LogisticsTaskSeparator2" />
-
- <fluent:Button x:Name="ConsignmentButton" Header="Incoming Consignments"
- LargeIcon="pack://application:,,,/Resources/consignment.png" />
-
- </fluent:RibbonGroupBox>
- <fluent:RibbonGroupBox x:Name="LogisticsReports" Width="Auto" Header="Print" Visibility="Collapsed"/>
- </fluent:RibbonTabItem>
- <fluent:RibbonTabItem x:Name="HumanResourcesTab" Header="Human Resources" IsSelected="False"
- Visibility="Collapsed">
- <fluent:RibbonGroupBox x:Name="HumanResourcesActions" Header="Actions">
-
- <fluent:Button Header="Refresh"
- LargeIcon="pack://application:,,,/Resources/refresh.png"
- Click="RefreshMenu_Click" />
-
- <syncfusion:RibbonSeparator />
-
- <fluent:Button x:Name="HumanResourcesDashboardButton" Header="Dashboards"
- LargeIcon="pack://application:,,,/Resources/kpi.png" />
-
- <fluent:Button x:Name="HumanResourcesMessagesButton"
- Header="Notification Centre"
- LargeIcon="pack://application:,,,/Resources/email.png" />
-
- <fluent:Button x:Name="HumanResourcesTaskButton" Header="Task List"
- LargeIcon="pack://application:,,,/Resources/kanban.png" />
-
- <fluent:Button x:Name="HumanResourcesAttendanceButton"
- Header="In/Out Board"
- LargeIcon="pack://application:,,,/Resources/attendance.png" />
-
- <fluent:Button x:Name="HumanResourcesMapButton" Header="Live Maps"
- LargeIcon="pack://application:,,,/Resources/map.png" />
-
- <fluent:Button x:Name="HumanResourcesDailyReportButton"
- Header="Daily Report"
- LargeIcon="pack://application:,,,/Resources/report.png" />
-
- <syncfusion:RibbonSeparator x:Name="HumanResourcesTaskSeparator" />
-
- <fluent:Button x:Name="CalendarButton" Header="Calendar"
- LargeIcon="pack://application:,,,/Resources/assignments.png" />
-
- <fluent:Button x:Name="EmployeePlannerButton" Header="Employee Planner"
- LargeIcon="pack://application:,,,/Resources/calendar.png" />
-
- <fluent:Button x:Name="TimesheetsButton" Header="Staff TimeSheets"
- LargeIcon="pack://application:,,,/Resources/clock.png" />
-
- <fluent:Button x:Name="LeaveRequestsButton" Header="Leave Requests"
- LargeIcon="pack://application:,,,/Resources/leave.png" />
-
- <fluent:Button x:Name="MeetingsButton" Header="Meetings"
- LargeIcon="pack://application:,,,/Resources/employees.png" />
-
- <syncfusion:RibbonSeparator x:Name="HumanResourcesSetupSeparator1" />
-
- <fluent:Button x:Name="UsersButton" Header="User Accounts"
- LargeIcon="pack://application:,,,/Resources/user.png" />
-
- <fluent:Button x:Name="EmployeesButton" Header="Employee List"
- LargeIcon="pack://application:,,,/Resources/employee.png" />
-
- <fluent:Button x:Name="OrgChartButton" Header="Org Chart"
- LargeIcon="pack://application:,,,/Resources/orgchart.png" />
-
- </fluent:RibbonGroupBox>
- <fluent:RibbonGroupBox x:Name="HumanResourcesReports" Width="Auto" Header="Print" Visibility="Collapsed"/>
-
- </fluent:RibbonTabItem>
- <fluent:RibbonTabItem x:Name="AccountsTab" Header="Accounts" IsSelected="False" Visibility="Collapsed">
- <fluent:RibbonGroupBox x:Name="AccountsActions" Header="Actions">
-
- <fluent:Button Header="Refresh"
- LargeIcon="pack://application:,,,/Resources/refresh.png"
- Click="RefreshMenu_Click" />
-
- <syncfusion:RibbonSeparator />
-
- <fluent:Button x:Name="AccountsDashboardButton" Header="Dashboards"
- LargeIcon="pack://application:,,,/Resources/kpi.png" />
-
- <fluent:Button x:Name="AccountsMessagesButton"
- Header="Notification Centre"
- LargeIcon="pack://application:,,,/Resources/email.png" />
-
- <fluent:Button x:Name="AccountsTaskButton" Header="Task List"
- LargeIcon="pack://application:,,,/Resources/kanban.png" />
-
- <fluent:Button x:Name="AccountsAttendanceButton" Header="In/Out Board"
- LargeIcon="pack://application:,,,/Resources/attendance.png" />
-
- <fluent:Button x:Name="AccountsMapButton" Header="Live Maps"
- LargeIcon="pack://application:,,,/Resources/map.png" />
-
- <fluent:Button x:Name="AccountsDailyReportButton" Header="Daily Report"
- LargeIcon="pack://application:,,,/Resources/report.png" />
-
- <syncfusion:RibbonSeparator x:Name="AccountsTaskSeparator1" />
-
- <fluent:Button x:Name="CustomerList" Header="Customers"
- LargeIcon="pack://application:,,,/Resources/customer.png" />
-
- <fluent:Button x:Name="InvoiceList" Header="Invoices"
- LargeIcon="pack://application:,,,/Resources/invoice.png" />
-
- <fluent:Button x:Name="ReceiptList" Header="Receipts"
- LargeIcon="pack://application:,,,/Resources/receipt.png" />
-
- <syncfusion:RibbonSeparator x:Name="AccountsTaskSeparator2" />
-
- <fluent:Button x:Name="SupplierList" Header="Suppliers"
- LargeIcon="pack://application:,,,/Resources/supplier.png" />
-
- <fluent:Button x:Name="AccountsDataButton" Header="Data Entry"
- LargeIcon="pack://application:,,,/Resources/pencil.png" />
-
- <fluent:Button x:Name="PurchasesList" Header="Purchase Orders"
- LargeIcon="pack://application:,,,/Resources/purchase.png" />
-
- <fluent:Button x:Name="BillsList" Header="Bills"
- LargeIcon="pack://application:,,,/Resources/bill.png" />
-
- <fluent:Button x:Name="PaymentsList" Header="Payments"
- LargeIcon="pack://application:,,,/Resources/payment.png" />
-
- </fluent:RibbonGroupBox>
- <fluent:RibbonGroupBox x:Name="AccountsReports" Width="Auto" Header="Print" Visibility="Collapsed"/>
-
- </fluent:RibbonTabItem>
- <fluent:RibbonTabItem x:Name="EquipmentTab" Header="Equipment" IsSelected="True" Visibility="Collapsed">
- <fluent:RibbonGroupBox x:Name="EquipmentActions" Width="Auto" Header="Actions">
- <fluent:Button Header="Refresh"
- LargeIcon="pack://application:,,,/Resources/refresh.png"
- Click="RefreshMenu_Click" />
-
- <syncfusion:RibbonSeparator />
-
- <fluent:Button x:Name="EquipmentDashboardButton" Header="Dashboards"
- LargeIcon="pack://application:,,,/Resources/kpi.png" />
-
- <fluent:Button x:Name="EquipmentMessagesButton"
- Header="Notification Centre"
- LargeIcon="pack://application:,,,/Resources/email.png" />
-
- <fluent:Button x:Name="EquipmentTaskButton" Header="Task List"
- LargeIcon="pack://application:,,,/Resources/kanban.png" />
-
- <fluent:Button x:Name="EquipmentAttendanceButton" Header="In/Out Board"
- LargeIcon="pack://application:,,,/Resources/attendance.png" />
-
- <fluent:Button x:Name="EquipmentMapButton" Header="Live Maps"
- LargeIcon="pack://application:,,,/Resources/map.png" />
-
- <fluent:Button x:Name="EquipmentDailyReportButton" Header="Daily Report"
- LargeIcon="pack://application:,,,/Resources/report.png" />
-
- <syncfusion:RibbonSeparator x:Name="EquipmentTaskSeparator" />
-
- <fluent:Button x:Name="EquipmentButton" Header="Equipment List"
- LargeIcon="pack://application:,,,/Resources/specifications.png"/>
-
- <fluent:Button x:Name="EquipmentMaintenanceButton" Header="Planned Maintenance"
- LargeIcon="pack://application:,,,/Resources/service.png" />
-
- <fluent:Button x:Name="EquipmentPlannerButton" Header="Equipment Planner"
- LargeIcon="pack://application:,,,/Resources/calendar.png" />
-
- <fluent:Button x:Name="TrackersMasterList" Header="GPS Trackers"
- LargeIcon="pack://application:,,,/Resources/milestone.png" />
-
- </fluent:RibbonGroupBox>
- <fluent:RibbonGroupBox x:Name="EquipmentReports" Width="Auto" Header="Print" Visibility="Collapsed"/>
- </fluent:RibbonTabItem>
- <fluent:RibbonTabItem x:Name="DigitalFormsTab" Header="Digital Forms" IsSelected="False" Visibility="Collapsed">
- <fluent:RibbonGroupBox x:Name="DigitalFormsActions" Width="Auto" Header="Actions">
- <fluent:Button Header="Refresh"
- LargeIcon="pack://application:,,,/Resources/refresh.png"
- Click="RefreshMenu_Click" />
-
- <syncfusion:RibbonSeparator />
-
- <fluent:Button x:Name="DigitalFormsDashboardButton" Header="Dashboards"
- LargeIcon="pack://application:,,,/Resources/kpi.png" />
-
- <fluent:Button x:Name="DigitalFormsMessagesButton"
- Header="Notification Centre"
- LargeIcon="pack://application:,,,/Resources/email.png" />
-
- <fluent:Button x:Name="DigitalFormsTaskButton" Header="Task List"
- LargeIcon="pack://application:,,,/Resources/kanban.png" />
-
- <fluent:Button x:Name="DigitalFormsAttendanceButton" Header="In/Out Board"
- LargeIcon="pack://application:,,,/Resources/attendance.png" />
-
- <fluent:Button x:Name="DigitalFormsMapButton" Header="Live Maps"
- LargeIcon="pack://application:,,,/Resources/map.png" />
-
- <fluent:Button x:Name="DigitalFormsDailyReportButton" Header="Daily Report"
- LargeIcon="pack://application:,,,/Resources/report.png" />
-
- <syncfusion:RibbonSeparator x:Name="DigitalFormsTaskSeparator" />
-
- <fluent:Button x:Name="DigitalFormsFormsLibraryButton" Header="Forms Library"
- LargeIcon="pack://application:,,,/Resources/formslibrary.png" />
-
- <fluent:Button x:Name="DigitalFormsCompletedFormsButton" Header="Forms Dashboard"
- LargeIcon="pack://application:,,,/Resources/forminstance.png" />
-
- </fluent:RibbonGroupBox>
- <fluent:RibbonGroupBox x:Name="DigitalFormReports" Width="Auto" Header="Print" Visibility="Collapsed"/>
- </fluent:RibbonTabItem>
- <fluent:RibbonTabItem x:Name="DashboardsTab" Header="Dashboards" IsSelected="False" Visibility="Collapsed">
- <fluent:RibbonGroupBox x:Name="DashboardsActions" Header="Actions">
-
- <fluent:Button Header="Refresh"
- LargeIcon="pack://application:,,,/Resources/refresh.png"
- Click="RefreshMenu_Click" />
-
- <syncfusion:RibbonSeparator />
-
- <fluent:Button x:Name="DashboardsDashboardButton" Header="Dashboards"
- LargeIcon="pack://application:,,,/Resources/kpi.png" />
-
- <fluent:Button x:Name="DashboardMessagesButton"
- Header="Notification Centre"
- LargeIcon="pack://application:,,,/Resources/email.png" />
-
- <fluent:Button x:Name="DashboardsTaskButton" Header="Task List"
- LargeIcon="pack://application:,,,/Resources/kanban.png" />
-
- <fluent:Button x:Name="DashboardsAttendanceButton" Header="In/Out Board"
- LargeIcon="pack://application:,,,/Resources/attendance.png" />
-
- <fluent:Button x:Name="DashboardsMapButton" Header="Live Maps"
- LargeIcon="pack://application:,,,/Resources/map.png" />
-
- <fluent:Button x:Name="DashboardsDailyReportButton" Header="Daily Report"
- LargeIcon="pack://application:,,,/Resources/report.png" />
-
- <syncfusion:RibbonSeparator x:Name="DashboardsTaskSeparator" />
-
- <!--This is where the static dashboards need to go-->
- <fluent:Button x:Name="FactoryProductivityButton" Header="Factory KPIs"
- LargeIcon="pack://application:,,,/Resources/kpi.png" />
-
- <fluent:Button x:Name="TemplateAnalysisButton" Header="Template Analysis"
- LargeIcon="pack://application:,,,/Resources/kpi.png" />
-
- <fluent:Button x:Name="FactoryAnalysisButton" Header="Factory Analysis"
- LargeIcon="pack://application:,,,/Resources/kpi.png" />
-
- <fluent:Button x:Name="DatabaseActivityButton" Header="Database Activity"
- LargeIcon="pack://application:,,,/Resources/kpi.png" />
-
- <fluent:Button x:Name="UserActivityButton" Header="User Activity"
- LargeIcon="pack://application:,,,/Resources/kpi.png" />
-
- <fluent:Button x:Name="QuickStatusButton" Header="Quick Status"
- LargeIcon="pack://application:,,,/Resources/kpi.png" />
-
- </fluent:RibbonGroupBox>
- <fluent:RibbonGroupBox x:Name="DashboardsReports" Width="Auto" Header="Print" Visibility="Collapsed"/>
- </fluent:RibbonTabItem>
- </fluent:Ribbon>
- <Grid Grid.Row="0" Grid.Column="1">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="*" />
- <ColumnDefinition Width="*" />
- <ColumnDefinition Width="*" />
- <ColumnDefinition Width="*" />
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition Height="30" />
- <RowDefinition Height="*" />
- </Grid.RowDefinitions>
- <fluent:Button
- x:Name="SendNotification"
- Header="Send Notification"
- BorderBrush="Gray"
- BorderThickness="0.75"
- Margin="0,0,5,0"
- Background="WhiteSmoke"
- Grid.Row="0"
- Grid.Column="3"
- Size="Middle"
- Icon="Resources/team.png"
- HorizontalAlignment="Stretch"
- Height="25"
- Click="SendNotificationClick" />
- <fluent:Button Grid.Row="1" Grid.Column="0"
- Header="Setup"
- LargeIcon="Resources/view.png"
- Click="Setup_Click"
- Margin="0,0,5,20"/>
- <fluent:Button Grid.Row="1" Grid.Column="1"
- Header="Forms"
- LargeIcon="Resources/contract.png"
- Click="Forms_Click"
- Margin="0,0,5,20"/>
-
- <fluent:Button Grid.Row="1" Grid.Column="2"
- x:Name="IssuesButton"
- Header="Support Tickets"
- LargeIcon="pack://application:,,,/Resources/appicon.png"
- Click="Issues_Click"
- ToolTip="Raise an issue with the PRS team"
- Margin="0,0,5,20"/>
- <Border Grid.Row="1" Grid.Column="3"
- BorderBrush="Silver" BorderThickness="0,0.75,0.75,0.75" Padding="0,0,5,20">
- <StackPanel Orientation="Horizontal">
-
- <fluent:Button
- Header="Online Help"
- LargeIcon="Resources/help.png"
- Click="Wiki_Click" />
- <fluent:Button
- x:Name="EquipmentTechnicalLibrary"
- Header="Technical Library"
- LargeIcon="Resources/doc-pdf.png"
- Click="Library_Click" />
- </StackPanel>
- </Border>
- </Grid>
- <DockingManager x:Name="DockingManager"
- Grid.Row="1"
- Grid.Column="0"
- Grid.ColumnSpan="2"
- AllowMixedOrientation="True"
- AutoWindowSizeWhenOpened="True"
- IsVirtualizingAnchorable="True"
- IsVirtualizingDocument="True"
- Margin="-4,-4,-4,0" Padding="0" BorderBrush="Silver" BorderThickness="0,0.75,0,0">
- <DockingManager.Theme>
- <MetroTheme />
- </DockingManager.Theme>
- <DockingManager.Resources>
- <!-- DockingManager.Background, LayoutDocumentFloatingWindowControl.Header.Foreground-->
- <SolidColorBrush x:Key="AvalonDock_ThemeMetro_BaseColor1"
- Color="{Binding Path=(themes:ThemeManager.WorkspaceBackgroundColor)}" />
- <!-- AnchorablePaneTitle.DropDownControlArea.Foreground, LayoutAnchorControl.Foreground, LayoutAnchorableFloatingWindowControl.Foreground-->
- <SolidColorBrush x:Key="AvalonDock_ThemeMetro_BaseColor2"
- Color="{Binding Path=(themes:ThemeManager.WorkspaceForegroundColor)}" />
- <!-- TabItem.IsActive.Border, AnchorablePaneTitle.IsActive.Border LayoutAnchorControl.IsActive.Border -->
- <!-- LayoutDocumentFolatingWindowControl.IsActive.Border -->
- <SolidColorBrush x:Key="AvalonDock_ThemeMetro_BaseColor3"
- Color="{Binding Path=(themes:ThemeManager.SelectedTabItemBackgroundColor)}" />
- <!-- TabItem.Hover.Border, LayoutAnchorControl.Hover.Border -->
- <SolidColorBrush x:Key="AvalonDock_ThemeMetro_BaseColor4"
- Color="{Binding Path=(themes:ThemeManager.SelectedTabItemBackgroundColor)}" />
- <!-- TabItem.IsSelected.Border, TabItem.IsActive.ForeGround, TabItem.Hover.Foreground, LayoutFloatingWindowControl.Background -->
- <SolidColorBrush x:Key="AvalonDock_ThemeMetro_BaseColor5"
- Color="{Binding Path=(themes:ThemeManager.WorkspaceForegroundColor)}" />
- <!-- FloatingWindowControl.Border, LayoutAnchorableFloatingWindowControl.Border -->
- <SolidColorBrush x:Key="AvalonDock_ThemeMetro_BaseColor6"
- Color="{Binding Path=(themes:ThemeManager.WorkspaceForegroundColor)}" />
- <!-- LayoutGridResizerControl.Background, NavigatorWindow.Background -->
- <SolidColorBrush x:Key="AvalonDock_ThemeMetro_BaseColor7" Color="#EEEEEE" />
- </DockingManager.Resources>
- <LayoutRoot>
- <LayoutPanel Orientation="Horizontal">
- <LayoutDocumentPaneGroup>
- <LayoutDocumentPane x:Name="LayoutDocumentPane" ShowHeader="False">
- <LayoutDocument Title="Document 1" ContentId="document1">
- <Grid x:Name="DockingGrid">
- <Grid.RowDefinitions>
- <RowDefinition Height="*" />
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="*" />
- <ColumnDefinition Width="0" />
- <ColumnDefinition Width="0" />
- </Grid.ColumnDefinitions>
- <ContentControl x:Name="ContentControl" HorizontalAlignment="Stretch"
- VerticalAlignment="Stretch"
- Grid.Column="0" Grid.Row="0" Margin="0,-4,2,-4" />
- <syncfusion:SfGridSplitter Grid.Row="0" Grid.Column="1"
- ResizeBehavior="PreviousAndNext"
- Background="Transparent"
- Template="{StaticResource VerticalSplitter}">
- <syncfusion:SfGridSplitter.PreviewStyle>
- <Style TargetType="Control">
- <Setter Property="Background" Value="Gray" />
- <Setter Property="Template">
- <Setter.Value>
- <ControlTemplate TargetType="Control">
- <Grid x:Name="Root" Opacity="0.5">
- <Rectangle Fill="{TemplateBinding Background}" />
- </Grid>
- </ControlTemplate>
- </Setter.Value>
- </Setter>
- </Style>
- </syncfusion:SfGridSplitter.PreviewStyle>
- </syncfusion:SfGridSplitter>
- <local:NotificationsDock
- x:Name="Notifications"
- Grid.Row="0"
- Grid.Column="2"
- Changed="Notifications_Changed"
- Margin="0,-4,0,-4" />
- </Grid>
- </LayoutDocument>
- </LayoutDocumentPane>
- </LayoutDocumentPaneGroup>
- </LayoutPanel>
- <LayoutRoot.LeftSide>
- <LayoutAnchorSide>
- <LayoutAnchorGroup x:Name="DockGroup">
- <LayoutAnchorable
- x:Name="ContactDock"
- Title="Address Book"
- ContentId="contacts"
- CanClose="False"
- CanFloat="False"
- CanHide="False"
- CanAutoHide="False"
- CanDockAsTabbedDocument="False"
- CanMove="False"
- AutoHideWidth="500"
- FloatingWidth="500"
- AutoHideMinWidth="400"
- IsActiveChanged="DockPanel_OnIsActiveChanged">
- <Border BorderThickness="0.75" BorderBrush="Gray" Margin="0,4,0,0" Padding="4" Background="WhiteSmoke">
- <local:ContactDock x:Name="Contacts" />
- </Border>
- </LayoutAnchorable>
- <LayoutAnchorable
- x:Name="JobDock"
- Title="Projects"
- ContentId="projects"
- CanClose="False"
- CanFloat="False"
- CanHide="False"
- CanAutoHide="False"
- CanDockAsTabbedDocument="False"
- CanMove="False"
- AutoHideWidth="500"
- FloatingWidth="500"
- AutoHideMinWidth="400"
- IsActiveChanged="DockPanel_OnIsActiveChanged">
- <Border BorderThickness="0.75" BorderBrush="Gray" Margin="0,4,0,0" Padding="4" Background="WhiteSmoke">
- <local:JobDock x:Name="Jobs" />
- </Border>
- </LayoutAnchorable>
- <LayoutAnchorable
- x:Name="ConsignmentDock"
- Title="Consignments"
- ContentId="consignments"
- CanClose="False"
- CanFloat="False"
- CanHide="False"
- CanAutoHide="True"
- CanDockAsTabbedDocument="False"
- AutoHideWidth="500"
- FloatingWidth="500"
- AutoHideMinWidth="400"
- IsActiveChanged="DockPanel_OnIsActiveChanged">
- <Border BorderThickness="0.75" BorderBrush="Gray" Margin="0,4,0,0" Padding="4" Background="WhiteSmoke">
- <local:ConsignmentDock x:Name="Consignments" />
- </Border>
- </LayoutAnchorable>
- <LayoutAnchorable
- x:Name="DeliveryDock"
- Title="Deliveries"
- ContentId="deliveries"
- CanClose="False"
- CanFloat="False"
- CanHide="False"
- CanAutoHide="True"
- CanDockAsTabbedDocument="False"
- AutoHideWidth="500"
- FloatingWidth="500"
- AutoHideMinWidth="400"
- IsActiveChanged="DockPanel_OnIsActiveChanged">
- <Border BorderThickness="0.75" BorderBrush="Gray" Margin="0,4,0,0" Padding="4" Background="WhiteSmoke">
- <local:DeliveryDock x:Name="Deliveries" />
- </Border>
- </LayoutAnchorable>
- <LayoutAnchorable
- x:Name="ProductLookupDock"
- Title="Products"
- ContentId="products"
- CanClose="False"
- CanFloat="False"
- CanHide="False"
- CanAutoHide="True"
- CanDockAsTabbedDocument="False"
- AutoHideWidth="500"
- FloatingWidth="500"
- AutoHideMinWidth="400"
- IsActiveChanged="DockPanel_OnIsActiveChanged">
- <Border BorderThickness="0.75" BorderBrush="Gray" Margin="0,4,0,0" Padding="4" Background="WhiteSmoke">
- <local:ProductLookupDock x:Name="ProductLookup" />
- </Border>
- </LayoutAnchorable>
-
- <LayoutAnchorable
- x:Name="DigitalFormsDock"
- Title="Digital Forms"
- ContentId="digitalforms"
- CanClose="False"
- CanFloat="False"
- CanHide="False"
- CanAutoHide="True"
- CanDockAsTabbedDocument="False"
- AutoHideWidth="500"
- FloatingWidth="500"
- AutoHideMinWidth="400"
- IsActiveChanged="DockPanel_OnIsActiveChanged">
- <Border BorderThickness="0.75" BorderBrush="Gray" Margin="0,4,0,0" Padding="4" Background="WhiteSmoke">
- <local:DigitalFormsDock x:Name="DigitalForms" />
- </Border>
- </LayoutAnchorable>
-
- <LayoutAnchorable
- x:Name="ProblemsDock"
- Title="Issues Centre"
- ContentId="problems"
- CanClose="False"
- CanFloat="False"
- CanHide="False"
- CanAutoHide="True"
- CanDockAsTabbedDocument="False"
- AutoHideWidth="500"
- FloatingWidth="500"
- AutoHideMinWidth="400"
- IsActiveChanged="DockPanel_OnIsActiveChanged">
- <Border BorderThickness="0.75" BorderBrush="Gray" Margin="0,4,0,0" Padding="4" Background="WhiteSmoke">
- <local:ProblemsDock x:Name="Problems" />
- </Border>
- </LayoutAnchorable>
-
- <LayoutAnchorable
- x:Name="RequisitionsDock"
- Title="Requisitions"
- ContentId="requisitions"
- CanClose="False"
- CanFloat="False"
- CanHide="False"
- CanAutoHide="True"
- CanDockAsTabbedDocument="False"
- AutoHideWidth="500"
- FloatingWidth="500"
- AutoHideMinWidth="400"
- IsActiveChanged="DockPanel_OnIsActiveChanged">
- <Border BorderThickness="0.75" BorderBrush="Gray" Margin="0,4,0,0" Padding="4" Background="WhiteSmoke">
- <local:RequisitionsDock x:Name="Requisitions" />
- </Border>
- </LayoutAnchorable>
-
- </LayoutAnchorGroup>
- </LayoutAnchorSide>
- </LayoutRoot.LeftSide>
- </LayoutRoot>
- </DockingManager>
- <Border Grid.Row="2" Grid.Column="0" Grid.ColumnSpan="2" BorderThickness="0"
- Background="DimGray">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="Auto" />
- <ColumnDefinition Width="*" />
- <ColumnDefinition Width="Auto" />
- <ColumnDefinition Width="Auto" />
- <ColumnDefinition Width="Auto" />
- <ColumnDefinition Width="Auto" />
- <ColumnDefinition Width="Auto" />
- </Grid.ColumnDefinitions>
-
- <Label Grid.Column="0" x:Name="ProfileName" Content="" HorizontalContentAlignment="Center"
- VerticalContentAlignment="Center" Foreground="WhiteSmoke" Padding="20,0,20,0" />
-
- <Label Grid.Column="1" x:Name="URL" Content="" VerticalContentAlignment="Center" Foreground="WhiteSmoke" />
- <DockPanel x:Name="TaskTracking" Grid.Column="2" Margin="0,0,50,0">
- <Button DockPanel.Dock="Right" BorderBrush="Transparent" Background="Transparent"
- Click="SelectTask_Click" Width="25">
- <Image x:Name="SelectTask" Source="Resources/uparrow.png" />
- </Button>
- <Label x:Name="SelectedTaskName" DockPanel.Dock="Left" VerticalContentAlignment="Center"
- Content="(No Task Selected)" Foreground="WhiteSmoke" />
- </DockPanel>
- <!-- <Button Grid.Column="3" x:Name="VideoRecordingButton" BorderThickness="0" Background="Transparent" -->
- <!-- Click="VideoRecordingButton_Click"> -->
- <!-- <Image x:Name="VideoRecordingStatus" -->
- <!-- Source="pack://application:,,,/Resources/videorecording.png" -->
- <!-- Height="24" Margin="2" /> -->
- <!-- </Button> -->
- <!-- -->
- <!-- <Button Grid.Column="4" x:Name="RecordingNotesButton" BorderThickness="0" Background="Transparent" -->
- <!-- Click="RecordingNotesButton_Click" Visibility="Hidden"> -->
- <!-- <Image x:Name="RecordingNotesStatus" Source="pack://application:,,,/Resources/speechbubble.png" -->
- <!-- Height="24" Margin="2" /> -->
- <!-- </Button> -->
- <!-- -->
- <!-- <Button Grid.Column="5" x:Name="AudioRecordingButton" BorderThickness="0" Background="Transparent" -->
- <!-- Click="AudioRecordingButton_Click" Visibility="Hidden"> -->
- <!-- <Image x:Name="AudioRecordingStatus" -->
- <!-- Source="pack://application:,,,/Resources/audiorecording.png" -->
- <!-- Height="24" Margin="2" /> -->
- <!-- </Button> -->
- <Button Grid.Column="3" x:Name="ConsoleButton" BorderThickness="0" Background="Transparent"
- Click="Console_Click" Visibility="Visible">
- <Image x:Name="ConsoleStatus" Source="pack://application:,,,/Resources/view.png" Height="24"
- Margin="2" />
- </Button>
-
- <Image x:Name="BackgroundUploadStatus"
- Grid.Column="4"
- Source="pack://application:,,,/Resources/upload.png"
- Height="24" Margin="2"
- Visibility="Hidden"/>
-
- <Label Grid.Column="5" x:Name="UserID" Content="" HorizontalContentAlignment="Center"
- VerticalContentAlignment="Center" Foreground="WhiteSmoke" Margin="5,0,5,0" />
-
- <Label Grid.Column="6" x:Name="PasswordExpiryNotice" Content="" HorizontalContentAlignment="Center"
- VerticalContentAlignment="Center" Background="Firebrick" Foreground="Yellow"
- Visibility="Collapsed" Margin="5,0,5,0" />
-
- </Grid>
- </Border>
- </Grid>
- </fluent:RibbonWindow>
|