用于验证文本输入的 Silverlight TextBox 事件

发布于 2024-12-09 06:46:15 字数 122 浏览 0 评论 0 原文

您好,我正在尝试在 Silverlight 中处理用户对 TextBox 的输入。我需要捕获已输入的文本,如果无效则将其忽略。我尝试处理 KeyDown 和 TextInputStart 事件,但文本在它们之后更新。我应该怎么办?

Hello I'm trying to handle the user's input to the TextBox in Silverlight. I need to catch the text that's been entered and if it is not valid dismiss it. I've tried processing KeyDown and TextInputStart events, but the text gets updated after them. What should I do?

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

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

发布评论

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

评论(1

又爬满兰若 2024-12-16 06:46:15

我认为你最好将 Silverlight Validation 与 MVVM 结合使用。

但如果您更喜欢事件,则可以使用 TextChanged 获取每个新角色的事件。

您可以强制转换 sender 以便获取 TextBox 并使用它的 Text 属性。

例如:

    Dim l_textBox As TextBox = CType(sender, TextBox)
    if    l_textBox.Text = "ThisIsGoodString" Then
        ... Do something ...
    End If

(VB.NET 代码)

I think you better use Silverlight Validation with MVVM.

But if you prefer events, you can use the TextChanged Event to get every new character.

You can cast the sender in order the get the TextBox and use it's Text property.

For example:

    Dim l_textBox As TextBox = CType(sender, TextBox)
    if    l_textBox.Text = "ThisIsGoodString" Then
        ... Do something ...
    End If

(VB.NET code)

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