2021-03-02 20:56:37 +03:00
|
|
|
|
// Copyright (c) Microsoft Corporation
|
|
|
|
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|
|
|
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
|
|
|
2021-09-06 20:21:18 +02:00
|
|
|
|
using Microsoft.PowerToys.Settings.UI.Library;
|
2021-03-02 20:56:37 +03:00
|
|
|
|
using Microsoft.PowerToys.Settings.UI.OOBE.Enums;
|
|
|
|
|
|
using Microsoft.PowerToys.Settings.UI.OOBE.ViewModel;
|
2021-10-27 09:05:23 +01:00
|
|
|
|
using Microsoft.PowerToys.Settings.UI.Views;
|
2022-04-19 22:00:28 +02:00
|
|
|
|
using Microsoft.UI.Xaml.Controls;
|
|
|
|
|
|
using Microsoft.UI.Xaml.Navigation;
|
2021-03-02 20:56:37 +03:00
|
|
|
|
|
|
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.OOBE.Views
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// An empty page that can be used on its own or navigated to within a Frame.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public sealed partial class OobeVideoConference : Page
|
|
|
|
|
|
{
|
|
|
|
|
|
public OobePowerToysModule ViewModel { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public OobeVideoConference()
|
|
|
|
|
|
{
|
|
|
|
|
|
this.InitializeComponent();
|
2022-04-19 22:00:28 +02:00
|
|
|
|
ViewModel = new OobePowerToysModule(OobeShellPage.OobeShellHandler.Modules[(int)PowerToysModules.VideoConference]);
|
2021-03-02 20:56:37 +03:00
|
|
|
|
DataContext = ViewModel;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-04-19 22:00:28 +02:00
|
|
|
|
private void SettingsLaunchButton_Click(object sender, Microsoft.UI.Xaml.RoutedEventArgs e)
|
2021-03-02 20:56:37 +03:00
|
|
|
|
{
|
2021-10-27 09:05:23 +01:00
|
|
|
|
if (OobeShellPage.OpenMainWindowCallback != null)
|
|
|
|
|
|
{
|
|
|
|
|
|
OobeShellPage.OpenMainWindowCallback(typeof(VideoConferencePage));
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-03-02 20:56:37 +03:00
|
|
|
|
ViewModel.LogOpeningSettingsEvent();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
protected override void OnNavigatedTo(NavigationEventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
ViewModel.LogOpeningModuleEvent();
|
2021-09-06 20:21:18 +02:00
|
|
|
|
HotkeyMicVidControl.Keys = SettingsRepository<VideoConferenceSettings>.GetInstance(new SettingsUtils()).SettingsConfig.Properties.MuteCameraAndMicrophoneHotkey.Value.GetKeysList();
|
|
|
|
|
|
HotkeyMicControl.Keys = SettingsRepository<VideoConferenceSettings>.GetInstance(new SettingsUtils()).SettingsConfig.Properties.MuteMicrophoneHotkey.Value.GetKeysList();
|
|
|
|
|
|
HotkeyVidControl.Keys = SettingsRepository<VideoConferenceSettings>.GetInstance(new SettingsUtils()).SettingsConfig.Properties.MuteCameraHotkey.Value.GetKeysList();
|
2021-03-02 20:56:37 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
protected override void OnNavigatedFrom(NavigationEventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
ViewModel.LogClosingModuleEvent();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|