Page 1 of 1

PointerExited [CANNOT REPRODUCE]

Posted: Sat Feb 27, 2016 4:17 am
by hamej
Doesn't work properly. No event triggered

Re: PointerExited

Posted: Mon Feb 29, 2016 9:25 am
by JS-Support @Userware
Dear Hamej,

Thanks for your message.

We just tested with the following code but were another to reproduce the issue:

- in Page.xaml:

Code: Select all

<Page
    x:Class="Application2.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:Application2"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d">
    <Canvas>
        <TextBlock Text="Move the pointer over this text and then move it out." x:Name="TextBlock1" Canvas.Left="20" Canvas.Top="30" PointerExited="TextBlock1_PointerExited"/>
    </Canvas>
</Page>



- in Page.xaml.cs:

Code: Select all

private void TextBlock1_PointerExited(object sender, Windows.UI.Xaml.Input.PointerRoutedEventArgs e)
{
    MessageBox.Show("test");
}



Can you please share the code to reproduce the issue?

Thank you again.

Regards,
JS-Support