29 lines
818 B
C#
29 lines
818 B
C#
using Avalonia;
|
|
using Avalonia.Controls;
|
|
using Avalonia.Controls.Primitives;
|
|
using Avalonia.Input;
|
|
using Avalonia.Metadata;
|
|
|
|
namespace Ursa.Controls;
|
|
|
|
public class DisableContainer: TemplatedControl
|
|
{
|
|
public static readonly StyledProperty<InputElement?> ContentProperty = AvaloniaProperty.Register<DisableContainer, InputElement?>(
|
|
nameof(Content));
|
|
|
|
[Content]
|
|
public InputElement? Content
|
|
{
|
|
get => GetValue(ContentProperty);
|
|
set => SetValue(ContentProperty, value);
|
|
}
|
|
|
|
public static readonly StyledProperty<object?> DisabledTipProperty = AvaloniaProperty.Register<DisableContainer, object?>(
|
|
nameof(DisabledTip));
|
|
|
|
public object? DisabledTip
|
|
{
|
|
get => GetValue(DisabledTipProperty);
|
|
set => SetValue(DisabledTipProperty, value);
|
|
}
|
|
} |