如何设置网格光标可以在整个网格中工作?
我有一个 2 行 * 2 列的网格,并将 TextBlock 放在左上单元格中(行 = 0,列 = 0)。 然后我在 XAML 中设置 Grid.Cursor = "Hand" 。仅当鼠标悬停在 TextBlock 上时才显示手形光标。但我想在整个网格中显示手形光标。
怎么做呢?
I have a grid with 2 rows * 2 columns, and put a TextBlock in left-up cell(row=0, column=0).
then I set Grid.Cursor = "Hand" in XAML. the hand-cursor displayed only when mouse over TextBlock. But I want to display the hand-cursor in entire grid.
How to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将网格的背景设置为透明。
Set the Background of the Grid to transparent.
光标仅适用于网格的内容区域。因此,为了让光标穿过整个网格,请将其填充。
这可以通过更改 TextBlock 所在的网格单元格来显示。
The Cursor is only applying to the content area of the grid. Thus to get the cursor across the whole grid, fill it in.
This can be shown, by changing what grid cells the TextBlock is positioned in.