Live Chat Icon For mobile
Live Chat Icon

How do I capture a mouse event out of the component in Blazor?

Platform: Blazor| Category : Event handling, Tips and Tricks

You have to use the onmouseout event binding to capture a mouse leave event for a component.

<div onmouseover=@MouseOver onmouseout=@MouseOut>
    Hover over me
</div>

Share with

Related FAQs

Couldn't find the FAQs you're looking for?

Please submit your question and answer.