错误:文本、原语、图像、复选框不是StiStyleComponentType的有效值

本文关键字:StiStyleComponentType 有效值 图像 文本 原语 错误 复选框 | 更新日期: 2023-09-27 18:01:47

对于报告,我在wpf中使用了刺激性软件。我的打印按钮代码是:

try
        {
            DataTable dta = new DataTable();
            DataSet1.dtDataTable dt = new DataSet1.dtDataTable();
            List<KalaClass> list = MetroDataGrid.ItemsSource as List<KalaClass>;
            foreach (var item in list)
            {
                var row = dt.NewRow();
                row["id"] = item.KalaID;
                row["name"] = item.KalaName;
                row["tedad"] = item.KalaTedad;
                row["pice"] = item.KalaPrice;
                row["info"] = item.KalaTozihat;
                row["date"] = item.KalaDate;
                dt.Rows.Add(row);
            }
            DataSet ds = new DataSet();
            ds.Tables.Add(dt);

            StiReport report = new StiReport();
            report.Load("sReport.mrt");
            report.Dictionary.Clear();
            report.RegData(ds);
            report.Dictionary.Synchronize();
            DateTime today =Convert.ToDateTime( DateTime.Today.ToShortDateString());
            (report.GetComponentByName("txtDate") as StiText).Text = convertDate.toShamsi(today);
            //(report.GetComponentByName("txtName") as StiText).Text = comboBox.SelectionBoxItem.ToString();
            //(report.GetComponentByName("Text1") as StiText).Text = txtid.Text;

            report.Show();
        }
        catch(Exception ex)
        {MessageBox.Show(ex.Message.ToString());
        }

我得到"Text, Primitive, Image, CheckBox不是StiStyleComponentType的有效值"

错误
  report.Load("sReport.mrt");

我试过了,但我找不到为什么我得到这个错误。

错误:文本、原语、图像、复选框不是StiStyleComponentType的有效值

我的刺激报告的dll有问题。我删除了它,并添加了新的版本。

相关文章:
  • 没有找到相关文章