在WPF中,如何从codeplex增加DataGrid中ant的厚度?
我正在使用 Codeplex 的 DataGrid for WPF。网格似乎很美妙。最近,我注意到当我使用箭头键时,DataGrid 中显示的蚂蚁显示了一条虚线蚂蚁,这对用户来说不是很清楚。示例如下所示。
蚂蚁现在出现在值为 4 的单元格周围。它是虚线,但不是很清晰。
我想知道如何增加此网格中显示的蚂蚁的厚度。
I am using DataGrid for WPF from codeplex. The grid seems to be wonderful. Recently I noticed that the ant shown in the DataGrid while I am using arrow keys, there is a dotted ant that is displayed which is not very clear to the user. Sample shown below.
The ant is now present around cell which has the value 4. It is dotted lines but not very clear.
I wanted to know how can I increase the thickness of ant shown in this grid.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过重写 DataGridCell.FocusVisualStyle 来重写点焦点的行为。
You can override that behavior of dotted focus by overriding
DataGridCell.FocusVisualStyle
.