/
NordPixel
/
AppInspectorWindows
Обзор
Документация
Войти
/
NordPixel
/
AppInspectorWindows
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/AccessibilityInsights.Extensions.AzureDevOps/FileIssue/WebviewRuntimeNotInstalled.xaml
19 строк
1 KB
Karan
feat(ai-win-ado-sep21): initial changes to replace WebBrowser control with WebView2 control (#1205)
01 окт 2021, 02:50
Не верифицирован
01 окт 2021, 02:50
a120c4a
Код
Авторство
О чём код?
<!-- Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.--> <Window x:Class="AccessibilityInsights.Extensions.AzureDevOps.FileIssue.WebviewRuntimeNotInstalled" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d" Title="Accessibility Insights for Windows" Height="220" Width="300" WindowStartupLocation="CenterScreen" WindowStyle="ToolWindow"> <Grid> <TextBlock Name="tbInstructions" Width="Auto" Height="Auto" TextWrapping="Wrap" VerticalAlignment="Top" HorizontalAlignment="Stretch" Margin="16" > <Run Text="Bug filing requires the WebView2 runtime. You can install it at"/> <Hyperlink NavigateUri="https://go.microsoft.com/fwlink/?linkid=2173230" Click="Hyperlink_Click"> <!-- Non-standard breaks around the hyperlink are intentional to avoid whitespace around the link --> <Run Text="https://go.microsoft.com/fwlink/?linkid=2173230"/></Hyperlink><Run Text=". You only need to do this once." /> </TextBlock> <Button Content="OK" IsDefault="True" HorizontalAlignment="Center" Margin="0,10" VerticalAlignment="Bottom" Width="75" Click="Button_Click"/> </Grid> </Window>