Ghost1372

everything can be handy

OverviewPageHeader

Attributes

Property
ImageContent
ActionContent
Title
Description

Example

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<dev:OverviewPageHeader Title="Overview"
Background="{ThemeResource CardGradient2Brush}"
Description="Windows AI APIs enable seamless integration of AI capabilities into Windows applications without the need to find, run, or optimize your own machine learning model.">
<dev:OverviewPageHeader.ActionContent>
<Button AutomationProperties.Name="Learn more about Windows AI APIs">
<Button.Content>
<StackPanel Orientation="Horizontal"
Spacing="8">
<FontIcon FontSize="16"
Foreground="{ThemeResource AccentTextFillColorPrimaryBrush}"
Glyph="&#xE7C3;" />
<TextBlock Text="Learn more about Windows AI APIs" />
</StackPanel>
</Button.Content>

</Button>
</dev:OverviewPageHeader.ActionContent>
<dev:OverviewPageHeader.ImageContent>
<Grid Margin="24,8,24,16">
<Grid Margin="0,62,0,0"
Padding="16"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Style="{StaticResource GlassAcrylicGridStyle}">
<Image Width="56"
Source="ms-appx:///Assets/Svgs/WCRAPI.svg" />
</Grid>

<Grid Margin="48,166,0,0"
Padding="8"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Style="{StaticResource GlassAcrylicGridStyle}">
<FontIcon FontSize="24"
Foreground="{ThemeResource AccentTextFillColorPrimaryBrush}"
Glyph="&#xE8F2;" />
</Grid>

<Grid Margin="104,96,0,0"
Padding="16"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Style="{StaticResource GlassAcrylicGridStyle}">
<FontIcon FontSize="48"
Foreground="{ThemeResource AccentTextFillColorPrimaryBrush}"
Glyph="&#xE7C5;" />
</Grid>
<Grid Margin="104,12,0,0"
Padding="16"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Style="{StaticResource GlassAcrylicGridStyle}">
<FontIcon FontSize="36"
Foreground="{ThemeResource AccentTextFillColorPrimaryBrush}"
Glyph="&#xE799;" />
</Grid>
<Grid Margin="54,14,0,0"
Padding="8"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Style="{StaticResource GlassAcrylicGridStyle}">
<FontIcon FontSize="18"
Foreground="{ThemeResource AccentTextFillColorPrimaryBrush}"
Glyph="&#xE7A8;" />
</Grid>
</Grid>
</dev:OverviewPageHeader.ImageContent>
</dev:OverviewPageHeader>

Demo

you can run demo and see this feature.

DevWinUI

0%