Csharp Winform TextBox 樣式以一條橫線顯示

简介: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Drawing; using System.Drawing.Drawing2D; using System.Windows.Forms; using System.Reflecti
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Windows.Forms;
using System.Reflection;
using System.Runtime.InteropServices;
using System.ComponentModel;


namespace TextboxsStyleLineControlLibrary
{
    /// <summary>
    ///csharp winform 划横线输入框
    /// 塗聚文 2012-03-27
    /// 締友計算機信息技術有限公司
    /// 捷為工作室
    /// </summary>
    [ToolboxItem(true)] 
    public  class GeovinDuTextBoxLine:TextBox
    {
        private bool m_DrawLine = false;
        private const int WM_NCPAINT = 0x0085;
        private const int WM_CHAR = 0x0102;

        [System.Runtime.InteropServices.DllImport("user32.dll ")]
        static extern IntPtr GetWindowDC(IntPtr hWnd);

        [System.Runtime.InteropServices.DllImport("user32.dll ")]
        static extern int ReleaseDC(IntPtr hWnd, IntPtr hDC);
        /// <summary>
        /// 
        /// </summary>
        public GeovinDuTextBoxLine()
        {
            //
            //   TODO:   在此处添加构造函数逻辑
            //
            this.SetStyle(ControlStyles.DoubleBuffer, true);
            this.BorderStyle = BorderStyle.None;
        }
        private Color _linecolor = Color.Black;
        /// <summary>
        /// 线条颜色
        /// </summary>
        public Color LineColor
        {
            get
            {
                return this._linecolor;
            }
            set
            {
                this._linecolor = value;
                this.Invalidate();
            }
        }

        private const int WM_PAINT = 0xF;


        /// <summary>
        /// 
        /// </summary>
        public bool DrawLine
        {
            get
            {
                return this.m_DrawLine;
            }
            set
            {
                this.m_DrawLine = value;
                this.Invalidate();
            }
        }
        /// <summary>
        /// 
        /// </summary>
        /// <param name="m"></param>
        protected override void WndProc(ref   Message m)
        {


            base.WndProc(ref   m);
            if (m.Msg == 0xf || m.Msg == 0x133)
            {
                if (this.DrawLine)
                {
                    IntPtr hDC = GetWindowDC(m.HWnd);
                    if (hDC.ToInt32() == 0)
                    {
                        return;
                    }
                    Graphics g = Graphics.FromHdc(hDC);
                    //Brush b = Brushes.Black;
                    Pen p = new Pen(this._linecolor, 1);//b

                    Point p1 = new Point(0, this.Height - 2);
                    Point p2 = new Point(this.Width, Height - 2);
                    g.DrawLine(p, p1, p2);

                    m.Result = IntPtr.Zero;
                    ReleaseDC(m.HWnd, hDC);
                }
            }
        }   

    }
}

目录
相关文章
|
数据可视化 数据处理 C#
WPF技术之TextBox控件
WPF ProgressBar控件用于显示操作的进度。它提供了一个可视化的进度条,用于表示任务的完成程度
114 0
|
数据安全/隐私保护 图形学
WinForm——Text控件总结
WinForm——Text控件总结
208 0
WinForm——Text控件总结
|
数据可视化 数据库 图形学
WinForm——ComboBox总结
WinForm——ComboBox总结
533 0
WinForm——ComboBox总结
|
C#
WPF带占位符的TextBox
原文:WPF带占位符的TextBox 简介 效果图如下: 使用的XAML代码如下: 其中第一个是带占位符的文本框,第二个使用附加属性装饰在现有的文本框上。
1415 0
|
C#
WPF中TextBox文件拖放问题
原文:WPF中TextBox文件拖放问题 在WPF中,当我们尝试向TextBox中拖放文件,从而获取其路径时,往往无法成功(拖放文字可以成功)。造成这种原因关键是WPF的TextBox对拖放事件处理机制的不同,具体可参考这篇文章Textbox Drag/Drop in WPF,本文只是介绍如何解决这一问题。
895 0
UWP TextBox私人定制
原文:UWP TextBox私人定制 这次私人定制的是背景透明的TextBox,普通的TextBox在获取焦点后,背景色就变白色了。 下面的代码可以让TextBox的背景始终是透明的。   其实很简单,就修改了 改为 下面的 ...
1030 0
【Xamarin.Forms】在XAML中传递参数
本文演示了如何使用XAML属性来将参数传递给非默认构造函数,调用工厂方法以及指定泛型参数的类型。 概观 通常需要使用需要参数的构造函数实例化对象,或者调用静态创建方法。
1354 0
|
数据安全/隐私保护 UED