-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I've got a Silverlight 4 custom control that basically is several Canvas elements wrapped inside a ScrollViewer. The user can set a property to determine whether to scroll or zoom when using their mouses wheel. In the custom control's MouseWheel event, I check to see if they want to scroll or zoom…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I m overriding a mousewheel event in vc++ class and try to trigger mousewheel event,
but tat event is not getting triggered.
Then,
I tried to handle with WndProc function like this,
void CascadeControl::WndProc( Message% m )
{
switch(m.Msg)
{
case WM_MOUSEWHEEL:
...............//my code//
break;
}
control::WndProc(m);
}
but…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I currently have a site that is a sidescroller (http://www.studioimbrue.com) and I'm trying to bind a mousewheel to scroll sideways. Currently I'm using the one found at thehorizontalway.com but it doesn't seem to work in all browsers (Chrome). I'm trying to get this one to work: http://brandonaaron…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I've got an XBAP hosted in FireFox, which works great. However, I cannot detect MouseWheel events ever! I'm guessing that FireFox is consuming them and not passing them down to the hosted app.
Any ideas on how to work around this?
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have a Silverlight 4 out-of-browser application with a ScrollViewer that has several RichTextBoxes inside. The RichTextBoxes are only used for displaying text, and are never edited and never scroll.
However when the mouse is hovering over a RichTextBox the mousewheel event seems to not reach the…
>>> More