mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-07 03:36:44 +02:00
* [Analyzers][Settings] Fix SA1516 * [Analyzers][Workspaces] Fix SA1516 * [Analyzers][Awake] Fix SA1516 * [Analyzers][Wox] Fix SA1516 * [MWB] Disable CA1716 warning on class name * [Wox] Update ExecuteFilePath property visibility for Json Source Generator * [Analyzers][MWB] Fix CA1716 on NativeMethods. --------- Co-authored-by: Jaime Bernardo <jaime@janeasystems.com>
77 lines
3.7 KiB
C#
77 lines
3.7 KiB
C#
// 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.
|
|
|
|
using System.Collections.ObjectModel;
|
|
|
|
using Microsoft.UI.Xaml;
|
|
using Microsoft.UI.Xaml.Controls;
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.Controls
|
|
{
|
|
public sealed partial class SettingsPageControl : UserControl
|
|
{
|
|
public SettingsPageControl()
|
|
{
|
|
this.InitializeComponent();
|
|
PrimaryLinks = new ObservableCollection<PageLink>();
|
|
SecondaryLinks = new ObservableCollection<PageLink>();
|
|
}
|
|
|
|
public string ModuleTitle
|
|
{
|
|
get { return (string)GetValue(ModuleTitleProperty); }
|
|
set { SetValue(ModuleTitleProperty, value); }
|
|
}
|
|
|
|
public string ModuleDescription
|
|
{
|
|
get => (string)GetValue(ModuleDescriptionProperty);
|
|
set => SetValue(ModuleDescriptionProperty, value);
|
|
}
|
|
|
|
public string ModuleImageSource
|
|
{
|
|
get => (string)GetValue(ModuleImageSourceProperty);
|
|
set => SetValue(ModuleImageSourceProperty, value);
|
|
}
|
|
|
|
public ObservableCollection<PageLink> PrimaryLinks
|
|
{
|
|
get => (ObservableCollection<PageLink>)GetValue(PrimaryLinksProperty);
|
|
set => SetValue(PrimaryLinksProperty, value);
|
|
}
|
|
|
|
public string SecondaryLinksHeader
|
|
{
|
|
get { return (string)GetValue(SecondaryLinksHeaderProperty); }
|
|
set { SetValue(SecondaryLinksHeaderProperty, value); }
|
|
}
|
|
|
|
public ObservableCollection<PageLink> SecondaryLinks
|
|
{
|
|
get => (ObservableCollection<PageLink>)GetValue(SecondaryLinksProperty);
|
|
set => SetValue(SecondaryLinksProperty, value);
|
|
}
|
|
|
|
public object ModuleContent
|
|
{
|
|
get { return (object)GetValue(ModuleContentProperty); }
|
|
set { SetValue(ModuleContentProperty, value); }
|
|
}
|
|
|
|
public static readonly DependencyProperty ModuleTitleProperty = DependencyProperty.Register("ModuleTitle", typeof(string), typeof(SettingsPageControl), new PropertyMetadata(default(string)));
|
|
public static readonly DependencyProperty ModuleDescriptionProperty = DependencyProperty.Register("ModuleDescription", typeof(string), typeof(SettingsPageControl), new PropertyMetadata(default(string)));
|
|
public static readonly DependencyProperty ModuleImageSourceProperty = DependencyProperty.Register("ModuleImageSource", typeof(string), typeof(SettingsPageControl), new PropertyMetadata(default(string)));
|
|
public static readonly DependencyProperty PrimaryLinksProperty = DependencyProperty.Register("PrimaryLinks", typeof(ObservableCollection<PageLink>), typeof(SettingsPageControl), new PropertyMetadata(new ObservableCollection<PageLink>()));
|
|
public static readonly DependencyProperty SecondaryLinksHeaderProperty = DependencyProperty.Register("SecondaryLinksHeader", typeof(string), typeof(SettingsPageControl), new PropertyMetadata(default(string)));
|
|
public static readonly DependencyProperty SecondaryLinksProperty = DependencyProperty.Register("SecondaryLinks", typeof(ObservableCollection<PageLink>), typeof(SettingsPageControl), new PropertyMetadata(new ObservableCollection<PageLink>()));
|
|
public static readonly DependencyProperty ModuleContentProperty = DependencyProperty.Register("ModuleContent", typeof(object), typeof(SettingsPageControl), new PropertyMetadata(new Grid()));
|
|
|
|
private void UserControl_Loaded(object sender, RoutedEventArgs e)
|
|
{
|
|
PrimaryLinksControl.Focus(FocusState.Programmatic);
|
|
}
|
|
}
|
|
}
|