TestControl.cs 436 B

1234567891011121314151617
  1. using System;
  2. using Avalonia.Controls;
  3. namespace Avalonia.Markup.Xaml.UnitTests.Xaml
  4. {
  5. public class TestControl : Control
  6. {
  7. public static readonly StyledProperty<double> DoubleProperty =
  8. AttachedPropertyOwner.DoubleProperty.AddOwner<TestControl>();
  9. public double Double
  10. {
  11. get => GetValue(DoubleProperty);
  12. set => SetValue(DoubleProperty, value);
  13. }
  14. }
  15. }