Fastreport报表 获取列表多选数据
Posted 小飞鱼通达二开
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Fastreport报表 获取列表多选数据相关的知识,希望对你有一定的参考价值。
设置列表的run Design 的option下 optionSelection的MultiSelect = True
private void button1_Click(object sender, EventArgs e)
{
string str = "";int[] rows = this.gridView1.GetSelectedRows();//先获取选择行的行号
DataTable dt = this.dgvContent.DataSource as DataTable;//得到GridControl的数据源
foreach (int item in rows)
{
str += dt.Rows[item][0].ToString() + ",";
}
MessageBox.Show(str);
}
获取选中的多个id值
以上是关于Fastreport报表 获取列表多选数据的主要内容,如果未能解决你的问题,请参考以下文章