File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
Flow.Launcher/Resources/Controls Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 3
3
xmlns =" http://schemas.microsoft.com/winfx/2006/xaml/presentation"
4
4
xmlns : x =" http://schemas.microsoft.com/winfx/2006/xaml"
5
5
xmlns : cc =" clr-namespace:Flow.Launcher.Resources.Controls"
6
- xmlns : converters =" clr-namespace:Flow.Launcher.Converters"
7
6
xmlns : d =" http://schemas.microsoft.com/expression/blend/2008"
8
7
xmlns : mc =" http://schemas.openxmlformats.org/markup-compatibility/2006"
9
8
xmlns : ui =" http://schemas.modernwpf.com/2019"
69
68
Width =" 32"
70
69
Height =" 32"
71
70
VerticalAlignment =" Center"
71
+ AutomationProperties.Name=" Close InfoBar"
72
72
Click =" PART_CloseButton_Click"
73
73
Content ="  "
74
74
FontFamily =" Segoe MDL2 Assets"
75
75
FontSize =" 12"
76
+ ToolTip =" Close"
76
77
Visibility =" Visible" />
77
78
</Grid >
78
79
</Border >
Original file line number Diff line number Diff line change @@ -175,6 +175,11 @@ private void UpdateStyle()
175
175
PART_IconBorder . Background = ( Brush ) FindResource ( "InfoBarErrorIcon" ) ;
176
176
PART_Icon . Glyph = "\xF13D " ;
177
177
break ;
178
+ default :
179
+ PART_Border . Background = ( Brush ) FindResource ( "InfoBarInfoBG" ) ;
180
+ PART_IconBorder . Background = ( Brush ) FindResource ( "InfoBarInfoIcon" ) ;
181
+ PART_Icon . Glyph = "\xF13F " ;
182
+ break ;
178
183
}
179
184
}
180
185
You can’t perform that action at this time.
0 commit comments