2021-10-19 13:44:13 +02: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.
|
|
|
|
|
|
|
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
using Windows.UI.Accessibility;
|
|
|
|
|
|
using Windows.UI.Xaml;
|
|
|
|
|
|
using Windows.UI.Xaml.Automation;
|
|
|
|
|
|
using Windows.UI.Xaml.Controls;
|
|
|
|
|
|
using Windows.UI.Xaml.Media;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.Controls
|
|
|
|
|
|
{
|
|
|
|
|
|
public class CheckBoxWithDescriptionControl : CheckBox
|
|
|
|
|
|
{
|
|
|
|
|
|
private CheckBoxWithDescriptionControl _checkBoxSubTextControl;
|
|
|
|
|
|
|
|
|
|
|
|
public CheckBoxWithDescriptionControl()
|
|
|
|
|
|
{
|
|
|
|
|
|
_checkBoxSubTextControl = (CheckBoxWithDescriptionControl)this;
|
|
|
|
|
|
this.Loaded += CheckBoxSubTextControl_Loaded;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
protected override void OnApplyTemplate()
|
|
|
|
|
|
{
|
|
|
|
|
|
Update();
|
|
|
|
|
|
base.OnApplyTemplate();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private void Update()
|
|
|
|
|
|
{
|
|
|
|
|
|
if (!string.IsNullOrEmpty(Header))
|
|
|
|
|
|
{
|
|
|
|
|
|
AutomationProperties.SetName(this, Header);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private void CheckBoxSubTextControl_Loaded(object sender, RoutedEventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
StackPanel panel = new StackPanel() { Orientation = Orientation.Vertical };
|
|
|
|
|
|
panel.Children.Add(new TextBlock() { Margin = new Thickness(0, 10, 0, 0), Text = Header });
|
2021-12-27 14:29:01 +01:00
|
|
|
|
panel.Children.Add(new IsEnabledTextBlock() { Style = (Style)App.Current.Resources["SecondaryIsEnabledTextBlockStyle"], Text = Description });
|
2021-10-19 13:44:13 +02:00
|
|
|
|
_checkBoxSubTextControl.Content = panel;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static readonly DependencyProperty HeaderProperty = DependencyProperty.Register(
|
|
|
|
|
|
"Header",
|
|
|
|
|
|
typeof(string),
|
|
|
|
|
|
typeof(CheckBoxWithDescriptionControl),
|
|
|
|
|
|
new PropertyMetadata(default(string)));
|
|
|
|
|
|
|
|
|
|
|
|
public static readonly DependencyProperty DescriptionProperty = DependencyProperty.Register(
|
|
|
|
|
|
"Description",
|
|
|
|
|
|
typeof(object),
|
|
|
|
|
|
typeof(CheckBoxWithDescriptionControl),
|
|
|
|
|
|
new PropertyMetadata(default(string)));
|
|
|
|
|
|
|
|
|
|
|
|
[Localizable(true)]
|
|
|
|
|
|
public string Header
|
|
|
|
|
|
{
|
|
|
|
|
|
get => (string)GetValue(HeaderProperty);
|
|
|
|
|
|
set => SetValue(HeaderProperty, value);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
[Localizable(true)]
|
|
|
|
|
|
public string Description
|
|
|
|
|
|
{
|
|
|
|
|
|
get => (string)GetValue(DescriptionProperty);
|
|
|
|
|
|
set => SetValue(DescriptionProperty, value);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|