The Silverlight mouseleftbuttondown event cannot be triggered.

Source: Internet
Author: User
When you add a mouseleftbuttondown event to a control, this event cannot always be triggered. The control sets "handled" to "true" after the mouseleftbuttondown event is captured ". In Event Routing, when a control obtains a routedevent, it detects the handled attribute. If the handled attribute is true, the event is ignored.

Solution:

Use the uielement. addhandler method (routedevent, Delegate, Boolean). This method contains the handledeventstoo parameter of the system. boolean type. If this parameter is set to true, even if the routing event is marked as handled (handled is true) in its event data, event processing is called.Program. If it is false, it is marked as handled (handled is true) and no event handler is called. The default value is false.

BackgroundCodeAs follows:

Public moniterdatagrid ()
{
Initializecomponent ();

Searchtextbox. addhandler (textbox. mouseleftbuttondownevent, new mousebuttoneventhandler (this. searchtextbox_mouseleftbuttondown), true );
}

Private void searchtextbox_mouseleftbuttondown (Object sender, mousebuttoneventargs E)
{
Searchtextbox. Text = string. empty;
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.