Winform
Tony__Kun
这个作者很懒,什么都没留下…
展开
-
checkbox要点两次两次才能选中,让它只需要点一次
把grideview里的OptionsBehavior下面的EditorShowMode属性设置成MouseDown后,就可以单击选中checkedit转载 2017-05-19 15:13:41 · 6774 阅读 · 1 评论 -
向RDLC传递参数
首先要先添加参数,打开Report1.rdlc,点击视图—->报表数据—->参数—->右键添加参数(这里添加一个tasknumber) 勾选两个空值string a="测试";ReportParameter rp = new ReportParameter("tasknumber", a); this.reportViewer1.LocalRepo原创 2017-05-05 11:12:15 · 1973 阅读 · 0 评论 -
reportView控件无法正常加载
VS2013使用RDLC搭配控件reportViewer控件时,控件无法在在Form上正常显示。这是由于版本问题,VS2013需要使用11.0.0版本的Microsoft.ReportViewer.Winform以及Microsoft.ReportViewer.Common....原创 2018-10-30 19:21:40 · 1388 阅读 · 0 评论 -
RDLC加载图片
RDLC加载图片时,需要将reporViewer属性LocalReport——>EnableExternalImages设置为True,确定呈现外部图像。图像加载代码: string absolutePath = Path.GetFullPath(picture.Path);//获取绝对路径string picPath = "file:///" + absolutePath...原创 2018-10-30 19:28:09 · 1102 阅读 · 1 评论