使 TextBlock 文本逐字符显示

发布于 2024-12-05 03:08:42 字数 105 浏览 2 评论 0原文

我正在尝试设置 TextBlock 的样式,使其看起来像每次更新其内容时,内容都会更新,就像我们逐个字符地输入内容一样。有人能让我朝着正确的方向开始吗?我不知道该怎么办。

I'm trying to style a TextBlock to make it look like everytime I update its content, the content updates like we were typing it in, character by character. Can someone start me off in the right direction? I have no clue what to do.

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

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

发布评论

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

评论(1

靖瑶 2024-12-12 03:08:42

我建议创建一个行为(有很多关于创建这些行为的示例)。就您而言,您可以创建一个行为。

由于 TextBlock 不公开 TextChanged 事件,因此您可能必须挂钩 Text 属性的绑定,然后运行代码。您可以将文本清除为空字符串,然后一一延迟添加字符(注意:在更新文本时,您需要停止侦听文本的更改)。

I'd suggest creating a Behavior (there are lots of examples out there on creating these). In your case, you could just create a Behavior.

Since the TextBlock doesn't expose a TextChanged event, you'd probably have to hook into the binding for the Text property and then run your code. You could clear the text to an empty string and then add the characters one by one with a delay (note: you'd need to quit listening for changes to Text while you're updating it).

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