最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

WinForm實(shí)現(xiàn)為T(mén)extBox設(shè)置水印文字功能

 更新時(shí)間:2014年08月19日 17:15:12   投稿:shichen2014  
這篇文章主要介紹了WinForm實(shí)現(xiàn)為T(mén)extBox設(shè)置水印文字功能,很實(shí)用的一個(gè)技巧,需要的朋友可以參考下

本文實(shí)例展示了WinForm實(shí)現(xiàn)為T(mén)extBox設(shè)置水印文字功能,非常實(shí)用的技巧,分享給大家供大家參考。

關(guān)鍵代碼如下:

using System;
using System.Runtime.InteropServices;
using System.Windows.Forms;

namespace WinFormUtilHelpV2
{
  /// <summary>
  /// 基于.NET 2.0的TextBox工具類(lèi)
  /// </summary>
  public static class TextBoxToolV2
  {
    private const int EM_SETCUEBANNER = 0x1501;
    [DllImport("user32.dll", CharSet = CharSet.Auto)]

    private static extern Int32 SendMessage
     (IntPtr hWnd, int msg, int wParam, [MarshalAs(UnmanagedType.LPWStr)] string lParam);

    /// <summary>
    /// 為T(mén)extBox設(shè)置水印文字
    /// </summary>
    /// <param name="textBox">TextBox</param>
    /// <param name="watermark">水印文字</param>
    public static void SetWatermark(this TextBox textBox, string watermark)
    {
      SendMessage(textBox.Handle, EM_SETCUEBANNER, 0, watermark);
    }
    /// <summary>
    /// 清除水印文字
    /// </summary>
    /// <param name="textBox">TextBox</param>
    public static void ClearWatermark(this TextBox textBox)
    {
      SendMessage(textBox.Handle, EM_SETCUEBANNER, 0, string.Empty);
    }
  }
}

測(cè)試代碼如下:

using System;
using System.Windows.Forms;
using WinFormUtilHelpV2;

namespace WinFormUtilHelpV2Test
{
  public partial class WinTextBoxToolV2Test : Form
  {
    public WinTextBoxToolV2Test()
    {
      InitializeComponent();
    }

    private void WinTextBoxToolV2Test_Load(object sender, EventArgs e)
    {
      textBox1.SetWatermark("請(qǐng)輸入用戶名稱....");
      textBox2.SetWatermark("請(qǐng)輸入用戶密碼....");
    }

    private void button1_Click(object sender, EventArgs e)
    {
      textBox1.ClearWatermark();
      textBox2.ClearWatermark();
    }
  }
}

測(cè)試效果如下圖所示:

希望本文所述的為T(mén)extBox設(shè)置水印文字功能示例對(duì)大家C#程序設(shè)計(jì)有所幫助!

相關(guān)文章

最新評(píng)論

乐平市| 莱州市| 普安县| 柘荣县| 墨玉县| 南雄市| 沁源县| 新蔡县| 祁连县| 闸北区| 洱源县| 上高县| 达日县| 吴堡县| 铁岭市| 延边| 中超| 涿鹿县| 惠来县| 濮阳县| 伊通| 苏尼特左旗| 蓬莱市| 淮南市| 高阳县| 锦屏县| 枝江市| 图木舒克市| 嘉兴市| 方山县| 察隅县| 富民县| 义马市| 万安县| 北辰区| 泰安市| 营口市| 阿城市| 沂水县| 桐庐县| 安宁市|