如何在C#中的Windows应用程序中打印时删除gridview中的一列? [英] How to remove one column in gridview at the time of printing in Windows Application in C#?

查看:80
本文介绍了如何在C#中的Windows应用程序中打印时删除gridview中的一列?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在C#中的Windows应用程序中打印时删除gridview中的一列?

解决方案

尝试将宽度设置为0或者可见性属性为你希望隐藏的列。


下面代码对于删除/删除任何列非常有用

 DataTable dt; 
if (dt.Columns.Contains( ColumnName))
dt.Columns.Remove( ColumnName





如果有任何问题,请给我反馈。感谢


How to remove one column in gridview at the time of printing in Windows Application in C#?

解决方案

Try setting the width to 0 or the visibility property of the column you wish to hide.


Below Code is very helpful to delete/remove any column

DataTable dt;
if(dt.Columns.Contains("ColumnName"))
  dt.Columns.Remove("ColumnName")



Please give me feedback if there is any issue. Thanks


这篇关于如何在C#中的Windows应用程序中打印时删除gridview中的一列?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆