lian411624 你好
你所需要的功能在【ActiveReports报表功能展示】有详细的源码,下载地址:http://www.gcpowertools.com.cn/products/activereports_demo.htm
纵向分栏:http://www.gcpowertools.com.cn/l ... 01&action=5
- int RowNo = 0;
- private void detail_Format(object sender, EventArgs e)
- {
- if ((RowNo % 2) == 1)
- {
- this.shape1.BackColor = Color.Gainsboro;
- }
- else
- {
- this.shape1.BackColor = Color.Transparent;
- }
- RowNo++;
- }
复制代码 |