以自定义格式打印 DevExpress Datagrid
我想按以下格式打印数据网格
用户名
地址
城市
密码
例如:
约翰·史密斯
新街25号
纽约
75896
这些是我的数据网格列
用户名、地址、城市、PinCode
我使用 SQL Server Compact Edition 作为我的后端,使用 DevExpress 产品 gridcontrol 作为我的数据网格
I want to print the data grid in the following format
Username
Address
City
PinCode
Eg :
JohnSmith
25,NewStreet
New York
75896
These are my datagrid columns columns
UserName, Address, City, PinCode
I am using SQL Server Compact Edition as my backend and DevExpress Product gridcontrol as my datagrid
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用DevExpress.VerticalGrig.VGridControl,您可以获得垂直查看数据的要求。
从数据库中获取数据作为数据表,并将数据源属性值设置为数据表。
对于 VgridView,您只需添加行和名称或使用 DataFieldName 绑定行。
Use DevExpress.VerticalGrig.VGridControl and you can get the requirements you want to view your data vertically.
Get your data from the Database as a datatable and set the datasource property value to the datatable.
For the VgridView you just have to add the rows and name or bound the rows with DataFieldName.
玛丽娜告诉我,她在支持中心回答了这个问题。因此,我将在此处为社区发布一个链接:
打印数据网格自定义格式
Marina told me that she answered this question in the support center. So, I will just post a link here for the community:
Print datagrid in custom format