mouseleave

WPF ListBox DataTemplate and Image Question

I have a ListBox with a StackPanel that contains an image and label. <ListBox.ItemsPanel> <ItemsPanelTemplate> <VirtualizingStackPanel Orientation="Horizontal" IsItemsHost="True" /> </ItemsPanelTemplate> </ListBox.ItemsPanel> <ListBox.ItemTemplate> <DataTemplate> <StackPanel Orientation="Vertical"> ...

.NET UserControl's MouseLeave strange behavior

I have a userControl (.NET 1.1 Winforms) that has a clickable picturebox as a button. Since I have lots of those usercontrols visible at the same time, I thought It could be nice if I just display the picture box when the mouse is over the usercontrol and hide it otherwise. To do so, I handle the MouseEnter and MouseLeave events of th...

troubles with jQuery mouseleave

I am trying to create a menu with this structure: <ul id="primary" class="menuOptions"> <li>Item 1</li> <li>Item 2 <div id="secondary"> <ul class="menuOptions"> <li>subItemOne</li> <li>subItemTwo</li> </ul> </div> </li> <li>Item 3</li> </ul> I a...

Silverlight MouseLeave Issue

I'm trying to make a color picker in Silverlight similar to this one but I'm having trouble implementing the cursor in the large square area. In order to keep track of the mouse state I have an _isMouseDown variable. On the MouseLeave event _isMouseDown is set to false, so that if a user drags out of the large square area, releases, and ...

C# Show/hide element on MouseHover/MouseLeave of the parent

In C#, we have the following: A UserControl containing a PictureBox and an invisible FlowPanel. What I want to achieve: When the UserControl is hovered (MouseHover), the invisible FlowPanel will be set to visible = true. When the mouse leaves the UserControl or FlowPanel, the FlowPanel should be set visible = false. Using MouseL...

mouseleave event not firing when moving over child Flash movie

I'm trying to get some rollovers to work, but I'm running into a mouseleave problem. Everything is working, except there is a Flash movie that is near the top of one of the rollover targets. When the mouse leaves by moving off the top of the element, the event doesn't fire because it's leaving the element directly from the Flash movie. ...

AS3: MOUSE_OUT not firing when Mouse leaves stage

I am developing a website with nav items that cover the whole stage from top to bottom (see altered image below) and it is pretty easy for the user to exit the stage with their mouse, not triggering the MouseEvent.MOUSE_OUT events required to "turn off" said nav items. Should I be using Event.MOUSE_LEAVE to detect when the mouse has lef...

C# WinForms - MouseHover/MouseLeave event on the whole entire window.

I have Form subclass with handlers for MouseHover and MouseLeave. When the pointer is on the background of the window, the events work fine, but when the pointer moves onto a control inside the window, it causes a MouseLeave event. Is there anyway to have an event covering the whole window. (.NET 2.0, Visual Studio 2005, Windows XP.) ...

TreeView MouseLeave event fires when moves over ScrollBar

In the TreeView, ListBox, or it seems from my google searches anything with a ScrollBar, the ScrollBar is not considered a part of the control. I have a TreeView that I'm putting into a custom control, and it's Dock Fill. So there it acts as a custom TreeView which has all our logic to manage it in one place. In parts of our program we...

jQuery hover still triggering out

Hello I have following problem. I'm working on simple jquery tooltip and now I have to deal with some strange behavior of jQuery. Everytime when I mouseover the element, events for mouse over and mouse out are triggered both - so the tooltip disappears (but if I keep hand over, it does a lot of blinks in one sec). There's my code. va...

Funky jQuery mouseleave behavior

I have a menu-like drop down container that hides via binding the "mouseleave" event. <div id="container"> <select> <option>1</option> <option>2</option> <option>3</option> <option>4</option> <option>5</option> </select> </div> The problem I am having is when my container's child elements contain a SELECT object w...

Problem with jQuery Mouseenter/Mouseleave in Firefox

I'm having a problem with the mosueenter/mouseleave events only in Firefox... http://www.screencast.com/users/StanleyGoldman/folders/Jing/media/be3572de-9c72-4e2a-8ead-6d29b0764709 <HTML> <HEAD> <script type="text/javascript" src="http://code.jquery.com/jquery-1.4.js"&gt;&lt;/script&gt; <script> $(docume...

Javascript MouseOver / MouseOut children events

I have an element with some child elements. When the mouse leaves the parent element I want to hide the parent and it's children. Problem I'm having is that when I hover over any of the children, the mouseout event is being fired. What's the best way to prevent this? I really only want the event to fire when the mouse is not within the p...

jquery mouseenter/mouseleave error when the target div has child input fields

I have two sortable lists, one being nested, with a mouse enter effect on the li elements of the nested sortable list. My problem is that the mouseenter and mouseleave functions are being called inconsistently when a user moves the mouse quickly through the list over the child elements which are input fields. Here is a sample of what is...

jQuery mouseleave bugs with animated elements

Hi, I have bumped into a weird issue. jQuery 1.4.1 mouseenter/mouseleave events fire up correctly if the mouse is being moved, not a big deal. However, it bugs in some browsers when the cursor itself remains static but the element is being moved away by animate(). So imagine the code like this: jQuery('somelement').bind( { mouseent...

C# TableLayoutPanel MouseLeave

greetings, i am developing a battleships clone game and i have an issue with TableLayoutPanel MouseLeave event. first MouseMove: private PictureBox HomeLastPicBox = new PictureBox(); private TableLayoutPanelCellPosition homeLastPosition = new TableLayoutPanelCellPosition(0, 0); private void HomeTableLayoutPanel_MouseMove(...

jquery issue, disable on mouseenter queue

When you mouseenter .li_group class it does a slide down effect on 1 single <li> tag, everything goes smoothly, but during the delay if you take your mouse off and on .li_group it "queues" the effect and slides the li down, delay, slides it down again etc etc... I have tried every way i can think of, even stop(); but it still does it... ...

Issue with hover events and parents

So let's say I have a block of nested divs: <div class='nested'> <div class='nested'> <div class='nested'></div> </div> </div> I want this kind of behavior: Hover on a div. That particular div changes background color, and its children don't. Hover on that div's child. Again, it changes color while its children don't, AND(impor...

jquery - targeting hovered element on mouseLeave

I'm currently using .hover to handle a hover tab. I'm having to get a little creative because I have a code freeze on the markup. My initial plan was to share a class between the hovered tab and the element which contains the targeted content. In other words, if the tab has class "review" the content element has class "review" as well. T...

jquery: mouseleave event seems to fire when it's not supposed to

Given the following html table and script shown below I am having a problem where the mouse leave event appears to fire right after the mouse enter, even if I don't move the mouse out of the row. <script type="text/javascript" language="javascript"> function highlightRows(iMainID) { $('tr[mainid=' + iMainID+ ']').each...