在 WPF 中查看文本并覆盖其他文本
我正在开发一个屏幕键盘,其中每个键都会生成另一个应用程序的三个击键序列。每个按钮都有文字说明。但现在客户希望该功能能够选择查看发送哪些字符。然后我希望字符显示在描述性文本上,以便仍然可以想象下面的文本,请参阅下面我的建议。但我该怎么做呢?
I am developing an on-screen keyboard where each key generates a sequence of three keystrokes to another application. Each button has a text description. But now clients want the function to be able to choose to see which characters are sent. Then I want the chars to be displayed over the descriptive text so that it is still possible to imagine the text below, see my suggestion below. But how do I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一种简单的解决方案是将 2 个文本块放入网格中,并使顶部文本块的背景透明。
one simple solution is to put 2 textblocks in a grid and make the background of the top one transparent.
将 2 个
TextBox
或TextBlock
一个放在另一个的上面,并将顶部的背景设置为透明。Place 2
TextBox
orTextBlock
one on top of the other, and make the background of the top one transparent.