2021-03-03 01:56:37 +08:00
|
|
|
<Page
|
|
|
|
x:Class="Microsoft.PowerToys.Settings.UI.OOBE.Views.OobeVideoConference"
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
xmlns:local="using:Microsoft.PowerToys.Settings.UI.OOBE.Views"
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
2021-09-07 02:21:18 +08:00
|
|
|
xmlns:controls="using:Microsoft.PowerToys.Settings.UI.Controls"
|
2022-04-20 04:00:28 +08:00
|
|
|
xmlns:toolkitcontrols="using:CommunityToolkit.WinUI.UI.Controls"
|
2021-09-07 02:21:18 +08:00
|
|
|
mc:Ignorable="d">
|
2021-03-03 01:56:37 +08:00
|
|
|
|
2022-03-08 23:27:17 +08:00
|
|
|
<controls:OOBEPageControl x:Uid="Oobe_VideoConference"
|
|
|
|
HeroImage="ms-appx:///Assets/Modules/OOBE/VideoConferenceMute.png">
|
2021-03-03 01:56:37 +08:00
|
|
|
|
2022-03-08 23:27:17 +08:00
|
|
|
<controls:OOBEPageControl.PageContent>
|
2021-08-24 01:48:52 +08:00
|
|
|
<StackPanel Orientation="Vertical">
|
2021-03-03 01:56:37 +08:00
|
|
|
<TextBlock x:Uid="Oobe_HowToLaunch"
|
2021-08-24 01:48:52 +08:00
|
|
|
Style="{ThemeResource OobeSubtitleStyle}" />
|
2021-03-03 01:56:37 +08:00
|
|
|
|
2021-09-07 02:21:18 +08:00
|
|
|
<controls:ShortcutWithTextLabelControl x:Name="HotkeyMicVidControl" x:Uid="Oobe_VideoConference_ToggleMicVid" />
|
|
|
|
<controls:ShortcutWithTextLabelControl x:Name="HotkeyMicControl" x:Uid="Oobe_VideoConference_ToggleMic" />
|
2021-11-03 21:01:08 +08:00
|
|
|
<controls:ShortcutWithTextLabelControl x:Name="HotkeyVidControl" x:Uid="Oobe_VideoConference_ToggleVid" />
|
2021-09-07 02:21:18 +08:00
|
|
|
|
|
|
|
<toolkitcontrols:MarkdownTextBlock Background="Transparent" x:Uid="Oobe_VideoConference_HowToLaunch" />
|
2021-03-03 01:56:37 +08:00
|
|
|
|
2021-08-24 01:48:52 +08:00
|
|
|
<StackPanel Orientation="Horizontal" Spacing="12" Margin="0,24,0,0">
|
|
|
|
<Button x:Uid="OOBE_Settings"
|
|
|
|
Click="SettingsLaunchButton_Click"/>
|
2022-03-08 23:27:17 +08:00
|
|
|
<HyperlinkButton NavigateUri="https://aka.ms/PowerToysOverview_VideoConference" Style="{StaticResource TextButtonStyle}">
|
2021-08-24 01:48:52 +08:00
|
|
|
<TextBlock x:Uid="LearnMore_VCM"
|
|
|
|
TextWrapping="Wrap" />
|
|
|
|
</HyperlinkButton>
|
2021-03-03 01:56:37 +08:00
|
|
|
</StackPanel>
|
|
|
|
</StackPanel>
|
2022-03-08 23:27:17 +08:00
|
|
|
</controls:OOBEPageControl.PageContent>
|
2021-08-24 01:48:52 +08:00
|
|
|
</controls:OOBEPageControl>
|
|
|
|
</Page>
|