Browse Source

Fix compile error.

Steven Kirk 9 years ago
parent
commit
635ee4fdb2
1 changed files with 7 additions and 1 deletions
  1. 7 1
      samples/XamlTestApplicationPcl/TestScrollable.cs

+ 7 - 1
samples/XamlTestApplicationPcl/TestScrollable.cs

@@ -2,6 +2,7 @@ using System;
 using Avalonia;
 using Avalonia.Controls;
 using Avalonia.Controls.Primitives;
+using Avalonia.Input;
 using Avalonia.Media;
 using Avalonia.VisualTree;
 
@@ -75,7 +76,12 @@ namespace XamlTestApplication
             }
         }
 
-        public bool BringIntoView(IVisual target, Rect targetRect)
+        public bool BringIntoView(IControl target, Rect targetRect)
+        {
+            throw new NotImplementedException();
+        }
+
+        public IControl GetControlInDirection(FocusNavigationDirection direction, IControl from)
         {
             throw new NotImplementedException();
         }