如何为密码类型设置自定义文本框的边框?

发布于 2024-11-24 04:21:01 字数 451 浏览 3 评论 0原文

我有 2 个文本框,其中包含用户名和用户名。密码。我从 http://www.codeproject.com/KB/edit/RoundedCornerTextbox 得到了一个 RoundedCornerTextbox 类.aspx。它与用户名文本框配合得很好。但对于 PAssword 文本框,它显示实际密码而不是“*” - 文本框的密码字符。

如何在 RoundedCornerTextbox 类中处理这种情况?如果我只是在 DrawString() 中将文本设置为“**”(* 与文本大小一样多),那么当我检索 pswdTxt.Text 时,收到的数据仅是“*”,而不是实际文本。

I have 2 text boxes with USername & PAssword. I got a class RoundedCornerTextbox from http://www.codeproject.com/KB/edit/RoundedCornerTextbox.aspx. It works well with username textbox. But with PAssword textbox it shows actual password instead of "*" - the password char of Textbox.

How can I handle this situation in the RoundedCornerTextbox class ? If I just set the text to "**" (* as many as size of text) in DrawString(), then when I retrieve pswdTxt.Text, the data received will be "*" only and not actual text.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ˉ厌 2024-12-01 04:21:01

好吧,如果你想要圆角文本框,你可以使用免费的 Krypton toolkit 文本框组件。它支持文本框边框圆角。您需要的是设置属性:

int howMuchRoundCorners = 5;
kryptonTextBox.StateCommon.Border.Rounding = howMuchRoundCorners;

在此处输入图像描述

Ok, if you want rounded corner text box, you can use free Krypton toolkit textbox component. It supports textbox border rounding. What you need is to set property:

int howMuchRoundCorners = 5;
kryptonTextBox.StateCommon.Border.Rounding = howMuchRoundCorners;

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文