找回密码
 立即注册

QQ登录

只需一步,快速开始

yuanbin74

新手上路

1

主题

4

帖子

39

积分

新手上路

积分
39
  • 35

    金币

  • 主题

  • 帖子

最新发帖

[已处理] 用户自定义报表

yuanbin74
新手上路   /  发表于:2015-1-4 13:42  /   查看:5481  /  回复:6
可以提供Designer一些开发资料吗? 比如在Designer的DETAIL区域如何绑定TEXTBox控件呢?

6 个回复

倒序浏览
iceman
社区贡献组   /  发表于:2015-1-4 19:14:00
沙发
回复 1楼yuanbin74的帖子

问题我们已经查收,明天进一步处理。
回复 使用道具 举报
yuanbin74
新手上路   /  发表于:2015-1-5 10:44:00
板凳
designer.Report里面怎么没有SaveLayout这个方法呢?
回复 使用道具 举报
iceman
社区贡献组   /  发表于:2015-1-5 12:11:00
地板
回复 1楼yuanbin74的帖子

需要先获取该控件通过 DataFeild 属性设置:

  1. private void button1_Click(object sender, EventArgs e)
  2.         {
  3.             foreach (var item in reportDesigner.Selection)
  4.             {
  5.                 if (item is GrapeCity.ActiveReports.SectionReportModel.TextBox)
  6.                 {
  7.                     GrapeCity.ActiveReports.SectionReportModel.TextBox tx = item as GrapeCity.ActiveReports.SectionReportModel.TextBox;
  8.                     tx.DataField = "订购日期";
  9.                 }

  10.             }
  11.         }
复制代码
回复 使用道具 举报
yuanbin74
新手上路   /  发表于:2015-1-5 13:04:00
5#
谢谢,  我再问一个问题,通过点击按钮把TextBox绑定到了designer, 我手动绑定数据到TextBox里面,怎么绑定了?
回复 使用道具 举报
yuanbin74
新手上路   /  发表于:2015-1-5 14:05:00
6#
获取他的当前区域怎么获取?
回复 使用道具 举报
iceman
社区贡献组   /  发表于:2015-1-5 16:10:00
7#
回复 6楼yuanbin74的帖子

抱歉,我不理解当前的问题:
“通过点击按钮把TextBox绑定到了designer”,请解释下这个绑定动作。
“ 我手动绑定数据到TextBox里面”是希望通过代码设置 TextBox 的字段吗?
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 立即注册
返回顶部