Add Phoenix remote desktop, action connector, documentation engine, and gamification support. Refactor support-case processing and search/action UI, and update installer assets and dependencies.
73 lines
3.8 KiB
XML
73 lines
3.8 KiB
XML
<UserControl x:Class="FasdDesktopUi.Basics.UserControls.InformationClassSearchBar"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:local="clr-namespace:FasdDesktopUi.Basics.UserControls"
|
|
xmlns:ico="clr-namespace:FasdDesktopUi.Basics.UserControls.AdaptableIcon;assembly=F4SD-AdaptableIcon"
|
|
xmlns:vc="clr-namespace:FasdDesktopUi.Basics.Converter"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="450"
|
|
d:DesignWidth="800"
|
|
Name="_this"
|
|
IsVisibleChanged="BlurInvoker_IsActiveChanged">
|
|
|
|
<UserControl.Resources>
|
|
<vc:LanguageDefinitionsConverter x:Key="LanguageConverter" />
|
|
</UserControl.Resources>
|
|
|
|
<Border Background="{DynamicResource BackgroundColor.Menu.Categories}"
|
|
CornerRadius="17.5"
|
|
Margin="-2.5"
|
|
Padding="2.5"
|
|
VerticalAlignment="Bottom"
|
|
x:Name="BackgroundBorder"
|
|
x:FieldModifier="private">
|
|
|
|
<DockPanel>
|
|
<ico:AdaptableIcon x:Name="PhoneCallIndicator"
|
|
x:FieldModifier="private"
|
|
DockPanel.Dock="Left"
|
|
Style="{DynamicResource Menu.MenuBar.PinnedIcon}"
|
|
IconBackgroundColor="Transparent"
|
|
Visibility="Collapsed"
|
|
SelectedMaterialIcon="ic_phone" />
|
|
|
|
<ico:AdaptableIcon x:Name="ComputerCallIndicator"
|
|
x:FieldModifier="private"
|
|
DockPanel.Dock="Left"
|
|
Style="{DynamicResource Menu.MenuBar.PinnedIcon}"
|
|
IconBackgroundColor="Transparent"
|
|
Visibility="Collapsed"
|
|
SelectedInternIcon="misc_computer" />
|
|
|
|
<ico:AdaptableIcon x:Name="UserCallIndicator"
|
|
x:FieldModifier="private"
|
|
DockPanel.Dock="Left"
|
|
Style="{DynamicResource Menu.MenuBar.PinnedIcon}"
|
|
IconBackgroundColor="Transparent"
|
|
Visibility="Collapsed"
|
|
SelectedInternIcon="misc_user" />
|
|
|
|
<ico:AdaptableIcon x:Name="WarningIndicator"
|
|
x:FieldModifier="private"
|
|
DockPanel.Dock="Left"
|
|
Style="{DynamicResource Menu.MenuBar.PinnedIcon}"
|
|
IconBackgroundColor="Transparent"
|
|
PrimaryIconColor="{DynamicResource HighlightColor.Orange}"
|
|
Visibility="Collapsed"
|
|
SelectedInternIcon="status_bad" />
|
|
|
|
<local:SearchBar x:Name="InnerSearchBar"
|
|
x:FieldModifier="private"
|
|
SearchButtonSize="{Binding SearchButtonSize, ElementName=_this}"
|
|
CloseButtonSize="{Binding CloseButtonSize, ElementName=_this}"
|
|
PlaceholderText="{Binding Converter={StaticResource LanguageConverter}, ConverterParameter=Searchbar.Placeholder.UserName}"
|
|
ShowCloseButton="True"
|
|
ShowSearchButton="True"
|
|
SearchValueChanged="InnerSearchBar_SearchValueChanged"
|
|
CancelledSearch="InnerSearchBar_CancelledSearch" />
|
|
</DockPanel>
|
|
</Border>
|
|
</UserControl>
|