C # Label control with scroll bars

Source: Internet
Author: User

C # A Label control with a scrollbar, or a little blinking when selected with the mouse:

Namespace Label control with scroll bar {public class TextBoxLabel:System.Windows.Forms.TextBox {[DllImport ("User32", Entry        Point = "HideCaret")] private static extern bool HideCaret (IntPtr hWnd);        [DllImport ("user32", EntryPoint = "ShowCaret")] private static extern bool ShowCaret (IntPtr hWnd); Public Textboxlabel (): Base () {this.            TabStop = false; This.            SetStyle (controlstyles.selectable, false); This.            Cursor = Cursors.Default; This.            ReadOnly = true; This.            shortcutsenabled = false; This.            HideSelection = true; This.            GotFocus + = new EventHandler (textboxlabel_gotfocus); This.        MouseMove + = new MouseEventHandler (textboxlabel_mousemove); } private void Textboxlabel_gotfocus (Object sender, System.EventArgs e) {if (ShowCaret ((TextBox) sender) . Handle)) {HideCaret ((TextBox) sender).            Handle); }} private void Textboxlabel_mousemove(Object sender, MouseEventArgs e) {if ((TextBox) sender). Selectedtext.length > 0) {(TextBox) sender.            selectionlength = 0; }        }    }}

Effect:



Realization idea and use reference: http://bbs.csdn.net/topics/390632325?page=1#post-398542672


C # Label control with scroll bars

Related Article

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.