1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- using System;
- using System.ComponentModel;
- using System.Drawing;
- using System.Windows.Forms;
- namespace LYFZ.OtherExpansion.SkinControl
- {
- [ToolboxBitmap(typeof(TextBox))]
- public class WaterTextBox : TextBox
- {
- private string _waterText = string.Empty;
- private Color _waterColor = Color.FromArgb(127, 127, 127);
- [Category("Skin"), Description("水印文字")]
- public string WaterText
- {
- get
- {
- return this._waterText;
- }
- set
- {
- this._waterText = value;
- base.Invalidate();
- }
- }
- [Category("Skin"), Description("水印的颜色")]
- public Color WaterColor
- {
- get
- {
- return this._waterColor;
- }
- set
- {
- this._waterColor = value;
- base.Invalidate();
- }
- }
- private void WmPaintWater(ref Message m)
- {
- using (Graphics g = Graphics.FromHwnd(base.Handle))
- {
- if (this.Text.Length == 0 && !string.IsNullOrEmpty(this._waterText) && !this.Focused)
- {
- TextFormatFlags flags = TextFormatFlags.EndEllipsis | TextFormatFlags.VerticalCenter;
- if (this.RightToLeft == RightToLeft.Yes)
- {
- flags |= (TextFormatFlags.Right | TextFormatFlags.RightToLeft);
- }
- TextRenderer.DrawText(g, this._waterText, new Font("微软雅黑", 8.5f), base.ClientRectangle, this._waterColor, flags);
- }
- }
- }
- protected override void WndProc(ref Message m)
- {
- base.WndProc(ref m);
- if (m.Msg == 15)
- {
- this.WmPaintWater(ref m);
- }
- }
- }
- }
|