Browse Source

Use AvaloniaProperty<T> in test class

pull/2646/head
Nikita Tsukanov 7 years ago
parent
commit
57e061366e
  1. 2
      tests/Avalonia.Markup.Xaml.UnitTests/Xaml/XamlIlTests.cs

2
tests/Avalonia.Markup.Xaml.UnitTests/Xaml/XamlIlTests.cs

@ -301,7 +301,7 @@ namespace Avalonia.Markup.Xaml.UnitTests
public static class XamlIlBugTestsStaticClassWithAttachedProperty
{
public static readonly AvaloniaProperty TestIntProperty = AvaloniaProperty
public static readonly AvaloniaProperty<int> TestIntProperty = AvaloniaProperty
.RegisterAttached<Control, int>("TestInt", typeof(XamlIlBugTestsStaticClassWithAttachedProperty));
public static void SetTestInt(Control control, int value)

Loading…
Cancel
Save