TestRoot.cs 957 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. // Copyright (c) The Avalonia Project. All rights reserved.
  2. // Licensed under the MIT license. See licence.md file in the project root for full license information.
  3. using System;
  4. using Avalonia.Platform;
  5. using Avalonia.Rendering;
  6. namespace Avalonia.Visuals.UnitTests
  7. {
  8. public class TestRoot : TestVisual, IRenderRoot
  9. {
  10. public Size ClientSize { get; }
  11. public IRenderTarget CreateRenderTarget()
  12. {
  13. throw new NotImplementedException();
  14. }
  15. public void Invalidate(Rect rect)
  16. {
  17. throw new NotImplementedException();
  18. }
  19. public IRenderer Renderer
  20. {
  21. get { throw new NotImplementedException(); }
  22. }
  23. public Point PointToClient(Point p)
  24. {
  25. throw new NotImplementedException();
  26. }
  27. public Point PointToScreen(Point p)
  28. {
  29. throw new NotImplementedException();
  30. }
  31. }
  32. }