Created
May 19, 2016 09:45
-
-
Save grokys/0e05708186517f675a17d7b27e0eb89b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Fact] | |
public void InputHitTest_Should_Find_Control_Translated_Outside_Parent_Bounds() | |
{ | |
using (UnitTestApplication.Start(new TestServices(renderInterface: new MockRenderInterface()))) | |
{ | |
Border target; | |
var container = new Panel | |
{ | |
Width = 200, | |
Height = 200, | |
Children = new Controls.Controls | |
{ | |
new Border | |
{ | |
Width = 100, | |
Height = 100, | |
ZIndex = 1, | |
HorizontalAlignment = HorizontalAlignment.Left, | |
VerticalAlignment = VerticalAlignment.Top, | |
Child = target = new Border | |
{ | |
Width = 50, | |
Height = 50, | |
HorizontalAlignment = HorizontalAlignment.Left, | |
VerticalAlignment = VerticalAlignment.Top, | |
RenderTransform = new TranslateTransform(110, 110), | |
} | |
}, | |
} | |
}; | |
container.Measure(Size.Infinity); | |
container.Arrange(new Rect(container.DesiredSize)); | |
var context = new DrawingContext(Mock.Of<IDrawingContextImpl>()); | |
context.Render(container); | |
var result = container.InputHitTest(new Point(120, 120)); | |
Assert.Equal(target, result); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment