kohcayee 发表于 2020-7-29 14:48:57

好的, 非常感谢!

Richard.Ma 发表于 2020-7-29 15:01:03

不客气

kohcayee 发表于 2020-12-15 13:50:02

请问有结果了吗

Richard.Ma 发表于 2020-12-15 15:32:10

你好,单元格合并后,设置图片,应该以合并单元格左上角的单元格为准作为合并后单元格的行和列号,这样就不会出现这个问题了

对应你这边提供的demo,修改代码为

            //清空行
            this.Grid.Rows.Count= 0;
            //测试表格设置为2列
            this.Grid.Cols.Count = 2;
            //添加一行文字
            this.Grid.AddItem("Test Col0\tTest Col1");
            //添加新一行
            this.Grid.AddItem(" \t ");
            //合并该行
            this.Grid.Rows.AllowMerging = true;
            //设置该行图片
            this.Grid.SetCellImage(0, 0, image);
            //延长第二列的宽度以完全显示图片
            this.Grid.Cols.Width = image.Width;
            //设置该行高度以显示图片
            this.Grid.Rows.Height = image.Height;
页: 1 [2]
查看完整版本: c1flexgird 单元格图片问题