|
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.Renderers.ToolkitDocumentationRenderer"
|
3 | 3 | xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
4 | 4 | xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
230 | 230 | </StackPanel>
|
231 | 231 | <interactivity:Interaction.Behaviors>
|
232 | 232 | <interactivity:EventTriggerBehavior EventName="Click">
|
233 |
| - <behaviors:NavigateToUriAction NavigateUri="{x:Bind renderer:ToolkitDocumentationRenderer.ToComponentUri(Metadata.ComponentName), Mode=OneWay}" /> |
| 233 | + <behaviors:NavigateToUriAction NavigateUri="{x:Bind renderer:ToolkitDocumentationRenderer.ToComponentUri(Metadata.ComponentName, Metadata.IsExperimental), Mode=OneWay}" /> |
234 | 234 | </interactivity:EventTriggerBehavior>
|
235 | 235 | </interactivity:Interaction.Behaviors>
|
236 | 236 | </Button>
|
|
258 | 258 | Text="NuGet package" />
|
259 | 259 | <TextBlock IsTextSelectionEnabled="True">
|
260 | 260 | <Hyperlink FontFamily="Consolas"
|
261 |
| - NavigateUri="{x:Bind renderer:ToolkitDocumentationRenderer.ToPackageUri('Uwp', Metadata.CsProjName), Mode=OneWay}" |
| 261 | + NavigateUri="{x:Bind renderer:ToolkitDocumentationRenderer.ToPackageUri('Uwp', Metadata.CsProjName, Metadata.IsExperimental), Mode=OneWay}" |
262 | 262 | TextDecorations="None">
|
263 |
| - <Run Text="{x:Bind renderer:ToolkitDocumentationRenderer.ToPackageName('Uwp', Metadata.CsProjName), Mode=OneWay}" /> |
| 263 | + <Run Text="{x:Bind renderer:ToolkitDocumentationRenderer.ToPackageName('Uwp', Metadata.CsProjName, Metadata.IsExperimental), Mode=OneWay}" /> |
264 | 264 | </Hyperlink>
|
265 | 265 | </TextBlock>
|
266 | 266 | <TextBlock IsTextSelectionEnabled="True">
|
267 | 267 | <Hyperlink FontFamily="Consolas"
|
268 |
| - NavigateUri="{x:Bind renderer:ToolkitDocumentationRenderer.ToPackageUri('WinUI', Metadata.CsProjName), Mode=OneWay}" |
| 268 | + NavigateUri="{x:Bind renderer:ToolkitDocumentationRenderer.ToPackageUri('WinUI', Metadata.CsProjName, Metadata.IsExperimental), Mode=OneWay}" |
269 | 269 | TextDecorations="None">
|
270 |
| - <Run Text="{x:Bind renderer:ToolkitDocumentationRenderer.ToPackageName('WinUI', Metadata.CsProjName), Mode=OneWay}" /> |
| 270 | + <Run Text="{x:Bind renderer:ToolkitDocumentationRenderer.ToPackageName('WinUI', Metadata.CsProjName, Metadata.IsExperimental), Mode=OneWay}" /> |
271 | 271 | </Hyperlink>
|
272 | 272 | </TextBlock>
|
273 | 273 | </StackPanel>
|
|
0 commit comments