代码拉取完成,页面将自动刷新
/*
* Copyright (C) 2013 Colin Mackie.
* This software is distributed under the terms of the GNU General Public License.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Text;
using System.Windows;
using System.Windows.Forms;
namespace WinAuth
{
/// <summary>
/// Subclass of TextBox that does not set the Text value based on the ShowBitmap flag and we
/// draw it ourselves, so that window spys cannot get the contents
/// </summary>
public class SecretTextBox : TextBox, ISecretTextBox
{
/// <summary>
/// Our hidden txet value
/// </summary>
private string m_text;
/// <summary>
/// Number of chars to space out when in secret mode
/// </summary>
private int m_spaceOut;
/// <summary>
/// Flag to draw ourselves
/// </summary>
private bool m_secretMode;
/// <summary>
/// Save the font as when we switch secret mode the old font needs resetting
/// </summary>
private string m_fontFamily;
private float m_fontSize;
/// <summary>
/// Create a new SecretTextBox
/// </summary>
public SecretTextBox()
: base()
{
}
/// <summary>
/// Get/set the flag to draw as a bitmap
/// </summary>
public bool SecretMode
{
get
{
return m_secretMode;
}
set
{
m_secretMode = value;
this.Enabled = !value; // we disable so cannot select/copy
this.SetStyle(ControlStyles.UserPaint, value);
Text = m_text;
//
// when we disable secret mode we need to reset the font else sometimes it doesn't show corretly
if (m_fontFamily == null)
{
m_fontFamily = this.Font.FontFamily.Name;
m_fontSize = this.Font.Size;
}
if (value == false)
{
this.Font = new Font(m_fontFamily, m_fontSize);
}
//
this.Invalidate(); // force it to redraw
}
}
public int SpaceOut
{
get
{
return m_spaceOut;
}
set
{
m_spaceOut = value;
}
}
/// <summary>
/// Value of the textbox, but if in secret mode then will return ***** as value
/// </summary>
public override string Text
{
get
{
return (SecretMode == true ? m_text : base.Text);
}
set
{
m_text = value;
base.Text = (SecretMode == true ? (string.IsNullOrEmpty(value) == false ? new string('*', value.Length) : value) : value);
this.Invalidate();
}
}
/// <summary>
/// Overriden Paint method to draw the text based on our secret value rather than Text, which might be ****'s
/// </summary>
/// <param name="e"></param>
protected override void OnPaint(PaintEventArgs e)
{
Graphics g = e.Graphics;
using (Brush brush = new SolidBrush(base.ForeColor))
{
StringFormat sf = StringFormat.GenericTypographic;
sf.Alignment = StringAlignment.Center;
sf.LineAlignment = StringAlignment.Center;
g.TextRenderingHint = System.Drawing.Text.TextRenderingHint.AntiAlias;
string text = m_text;
// if we have spacing, we add a space in between each set of chars
if (m_spaceOut != 0 && m_text != null)
{
StringBuilder sb = new StringBuilder();
for (int i = 0; i < m_text.Length; i += m_spaceOut)
{
if (i >= m_text.Length)
{
break;
}
if (i + m_spaceOut >= m_text.Length)
{
sb.Append(m_text.Substring(i));
}
else
{
sb.Append(m_text.Substring(i, m_spaceOut)).Append(" ");
}
}
text = sb.ToString().Trim();
}
// draw the whole string
g.DrawString((text != null ? text : string.Empty), base.Font, brush, new RectangleF(0, 0, base.Width, base.Height), sf);
}
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。