mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Add InfoBar Control
This commit is contained in:
parent
9486355102
commit
43330db969
3 changed files with 52 additions and 5 deletions
|
|
@ -114,10 +114,20 @@
|
|||
<SolidColorBrush x:Key="CustomExpanderHover" Color="#323232" />
|
||||
<!-- Resource for ContentDialog -->
|
||||
<SolidColorBrush x:Key="ContentDialogOverlayBG" Color="#4D000000" />
|
||||
<!-- Infobar Warning -->
|
||||
<SolidColorBrush x:Key="InfoBarWarningIcon" Color="#FCE100" />
|
||||
<SolidColorBrush x:Key="InfoBarWarningBG" Color="#433519" />
|
||||
|
||||
<!-- DIY Infobar -->
|
||||
<SolidColorBrush x:Key="InfoBarBD" Color="#19000000" />
|
||||
<SolidColorBrush
|
||||
x:Key="InfoBarInfoIcon"
|
||||
Opacity="0.9"
|
||||
Color="{m:DynamicColor SystemAccentColor}" />
|
||||
<SolidColorBrush x:Key="InfoBarInfoBG" Color="#272727" />
|
||||
<SolidColorBrush x:Key="InfoBarWarningIcon" Color="#fce100" />
|
||||
<SolidColorBrush x:Key="InfoBarWarningBG" Color="#433519" />
|
||||
<SolidColorBrush x:Key="InfoBarSuccessIcon" Color="#6ccb5f" />
|
||||
<SolidColorBrush x:Key="InfoBarSuccessBG" Color="#393d1b" />
|
||||
<SolidColorBrush x:Key="InfoBarErrorIcon" Color="#ff99a4" />
|
||||
<SolidColorBrush x:Key="InfoBarErrorBG" Color="#442726" />
|
||||
|
||||
<SolidColorBrush x:Key="MouseOverWindowCloseButtonForegroundBrush" Color="#ffffff" />
|
||||
|
||||
|
|
|
|||
|
|
@ -105,10 +105,20 @@
|
|||
<SolidColorBrush x:Key="CustomExpanderHover" Color="#f6f6f6" />
|
||||
<!-- Resource for ContentDialog -->
|
||||
<SolidColorBrush x:Key="ContentDialogOverlayBG" Color="#4D000000" />
|
||||
<!-- Infobar Warning -->
|
||||
|
||||
<!-- DIY Infobar -->
|
||||
<SolidColorBrush x:Key="InfoBarBD" Color="#0F000000" />
|
||||
<SolidColorBrush
|
||||
x:Key="InfoBarInfoIcon"
|
||||
Opacity="0.8"
|
||||
Color="{m:DynamicColor SystemAccentColor}" />
|
||||
<SolidColorBrush x:Key="InfoBarInfoBG" Color="{m:DynamicColor Color01}" />
|
||||
<SolidColorBrush x:Key="InfoBarWarningIcon" Color="#9D5D00" />
|
||||
<SolidColorBrush x:Key="InfoBarWarningBG" Color="#FFF4CE" />
|
||||
<SolidColorBrush x:Key="InfoBarBD" Color="#0F000000" />
|
||||
<SolidColorBrush x:Key="InfoBarSuccessIcon" Color="#3f973e" />
|
||||
<SolidColorBrush x:Key="InfoBarSuccessBG" Color="#dff6dd" />
|
||||
<SolidColorBrush x:Key="InfoBarErrorIcon" Color="#c42b1c" />
|
||||
<SolidColorBrush x:Key="InfoBarErrorBG" Color="#fde7e9" />
|
||||
|
||||
<SolidColorBrush x:Key="MouseOverWindowCloseButtonForegroundBrush" Color="#ffffff" />
|
||||
|
||||
|
|
|
|||
|
|
@ -28,6 +28,33 @@
|
|||
Style="{StaticResource PageTitle}"
|
||||
Text="{DynamicResource general}"
|
||||
TextAlignment="left" />
|
||||
<cc:InfoBar
|
||||
Title="Test"
|
||||
Closable="False"
|
||||
IsIconVisible="True"
|
||||
Length="Long"
|
||||
Message="This is a success message."
|
||||
Type="Info" />
|
||||
<cc:InfoBar
|
||||
Closable="True"
|
||||
IsIconVisible="True"
|
||||
Length="Long"
|
||||
Message="This is a success message."
|
||||
Type="Success" />
|
||||
<cc:InfoBar
|
||||
Title="Test"
|
||||
Closable="False"
|
||||
IsIconVisible="True"
|
||||
Length="Long"
|
||||
Message="This is a success message."
|
||||
Type="Warning" />
|
||||
<cc:InfoBar
|
||||
Title="Test"
|
||||
Closable="False"
|
||||
IsIconVisible="True"
|
||||
Length="Short"
|
||||
Message="This is a success message."
|
||||
Type="Error" />
|
||||
<cc:ExCard
|
||||
Title="{DynamicResource startFlowLauncherOnSystemStartup}"
|
||||
Margin="0 8 0 0"
|
||||
|
|
|
|||
Loading…
Reference in a new issue