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-04-05 16:52:44 +08:00
|
|
|
xmlns:controls="using:Microsoft.PowerToys.Settings.UI.Controls"
|
2021-08-24 01:48:52 +08:00
|
|
|
mc:Ignorable="d">
|
2021-03-03 01:56:37 +08:00
|
|
|
|
2021-08-24 01:48:52 +08:00
|
|
|
<controls:OOBEPageControl ModuleTitle="{x:Bind ViewModel.ModuleName}"
|
|
|
|
ModuleImageSource="{x:Bind ViewModel.PreviewImageSource}"
|
|
|
|
ModuleDescription="{x:Bind ViewModel.Description}">
|
2021-03-03 01:56:37 +08:00
|
|
|
|
2021-08-24 01:48:52 +08:00
|
|
|
<controls:OOBEPageControl.ModuleContent>
|
|
|
|
<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-04-05 16:52:44 +08:00
|
|
|
<controls:ShortcutTextControl 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"/>
|
|
|
|
<HyperlinkButton NavigateUri="{x:Bind ViewModel.Link}" Style="{StaticResource HyperlinkButtonStyle}">
|
|
|
|
<TextBlock x:Uid="LearnMore_VCM"
|
|
|
|
TextWrapping="Wrap" />
|
|
|
|
</HyperlinkButton>
|
2021-03-03 01:56:37 +08:00
|
|
|
</StackPanel>
|
|
|
|
</StackPanel>
|
2021-08-24 01:48:52 +08:00
|
|
|
</controls:OOBEPageControl.ModuleContent>
|
|
|
|
</controls:OOBEPageControl>
|
|
|
|
</Page>
|