#681 – No Mouse Events When Visibility is Hidden, Collapsed or Hidden

User interface elements will not receive mouse-based events when the element’s Visibility property is Collapsed or Hidden (rather than Visible).

    <StackPanel>
        <Button Content="Visibility = Collapsed" Visibility="Collapsed"
                MouseMove="Button_MouseMove"
                HorizontalAlignment="Center" Margin="5" />
        <Button Content="Visibility = Hidden" Visibility="Hidden"
                MouseMove="Button_MouseMove"
                HorizontalAlignment="Center" Margin="5" />
        <Button Content="Visibility = Visible" Visibility="Visible"
                MouseMove="Button_MouseMove"
                HorizontalAlignment="Center" Margin="5" />
    </StackPanel>

When we move the mouse of the space where the button whose Visibility is Hidden, we don’t see the MouseMove event firing.

Advertisement

About Sean
Software developer in the Twin Cities area, passionate about software development and sailing.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: