|
1 | | -<!-- Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the LICENSE file in the project root for more information. --> |
| 1 | +<!-- Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the LICENSE file in the project root for more information. --> |
2 | 2 | <Page x:Class="CommunityToolkit.App.Shared.Pages.GettingStartedPage" |
3 | 3 | xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
4 | 4 | xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
89 | 89 | <StackPanel Margin="0,16,0,0" |
90 | 90 | Orientation="Vertical" |
91 | 91 | Spacing="8"> |
| 92 | + |
| 93 | + <Button win:AutomationProperties.Name="Documentation on Learn"> |
| 94 | + <Button.Content> |
| 95 | + <StackPanel Orientation="Horizontal" |
| 96 | + Spacing="11"> |
| 97 | + <FontIcon VerticalAlignment="Center" |
| 98 | + FontSize="15" |
| 99 | + Foreground="{ThemeResource TextFillColorPrimaryBrush}" |
| 100 | + Glyph="" /> |
| 101 | + <TextBlock VerticalAlignment="Center" |
| 102 | + Foreground="{ThemeResource TextFillColorPrimaryBrush}" |
| 103 | + Text="Documentation on Learn" /> |
| 104 | + </StackPanel> |
| 105 | + </Button.Content> |
| 106 | + <interactivity:Interaction.Behaviors> |
| 107 | + <interactions:EventTriggerBehavior EventName="Click"> |
| 108 | + <behaviors:NavigateToUriAction NavigateUri="https://aka.ms/toolkit/docs" /> |
| 109 | + </interactions:EventTriggerBehavior> |
| 110 | + </interactivity:Interaction.Behaviors> |
| 111 | + </Button> |
92 | 112 | <Button win:AutomationProperties.Name="Learn more on GitHub"> |
93 | 113 | <Button.Content> |
94 | 114 | <StackPanel Orientation="Horizontal" |
|
107 | 127 | </interactions:EventTriggerBehavior> |
108 | 128 | </interactivity:Interaction.Behaviors> |
109 | 129 | </Button> |
| 130 | + |
110 | 131 | <Button win:AutomationProperties.Name="Join us on Discord"> |
111 | 132 | <Button.Content> |
112 | 133 | <StackPanel VerticalAlignment="Center" |
|
0 commit comments