本文介绍了删除链接的下划线的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何删除vb.net中datagridviewlinkcolumn链接下方的下划线?我正在Windows应用程序中执行此操作,并且datagridviewlink列中存在链接.
how to remove underline below the datagridviewlinkcolumn links in vb.net? I am doing it in windows application and links are present in datagridviewlink column.
推荐答案
dgv.Columns(<columnindex>).DefaultCellStyle.Font.Underline = False;
textdecoration:none;
还有链接按钮的属性
there is also property for link button
Font-Strikeout="false"
谢谢,
Viprat Shah
Thanks,
Viprat Shah
这篇关于删除链接的下划线的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!