using OTSIncAReportApp._1_UI; using OTSIncAReportApp.Control_ECharts; using OTSIncAReportApp.DataOperation.DataAccess; using OTSCommon.Model; using OTSIncAReportGraph.Controls; using OTSIncAReportGrids; using OTSRptPeriodicTable; using System; using System.Collections.Generic; using System.Data; using System.Drawing; using System.IO; using System.Linq; using System.Windows.Forms; using System.Xml; using static OTSIncAReportApp.OTSReport_Export; using OTSIncAReportApp.ReportTemplate; using OTSIncAReportApp.OTSSampleReportInfo; namespace OTSIncAReportApp.OTSTemplateDesigner { public class Export_ReportTemplate { #region 全局变量 public List m_list_dt; //导出的各模块数据,合集 public OTSReport_Export m_otsreport_export; UserLibraryData userLibrary; DataTable userLibraryData; DataTable m_bt_DBData = new DataTable(); List TemplateList; frmReportConditionChoose m_condition; public int condition = -1; #endregion #region 构造函数 public Export_ReportTemplate(OTSReport_Export in_export) { m_otsreport_export = in_export; TemplateList = new List(); m_condition = in_export.m_ReportApp.m_conditionChoose; //加载三元相图各项 string pathtpf = in_export.m_ReportApp.m_rstDataMgr.m_RptConfigFile.TrigTemplateFileFolder + "\\" + in_export.m_ReportApp.m_rstDataMgr.m_RptConfigFile.TriTempFile;// Application.StartupPath + "\\Config\\ProData\\DefaultTriTemplateFile.tpf"; TemplateList = new List(); DataSet ds = DataOperation.DataAccess.XMLoperate.GetXmlData(pathtpf, "XMLData"); DataTable dt = ds.Tables["Member"]; foreach (DataRow item in dt.Rows) { if (item["TemplateName"].ToString() != "") { TemplateList.Add(item["TemplateName"].ToString()); } } m_list_dt = new List(); } public Export_ReportTemplate() { m_list_dt = new List(); } #endregion #region 插入测量结果Grid表格 /// /// 向 模板设计器 中插入测量结果Grid表格 /// /// public DataTable InsertReportTemplateTable_ResultGrid() { //------------------加载模块,获取数据------------------------------------------------- ResultGrid ls_resultgrid = new ResultGrid(m_otsreport_export.m_ReportApp); Dictionary keyValues_ResultGrid = ls_resultgrid.GetData_ResultGrid_Report(); //------------------加载模块,获取数据结束---------------------------------------------- Dictionary.Enumerator en = keyValues_ResultGrid.GetEnumerator(); string str_CLJGMC = ""; string str_YXSJ = ""; string str_SCZS = ""; string str_FLFA = ""; string str_YJCTZ = ""; string str_SCMJ = ""; string Magnification = ""; string str_CKBZ = "GB/T30834-2014"; keyValues_ResultGrid.TryGetValue(ls_resultgrid.table["col1"].ToString(), out str_CLJGMC);//测量结果名称 keyValues_ResultGrid.TryGetValue(ls_resultgrid.table["col4"].ToString(), out str_YXSJ);//运行时间 keyValues_ResultGrid.TryGetValue(ls_resultgrid.table["col5"].ToString(), out str_SCZS);//视场总数 keyValues_ResultGrid.TryGetValue(ls_resultgrid.table["col6"].ToString(), out str_FLFA);//分类方案 keyValues_ResultGrid.TryGetValue(ls_resultgrid.table["col7"].ToString(), out str_YJCTZ);//已检测特征 keyValues_ResultGrid.TryGetValue(ls_resultgrid.table["col8"].ToString(), out str_SCMJ);//视场面积 keyValues_ResultGrid.TryGetValue("Magnification", out Magnification);//放大倍数 //将获取到的数据转换成报告模板能接收的格式。 DataTable ls_new_dt = new DataTable(); ls_new_dt.TableName = "ResultGrid"; ls_new_dt.Columns.Add("CLJGMC"); //测量结果名称 ls_new_dt.Columns.Add("YXSJ"); //运行时间 ls_new_dt.Columns.Add("SCZS"); //视场总数 ls_new_dt.Columns.Add("FLFA"); //分类方案 ls_new_dt.Columns.Add("YJCTZ"); //已检测特征 ls_new_dt.Columns.Add("SCMJ"); //视场面积 ls_new_dt.Columns.Add("CKBZ"); //参考标准 ls_new_dt.Columns.Add("FDBS"); //行转列,这里不会发生改变,所以这样写 DataRow dr = ls_new_dt.NewRow(); dr["CLJGMC"] = str_CLJGMC; dr["YXSJ"] = str_YXSJ; dr["SCZS"] = str_SCZS; dr["FLFA"] = str_FLFA; dr["YJCTZ"] = str_YJCTZ; dr["SCMJ"] = str_SCMJ; dr["CKBZ"] = str_CKBZ; dr["FDBS"] = Magnification; ls_new_dt.Rows.Add(dr); m_list_dt.Add(ls_new_dt); return ls_new_dt; } #endregion #region 读取选择颗粒数据 private void SelectParticleData(out DataTable dt) { List selectParticles = m_otsreport_export.m_ReportApp.GetSelectedParticles(); #region Datatable数据表格式 DataTable dtUelect = new DataTable(); dtUelect.Columns.Add("fieldid"); dtUelect.Columns.Add("particleid"); dtUelect.Columns.Add("AveGray"); dtUelect.Columns.Add("RectLeft"); dtUelect.Columns.Add("RectTop"); dtUelect.Columns.Add("RectWidth"); dtUelect.Columns.Add("RectHeight"); dtUelect.Columns.Add("Area"); dtUelect.Columns.Add("PosX"); dtUelect.Columns.Add("PosY"); dtUelect.Columns.Add("TypeId"); dtUelect.Columns.Add("SegmentNum"); dtUelect.Columns.Add("SEMPosX"); dtUelect.Columns.Add("SEMPosY"); dtUelect.Columns.Add("XrayId"); dtUelect.Columns.Add("DMAX"); dtUelect.Columns.Add("DMIN"); dtUelect.Columns.Add("DPERP"); dtUelect.Columns.Add("PERIMETER"); dtUelect.Columns.Add("ORIENTATION"); dtUelect.Columns.Add("DINSCR"); dtUelect.Columns.Add("DMEAN"); dtUelect.Columns.Add("DELONG"); dtUelect.Columns.Add("DFERET"); dtUelect.Columns.Add("TypeName"); dtUelect.Columns.Add("TypeColor"); #endregion for (int i = 0; i < selectParticles.Count; i++) { dtUelect.Rows.Add(selectParticles[i].FieldId, selectParticles[i].ParticleId, selectParticles[i].AveGray, selectParticles[i].RectLeft, selectParticles[i].RectTop, selectParticles[i].RectWidth, selectParticles[i].RectHeight, selectParticles[i].Area, selectParticles[i].PosX, selectParticles[i].PosX, selectParticles[i].TypeId, /*selectParticles[i].ElementNum,*/ selectParticles[i].SegmentNum, selectParticles[i].SEMPosX, selectParticles[i].SEMPosY, selectParticles[i].ParticleId, selectParticles[i].DMAX, selectParticles[i].DMIN, selectParticles[i].DPERP, selectParticles[i].PERIMETER, selectParticles[i].ORIENTATION, selectParticles[i].DINSCR, selectParticles[i].DMEAN, selectParticles[i].DELONG, selectParticles[i].DFERET, selectParticles[i].TypeName, selectParticles[i].TypeColor); } dt = dtUelect.Copy(); } #endregion #region 读取标准库所需要的数据 private void GetSTL(string str ,out DataTable data) { DataTable dt = new DataTable(); dt.Columns.Add("TypeId"); dt.Columns.Add("Hardness", typeof(double)); dt.Columns.Add("Hardness_detailed"); OTSCommon.SqLiteHelper sh = new OTSCommon.SqLiteHelper("data source='" + System.IO.Directory.GetCurrentDirectory()+ "\\Config\\SysData\\"+ str + ".db" + "'"); DataTable dt_stl= sh.ExecuteQuery("select * from ClassifySTD"); for (int i=0;i< dt_stl.Rows.Count;i++) { DataRow dr = dt.NewRow(); dr["TypeId"] = dt_stl.Rows[i]["StrName"].ToString(); dr["Hardness_detailed"] = dt_stl.Rows[i]["Hardness"].ToString(); if (System.Text.RegularExpressions.Regex.Replace(dt_stl.Rows[i]["Hardness"].ToString(), @"[^\d.\d]", "").ToString()!="") { if (System.Text.RegularExpressions.Regex.Replace(dt_stl.Rows[i]["Hardness"].ToString(), @"[^\d.\d]", "")== "o. Def.") { dr["Hardness"] = 0; } else { dr["Hardness"] = Convert.ToDouble(System.Text.RegularExpressions.Regex.Replace(dt_stl.Rows[i]["Hardness"].ToString(), @"[^\d.\d]", "")); } }else { dr["Hardness"] = 0; } dt.Rows.Add(dr); } data = dt; } public bool GetDBData(c_TemplateClass m_mbszclass) { //GetSTL(); m_bt_DBData.Clear(); m_bt_DBData.Columns.Clear(); ParticleData fielddata = new ParticleData(m_otsreport_export.m_ReportApp.m_rstDataMgr.ResultFilesList[m_otsreport_export.m_ReportApp.m_rstDataMgr.getSelectedIndex()].FilePath); List colid = new List() { "TypeName", "ar", "TypeId", "Largest", "Class", "con" }; //获取粒级表 string path1 = m_otsreport_export.m_ReportApp.m_rstDataMgr.m_RptConfigFile.PartSizeFileFolder + m_otsreport_export.m_ReportApp.m_rstDataMgr.m_RptConfigFile.PartSizeFile; DataSet ds = OTSIncAReportApp.DataOperation.DataAccess.XMLoperate.GetXml(path1); string sizestr = ds.Tables[0].Rows[0]["Sizes"].ToString(); for (int i = 0; i < sizestr.Split(',').Length - 1; i++) { if (sizestr.Split(',')[i].Length > 0) { double d1 = Convert.ToDouble(sizestr.Split(',')[i]); double d2 = Convert.ToDouble(sizestr.Split(',')[i + 1]); colid.Add(d1.ToString() + "~" + d2.ToString()); } } double d = Convert.ToDouble(sizestr.Split(',')[sizestr.Split(',').Length - 1]); colid.Add(d.ToString() + "~MAX"); for (int i=0;i< colid.Count;i++) { m_bt_DBData.Columns.Add(colid[i].ToString()); } DataTable dt =InvalidRemoval(fielddata.GetParticleListForParticlSize("area", ""), "TypeName"); DataTable AreaInformationOfAllElements = InvalidRemoval(fielddata.GetAreaByAllIncA(""), "TypeName"); DataTable dtp = InvalidRemoval(fielddata.GetParticleAll(""), "GroupName"); //选择颗粒信息 DataTable data; SelectParticleData(out data); //选择颗粒整理成表 DataTable Partic_dt = new DataTable(); if (data.Rows.Count >0) { Partic_dt = GetParticleListForParticlSize(data, dtp); } List vs = new List() { "DMAX", "DMIN", "FERET", "Area" }; string po = vs[m_otsreport_export.m_mbszclass.M_KLFXJG.index_cb_klcc_jsfs]; switch (po) { case "DMAX": po = "DMAX"; break; case "DMIN": po = "DMIN"; break; case "CIRCLE": po = "Area"; break; case "FERET": po = "DFERET"; break; } //如果是全部颗粒(0) if (m_mbszclass.M_SY.int_xzkl == 0) { for (int i = 0; i < dt.Rows.Count; i++) { DataRow dr = m_bt_DBData.NewRow(); dr["TypeName"] = dt.Rows[i]["TypeName"].ToString(); dr["TypeId"] = dt.Rows[i]["TypeId"].ToString(); dr["con"] = dt.Rows[i]["con"].ToString(); dr["Class"] = dt.Rows[i]["GroupName"].ToString(); dr["Largest"] = Math.Round(Convert.ToDouble(dt.Rows[i]["max"]), 2); for (int a = 6; a < colid.Count; a++) { string d1 = colid[a].Split('~')[0]; string d2 = colid[a].Split('~')[1]; if (d2 == "MAX") { d2 = "999"; } DataRow[] datas = dtp.Select(getWhere(d2, d1, po, dt.Rows[i]["TypeId"].ToString())); dr[colid[a]] = datas.Count(); } for (int a = 0; a < AreaInformationOfAllElements.Rows.Count; a++) { if (dt.Rows[i]["TypeId"].ToString() == AreaInformationOfAllElements.Rows[a]["TypeId"].ToString()) { dr["ar"] = AreaInformationOfAllElements.Rows[a]["ar"]; } } m_bt_DBData.Rows.Add(dr); } } else//选择颗粒(1) { for (int i = 0; i < Partic_dt.Rows.Count; i++) { DataRow dr = m_bt_DBData.NewRow(); dr["TypeName"] = Partic_dt.Rows[i]["TypeName"].ToString(); dr["TypeId"] = Partic_dt.Rows[i]["TypeId"].ToString(); dr["con"] = Partic_dt.Rows[i]["con"].ToString(); dr["Class"] = Partic_dt.Rows[i]["GroupName"].ToString(); dr["Largest"] = Math.Round(Convert.ToDouble(Partic_dt.Rows[i]["max"]), 2); for (int a = 6; a < colid.Count; a++) { string d1 = colid[a].Split('~')[0]; string d2 = colid[a].Split('~')[1]; if (d2 == "MAX") { d2 = "999"; } DataRow[] datas = dtp.Select(getWhere(d2, d1, po, Partic_dt.Rows[i]["TypeId"].ToString())); dr[colid[a]] = datas.Count(); } dr["ar"] = Partic_dt.Rows[i]["Area"]; m_bt_DBData.Rows.Add(dr); } } return true; } private DataTable GetParticleListForParticlSize(DataTable data,DataTable table) { DataTable dt_Partick = new DataTable(); dt_Partick.Columns.Add("TypeId"); dt_Partick.Columns.Add("TypeName"); dt_Partick.Columns.Add("TypeColor"); dt_Partick.Columns.Add("con"); dt_Partick.Columns.Add("av"); dt_Partick.Columns.Add("max"); dt_Partick.Columns.Add("Area",typeof(double)); dt_Partick.Columns.Add("GroupName"); List typeName = new List(); for (int i=0;i=" + min + " and " + col + "<" + max + " and TypeId=" + partic; } #endregion #region 插入颗粒列表并带有帧图 private bool DoesDBexist() { try { ResultFile resfile = m_otsreport_export.m_ReportApp.m_rstDataMgr.ResultFilesList[m_otsreport_export.m_ReportApp.m_rstDataMgr.getSelectedIndex()]; string str_libraryName = ((Dictionary)((Dictionary)((Dictionary)resfile.ResultInfo["Sample"])["Members"])["MsrParams"])["STDName"].ToString(); OTSCommon.SqLiteHelper sh = new OTSCommon.SqLiteHelper("data source='" + System.IO.Directory.GetCurrentDirectory() + "\\Config\\SysData\\" + str_libraryName + ".db" + "'"); if (sh.ExecuteQuery("select * from ClassifySTD")==null) { return false; } return true; } catch { return false; } } private string datatable_data(DataTable dt,int it,string str) { if (str == "Hardness") { return dt.Rows[it]["Hardness_detailed"].ToString(); } else if (str == "Area") { return Convert.ToDouble(dt.Rows[it][str]).ToString("#0.00"); } else if (str== "DMAX") { return Math.Round(Convert.ToDouble(dt.Rows[it][str]), 2).ToString(); } else { return dt.Rows[it][str].ToString(); } } private bool JudgeWhetherItExists(int id, DataTable dt,string column) { for (int i=0;i ClassName ) { DataTable dt_Class = dataTable.Copy(); dt_Class.Clear(); dt_Class.TableName = "Particel"; dt_Class.Columns.Remove("Name"); dt_Class.Columns.Remove("TypeId"); for (int i = 0; i < ClassName.Count; i++) { //保留当前循环中大类物质,去除其他物质 DataTable dt = dataTable.Copy(); dt.Clear(); for (int a = 0; a < dataTable.Rows.Count; a++) { if (dataTable.Rows[a]["Class"].ToString() == ClassName[i].ToString()) { dt.Rows.Add(dataTable.Rows[a].ItemArray); } } if (dt.Rows.Count == 0) continue; DataTable dt_2 = new DataTable(); dt_2 = dataTable.Copy(); dt_2.Clear(); DataRow row = dt_2.NewRow(); dt_2.Rows.Add(row); for (int a=0;a< dt.Columns.Count;a++) { if (dt.Columns[a].ToString() != "Name" && dt.Columns[a].ToString() != "Class"&&dt.Columns[a].ToString()!= "TypeId") { bool bl = false; for (int b = 0; b < dt.Rows.Count; b++) { if (!dt.Rows[b].IsNull(dt.Columns[a].ToString())) { bl = true; } } if (bl) { dt_2.Rows[0][dt.Columns[a].ToString()] = decimal.Parse(dt.Compute("sum(" + dt.Columns[a].ToString() + ")", "").ToString()); } } } dt_2.Columns.Remove("Name"); dt_2.Columns.Remove("TypeId"); dt_2.Rows[0]["Class"] = ClassName[i]; //dt_2.Rows[0]["TypeId"] = dt.Rows[0]["TypeId"].ToString(); dt_Class.Rows.Add(dt_2.Rows[0].ItemArray); } m_list_dt.Add(dt_Class); return dt_Class; } #endregion #region 插入平均元素含量表 private DataTable ElementSorting( DataTable AllAnalysisDetails, List ClassName , ParticleData fielddata) { DataTable dte = fielddata.GetAllElement(); DataTable ElementSorting_dt = AllAnalysisDetails.Copy(); ElementSorting_dt.Clear(); for (int i=0; i< ClassName.Count;i++) { DataTable dt = AllAnalysisDetails.Copy(); dt.Clear(); for (int a=0;a< AllAnalysisDetails.Rows.Count;a++) { if (AllAnalysisDetails.Rows[a]["Class"].ToString()== ClassName[i].ToString()) { dt.Rows.Add(AllAnalysisDetails.Rows[a].ItemArray); } } //将颗粒大小排序(从大到小) DataView dv = dt.DefaultView; dv.Sort = "Area DESC"; DataTable dt_Element = dv.ToTable(); for (int a=0;a< dt_Element.Rows.Count;a++) { ElementSorting_dt.Rows.Add(dt_Element.Rows[a].ItemArray); } } //循环创建元素列(类型定义为double,为以后计算做准备) for (int a = 0; a < dte.Rows.Count; a++) { ElementSorting_dt.Columns.Add(dte.Rows[a]["Name"].ToString(), typeof(double)); } for (int a = 0; a < ElementSorting_dt.Rows.Count; a++) { DataTable ClassificationDetails = fielddata.GetAreaByIncA(ElementSorting_dt.Rows[a]["TypeId"].ToString(), "");//获取单个分类的元素信息 //DataRow dr2 = ElementSorting_dt.NewRow(); foreach (DataRow dr in ClassificationDetails.Rows) { double doe = Convert.ToDouble(dr["pc"]); ElementSorting_dt.Rows[a][dr["Name"].ToString()] = Math.Round( doe/Convert.ToDouble(ElementSorting_dt.Rows[a]["Area"]),2); } } return ElementSorting_dt; } private DataTable ElementalSubstance(DataTable AllAnalysisDetails, List ClassName, ParticleData fielddata) { //当前元素物质类面积的总和 double ElementalSubstance = 0; DataTable dte = fielddata.GetAllElement(); DataTable dt_Class = new DataTable(); dt_Class.Columns.Add("Name"); dt_Class.Columns.Add("Area"); //循环创建元素列(类型定义为double,为以后计算做准备) for (int a = 0; a < dte.Rows.Count; a++) { dt_Class.Columns.Add(dte.Rows[a]["Name"].ToString(), typeof(double)); } //循环大类物质列表 for (int i = 0; i < ClassName.Count; i++) { //保留当前循环中大类物质,去除其他物质 DataTable dt = AllAnalysisDetails.Copy(); dt.Clear(); for (int a = 0; a < AllAnalysisDetails.Rows.Count; a++) { if (AllAnalysisDetails.Rows[a]["Class"].ToString() == ClassName[i].ToString()) { dt.Rows.Add(AllAnalysisDetails.Rows[a].ItemArray); } } if (dt.Rows.Count == 0) continue; //计算出当前循环中大类物质的面积 ElementalSubstance=Convert.ToDouble(decimal.Parse(dt.Compute("sum(Area)", "").ToString())); DataTable ta = new DataTable(); ta = dt_Class.Copy(); ta.Clear(); for (int a = 0; a < dt.Rows.Count; a++) { DataTable ClassificationDetails = fielddata.GetAreaByIncA(dt.Rows[a]["TypeId"].ToString(), "");//获取单个分类的元素信息 DataRow dr2 = ta.NewRow(); foreach (DataRow dr in ClassificationDetails.Rows) { double doe = Convert.ToDouble(dr["pc"]); dr2[dr["Name"].ToString()] = doe; } ta.Rows.Add(dr2); } DataTable dataTable = ta.Copy(); dataTable.Clear(); DataRow row = dataTable.NewRow(); dataTable.Rows.Add(row); for (int a=0;a< ta.Columns.Count;a++) { if (ta.Columns[a].ToString()!="Name"&& ta.Columns[a].ToString() !="Class") { bool bl = false; for (int b=0;b /// 输入颗粒的所在帧图id,颗粒id,颗粒类型id,获取对应的XRay能谱数据图 /// /// public Bitmap ExportXRayBitmap(string in_fieldid, string in_particleid, int in_stdtypeid, string TypeName, ParticleData particleData) { Bitmap ret_bp; //显示xray相关信息 uint[] Search_xray = new uint[2000]; uint[] Analysis_xray = new uint[2000]; // int i_xray_id = 0; List list_celementchemistryclr = new List(); //获取Xray数据 list_celementchemistryclr = new List(); Particle list = particleData.GetParticleByFidAndPid(in_fieldid, in_particleid); if (list == null) { return null; } Particle particle = list; if (particle.XrayId > -1) { for (int i = 0; i < 2000; i++) { if (particle.XRayData!=null) { Analysis_xray[i] = BitConverter.ToUInt32(particle.XRayData, i * 4); } } Search_xray = Analysis_xray; i_xray_id = particle.XrayId; list_celementchemistryclr = particle.ElementList; } //get CElementChemistryClr list List list_showelementinfo = new List(); for (int i = 0; i < list_celementchemistryclr.Count; i++) { ShowElementInfo ls_sei = new ShowElementInfo(); ls_sei.ElementName = list_celementchemistryclr[i].Name; ls_sei.Percentage = list_celementchemistryclr[i].Percentage; ls_sei.dKF = Convert.ToDouble(CListPeriodic.GetPeriodicByYsm(CListPeriodic.GetListPeriodic(), ls_sei.ElementName).SX1); list_showelementinfo.Add(ls_sei); } //获取使用标准库的名称 string str_stdname = ""; string str_IncALibName = ""; if (in_stdtypeid < 1000) { //小于1000,使用系统默认分类 str_IncALibName = TypeName; str_stdname = "Default standard library"; } else if (in_stdtypeid >= 1000 && in_stdtypeid < 10000) { //大于等于1000,并且小于10000时,使用系统数据库中夹杂物来分析 str_IncALibName = TypeName; str_stdname = "User defined standard library"; } else if (in_stdtypeid > 10000) { //大于10000时,使用用户标准库来分析夹杂物名称 str_IncALibName = TypeName; str_stdname = "System standard library"; } //获取数据后,需要对xraytable设置 OTSIncAReportGraph.Controls.Control_XRayTable control_XRayTable1 = new Control_XRayTable(); control_XRayTable1.SetXRayShowLineValue(Search_xray, Analysis_xray, list_showelementinfo); //颗粒国标信息 //control_XRayTable1.GBInfoStr = in_dparticle.GBContent; control_XRayTable1.MaterialName = str_IncALibName;//杂夹物 control_XRayTable1.STDName = str_stdname;//标准库 control_XRayTable1.List_ShowElementInfo = list_showelementinfo; control_XRayTable1.Visible = true; control_XRayTable1.Invalidate(); control_XRayTable1.Refresh(); ret_bp = control_XRayTable1.ExportXRayImage(); return ret_bp; } /// /// 传入DataTable,和行号,返回该Row行中,返回6个靠前的元素,不足6个返回空 /// /// /// /// private void GetMaxElementFromDataTable(DataTable in_dt, int row_index, out List out_list_elementname, out List out_list_elementvalue) { out_list_elementname = new List(); out_list_elementvalue = new List(); //分别排出元素名,元素值列表 List list_elementname = new List(); List list_elementvalue = new List(); string str_element = in_dt.Rows[row_index]["Element"].ToString(); //防止取出的元素信息为空 if (str_element != "") { string[] strcbo = str_element.Split(';'); for (int i = 0; i < strcbo.Length-1; i++) { string[] str = strcbo[i].Split('-'); list_elementname.Add(str[0]); list_elementvalue.Add(Math.Round(Convert.ToDouble(str[1]), 2)); } } //循环6次,得到最大的6个元素信息 for (int geti = 0; geti < 11; geti++) { double max_elementvalue = -1; string max_elementname = ""; int max_index = -1; if (list_elementvalue.Count > 0) { for (int i = 0; i < list_elementvalue.Count; i++) { if (list_elementvalue[i] > max_elementvalue) { max_elementvalue = list_elementvalue[i]; max_elementname = list_elementname[i]; max_index = i; } } //移除掉最大的元素 list_elementname.RemoveAt(max_index); list_elementvalue.RemoveAt(max_index); //将最大的元素添加到list中 if (max_elementvalue > 0) { out_list_elementname.Add(max_elementname); out_list_elementvalue.Add(max_elementvalue); } else { out_list_elementname.Add(" "); out_list_elementvalue.Add(0); } } else { //如果元素数量已经不够,则添加空 out_list_elementname.Add(" "); out_list_elementvalue.Add(0); } } } #endregion /// /// 国标一 /// /// public List InsertReportTemplateTable_ChineseStandardABCDDS(OTSCLRINTERFACE.CPropParamClr cPropParamClr, List datasourcelist , int DataSourceId ,int GB_index) { //得到国标一的DataTable表格 cPropParamClr.SetDataSourceList(datasourcelist); cPropParamClr.SetDataSourceId(DataSourceId);// cPropParamClr.SetType((int)OTSSampleReportInfo.DisplayPicutureType.AnalyzeDataTable);//table cPropParamClr.SetCalTableType(GB_index);//国标1 if (GB_index == (int)OTSSampleReportInfo.CALCULATE_TABLE_TYPE.GB_Method1) { List listGriddataclr = m_otsreport_export.m_ReportApp.m_rstDataMgr.m_ReportMgr.GridDataTransfer(cPropParamClr); m_otsreport_export.m_ReportApp.im_ChineseStandardABCDDS = new OTSIncAReportGB.ChineseStandardABCDDS(m_otsreport_export.m_ReportApp.m_rstDataMgr.m_ReportMgr, listGriddataclr); m_otsreport_export.m_ReportApp.m_TablesWindow.Controls.Clear(); return m_otsreport_export.m_ReportApp.im_ChineseStandardABCDDS.ChineseStandardABCD_GetDataTable(); ; } else { List listGriddataclr2 = m_otsreport_export.m_ReportApp.m_rstDataMgr.m_ReportMgr.GridDataTransfer(cPropParamClr);// m_otsreport_export.m_ReportApp.m_TablesWindow.Controls.Clear(); m_otsreport_export.m_ReportApp.im_NationalStandardMethodTwo = new OTSIncAReportGB.NationalStandardMethodTwo(m_otsreport_export.m_ReportApp.m_rstDataMgr.m_ReportMgr, listGriddataclr2); return m_otsreport_export.m_ReportApp.im_NationalStandardMethodTwo.ChineseStandardABCD_GetDataTable(); } } //-------------------------------------------------dev---------------------------------------------------------- /// /// DEV颗粒列表颗粒前20个谱图排序 /// /// /// public DataTable Get_dev_kllb_data(c_TemplateClass m_mbszclass) { int serialNumber = 1; //------------------加载模块,获取数据------------------------------------------------- m_otsreport_export.m_ReportApp.im_ParticlesGridDevidePage = new ParticlesGridDevidePage(m_otsreport_export.m_ReportApp); DataTable SelectParticleTable = new DataTable(); SelectParticleData(out SelectParticleTable); int sel = 0; if (m_mbszclass.M_SY.int_xzkl == 0) { sel = 0; } else { sel = 1; } //根据sql条件,查询获取颗粒信息数据 ParticleData fielddata = new ParticleData(m_otsreport_export.m_ReportApp.m_rstDataMgr.ResultFilesList[m_otsreport_export.m_ReportApp.m_rstDataMgr.getSelectedIndex()].FilePath); DataTable dt = InvalidRemoval(fielddata.GetIncaSurfaceData(SelectParticleTable, sel, m_mbszclass.M_KLLBXX.list_str_kllb_qcys), "TypeName"); ResultFile resfile = m_otsreport_export.m_ReportApp.m_rstDataMgr.ResultFilesList[m_otsreport_export.m_ReportApp.m_rstDataMgr.getSelectedIndex()]; string str_libraryName = ((Dictionary)((Dictionary)((Dictionary)resfile.ResultInfo["Sample"])["Members"])["MsrParams"])["STDName"].ToString(); if (m_mbszclass.M_KLLBXX.str_cb_kllb_sort_p1.ToString() == "Hardness") { dt.Columns.Add("Hardness", typeof(double)); dt.Columns.Add("Hardness_detailed"); if (DoesDBexist()) { DataTable dt_stl = new DataTable(); GetSTL(str_libraryName, out dt_stl); for (int i = 0; i < dt.Rows.Count; i++) { for (int a = 0; a < dt_stl.Rows.Count; a++) { if (dt.Rows[i]["TypeName"].ToString() == dt_stl.Rows[a]["TypeId"].ToString()) { dt.Rows[i]["Hardness"] = Convert.ToDouble(dt_stl.Rows[a]["Hardness"]); dt.Rows[i]["Hardness_detailed"] = dt_stl.Rows[a]["Hardness_detailed"]; break; } } } } } //去除物质分类(非夹杂物分类) for (int a = 0; a < m_mbszclass.M_KLLBXX.list_str_kllb_DeleteClass.Count; a++) { for (int i = dt.Rows.Count-1; i >=0; i--) { if (dt.Rows[i]["TypeName"].ToString() == m_mbszclass.M_KLLBXX.list_str_kllb_DeleteClass[a].ToString()) { dt.Rows.RemoveAt(i); } } } //将颗粒大小排序(从大到小) DataView dv = dt.DefaultView; dv.Sort = m_mbszclass.M_KLLBXX.str_cb_kllb_sort_p1.ToString() + " DESC"; DataTable dt_ParticlesGridDevidePage = dv.ToTable(); string str_resultPath = m_otsreport_export.m_ReportApp.m_rstDataMgr.ResultFilesList[m_otsreport_export.m_ReportApp.m_rstDataMgr.getSelectedIndex()].FilePath; //------------------加载模块,获取数据结束---------------------------------------------- #region 创建要插入数据库表结构 //插入模板需父子表,结构 //表名field_dt表:(父表) 帧图表 DataTable DT_field_dt = new DataTable(); DT_field_dt.TableName = "field_dt"; DataColumn colpictid2 = new DataColumn("FieldId"); colpictid2.DataType = typeof(int); DT_field_dt.Columns.Add(colpictid2); //图像列 DataColumn colpict2 = new DataColumn("FieldImg"); colpict2.DataType = System.Type.GetType("System.Byte[]"); DT_field_dt.Columns.Add(colpict2); //largest20表:(无关系表) 需要显示前20条带有显示能谱图像的颗粒表 DataTable DT_Largest20 = new DataTable(); DT_Largest20.TableName = "Largest20"; DT_Largest20.Columns.Add("pid"); DT_Largest20.Columns.Add("Size"); DT_Largest20.Columns.Add("Width"); DT_Largest20.Columns.Add("DMAX"); DT_Largest20.Columns.Add("DMIN"); DT_Largest20.Columns.Add("Class"); DT_Largest20.Columns.Add("ColName1"); DT_Largest20.Columns.Add("ColName2"); DT_Largest20.Columns.Add("ColName3"); DT_Largest20.Columns.Add("ColName4"); DT_Largest20.Columns.Add("ColName5"); DT_Largest20.Columns.Add("ColName6"); DT_Largest20.Columns.Add("ColName7"); DT_Largest20.Columns.Add("ColName8"); DT_Largest20.Columns.Add("ColName9"); DT_Largest20.Columns.Add("ColName10"); DT_Largest20.Columns.Add("ColVal1"); DT_Largest20.Columns.Add("ColVal2"); DT_Largest20.Columns.Add("ColVal3"); DT_Largest20.Columns.Add("ColVal4"); DT_Largest20.Columns.Add("ColVal5"); DT_Largest20.Columns.Add("ColVal6"); DT_Largest20.Columns.Add("ColVal7"); DT_Largest20.Columns.Add("ColVal8"); DT_Largest20.Columns.Add("ColVal9"); DT_Largest20.Columns.Add("ColVal10"); // 图像列 DT_Largest20.Columns.Add("p1", typeof(Bitmap)); DT_Largest20.Columns.Add("p2", typeof(Bitmap)); DT_Largest20.Columns.Add("p3", typeof(Bitmap)); #endregion #region 插入-前20颗粒部份 for (int i_row = 0; i_row < dt_ParticlesGridDevidePage.Rows.Count; i_row++) { if (dt_ParticlesGridDevidePage.Rows[i_row].ItemArray[24].ToString() != "Not Identified") { //获取颗粒的fieldid,和particleid string str_fieldid = dt_ParticlesGridDevidePage.Rows[i_row]["fieldid"].ToString(); string str_particleid = dt_ParticlesGridDevidePage.Rows[i_row]["particleid"].ToString(); //string str_subparticles = dt_ParticlesGridDevidePage.Rows[i_row]["SubParticles"].ToString(); string str_typeid = dt_ParticlesGridDevidePage.Rows[i_row]["TypeId"].ToString(); string str_typename = dt_ParticlesGridDevidePage.Rows[i_row]["TypeName"].ToString(); string str_element = dt_ParticlesGridDevidePage.Rows[i_row]["Element"].ToString(); //获取原始颗粒图像 Bitmap bp_particle = new Bitmap(1, 1); string str_path = str_resultPath + "\\FIELD_FILES\\"; string str_imagePath = str_path + "Field" + str_fieldid.ToString() + ".bmp"; if (str_fieldid == "-1") continue; if (serialNumber > 20) continue; Rectangle rectangle = new Rectangle() { X = Convert.ToInt32(dt_ParticlesGridDevidePage.Rows[i_row]["RectLeft"]), Y = Convert.ToInt32(dt_ParticlesGridDevidePage.Rows[i_row]["RectTop"]), Width = Convert.ToInt32(dt_ParticlesGridDevidePage.Rows[i_row]["RectWidth"]), Height = Convert.ToInt32(dt_ParticlesGridDevidePage.Rows[i_row]["RectHeight"]) }; Bitmap bp_field = fielddata.ReadImageFile(str_imagePath); bp_particle = fielddata.GetBitmapByParticle(bp_field, rectangle); bp_particle.Tag = new List() { dt_ParticlesGridDevidePage.Rows[i_row]["FieldId"].ToString(), dt_ParticlesGridDevidePage.Rows[i_row]["ParticleId"].ToString(), dt_ParticlesGridDevidePage.Rows[i_row]["TypeId"].ToString() }; //} //获取该颗粒的xray能谱图像 System.Drawing.Bitmap bp_xraybp = ExportXRayBitmap(str_fieldid, str_particleid, Convert.ToInt32(str_typeid), str_typename, fielddata); Bitmap ls_xraybpnew = new Bitmap(1, 1); ls_xraybpnew = OTSIncAReportGraph.Class.DrawFunction.KiResizeImage(bp_xraybp, 700, 115);//能谱图处理 //获取该颗粒的二次放大处理图像 Bitmap ls_processbitmap = new Bitmap(1, 1); ls_processbitmap = OTSIncAReportGraph.Class.DrawFunction.GetReZoomBitmap(bp_particle);// (Bitmap)bp_particle.Clone();//待完善 //再将图像转成二进制流------------------------------------------------------------------- //原图 MemoryStream newms_p1 = new MemoryStream(); bp_particle.Save(newms_p1, System.Drawing.Imaging.ImageFormat.Bmp); //二次放大图 MemoryStream newms_p2 = new MemoryStream(); ls_processbitmap.Save(newms_p2, System.Drawing.Imaging.ImageFormat.Bmp); //能谱图 MemoryStream newms_p3 = new MemoryStream(); ls_xraybpnew.Save(newms_p3, System.Drawing.Imaging.ImageFormat.Bmp); //--------------------------------------------------------------------------------------- DataRow dr = DT_Largest20.NewRow(); dr["p1"] = bp_particle; dr["p2"] = ls_processbitmap; dr["p3"] = ls_xraybpnew; newms_p1.Dispose(); newms_p2.Dispose(); newms_p3.Dispose(); dr["pid"] = serialNumber++.ToString(); //颗粒列表列中第一个可选参数 dr["Size"] = datatable_data(dt_ParticlesGridDevidePage, i_row, m_mbszclass.M_KLLBXX.str_cb_kllb_sort_p1); //这个参数没有用 dr["Width"] = dt_ParticlesGridDevidePage.Rows[i_row]["rectwidth"].ToString(); //颗粒列表列中第二个可选参数 dr["DMAX"] = datatable_data(dt_ParticlesGridDevidePage, i_row, m_mbszclass.M_KLLBXX.str_cb_kllb_sort_p2); //颗粒列表列中第三个可选参数 dr["DMIN"] = datatable_data(dt_ParticlesGridDevidePage, i_row, m_mbszclass.M_KLLBXX.str_cb_kllb_sort_p3); //颗粒列表列中显示分类不可以选择 dr["Class"] = dt_ParticlesGridDevidePage.Rows[i_row]["typename"].ToString(); GetMaxElementFromDataTable(dt_ParticlesGridDevidePage, i_row, out List list_max_elementname, out List list_max_elementvale); double colVal = 0; for (int i=0;i< list_max_elementvale.Count;i++) { colVal = colVal + Convert.ToDouble(list_max_elementvale[i]); } //元素1 dr["ColName1"] = list_max_elementname[0]; dr["ColVal1"] = ParameterNormalization(colVal, list_max_elementvale[0]); //元素2 dr["ColName2"] = list_max_elementname[1]; dr["ColVal2"] = ParameterNormalization(colVal, list_max_elementvale[1]); //元素3 dr["ColName3"] = list_max_elementname[2]; dr["ColVal3"] = ParameterNormalization(colVal, list_max_elementvale[2]); //元素4 dr["ColName4"] = list_max_elementname[3]; dr["ColVal4"] = ParameterNormalization(colVal, list_max_elementvale[3]); //元素5 dr["ColName5"] = list_max_elementname[4]; dr["ColVal5"] = ParameterNormalization(colVal, list_max_elementvale[4]); //元素6 dr["ColName6"] = list_max_elementname[5]; dr["ColVal6"] = ParameterNormalization(colVal, list_max_elementvale[5]); //元素7 dr["ColName7"] = list_max_elementname[6]; dr["ColVal7"] = ParameterNormalization(colVal, list_max_elementvale[6]); //元素8 dr["ColName8"] = list_max_elementname[7]; dr["ColVal8"] = ParameterNormalization(colVal, list_max_elementvale[7]); //元素6 dr["ColName9"] = list_max_elementname[8]; dr["ColVal9"] = ParameterNormalization(colVal, list_max_elementvale[8]); //元素6 dr["ColName9"] = list_max_elementname[9]; dr["ColVal9"] = ParameterNormalization(colVal, list_max_elementvale[9]); DT_Largest20.Rows.Add(dr); } } #endregion return DT_Largest20; } /// /// 参数归一化 /// /// 总数 /// 传参 /// public string ParameterNormalization(double a_mi,double m) { double ColVal = Convert.ToDouble(m / a_mi * 100); if (ColVal == 0) { return ""; } else { return Math.Round(ColVal, 2).ToString(); } } public void Get_dev_kllb_data_frame(c_TemplateClass m_mbszclass, out DataTable file_pic, out List list_dt) { //------------------加载模块,获取数据------------------------------------------------- m_otsreport_export.m_ReportApp.im_ParticlesGridDevidePage = new ParticlesGridDevidePage(m_otsreport_export.m_ReportApp); SelectParticleData(out DataTable SelectParticleTable); int sel = 0; if (m_mbszclass.M_SY.int_xzkl == 0) { sel = 0; } else { sel = 1; } //根据sql条件,查询获取颗粒信息数据 ParticleData fielddata = new ParticleData(m_otsreport_export.m_ReportApp.m_rstDataMgr.ResultFilesList[m_otsreport_export.m_ReportApp.m_rstDataMgr.getSelectedIndex()].FilePath); DataTable dt = InvalidRemoval(fielddata.GetIncaSurfaceData(SelectParticleTable, sel, m_mbszclass.M_KLLBXX.list_str_kllb_qcys), "TypeName"); ResultFile resfile = m_otsreport_export.m_ReportApp.m_rstDataMgr.ResultFilesList[m_otsreport_export.m_ReportApp.m_rstDataMgr.getSelectedIndex()]; string str_libraryName = ((Dictionary)((Dictionary)((Dictionary)resfile.ResultInfo["Sample"])["Members"])["MsrParams"])["STDName"].ToString(); if (m_mbszclass.M_KLLBXX.str_cb_kllb_sort_p1.ToString() == "Hardness") { dt.Columns.Add("Hardness", typeof(double)); dt.Columns.Add("Hardness_detailed"); if (DoesDBexist()) { DataTable dt_stl = new DataTable(); GetSTL(str_libraryName, out dt_stl); for (int i = 0; i < dt.Rows.Count; i++) { for (int a = 0; a < dt_stl.Rows.Count; a++) { if (dt.Rows[i]["TypeName"].ToString() == dt_stl.Rows[a]["TypeId"].ToString()) { dt.Rows[i]["Hardness"] = Convert.ToDouble(dt_stl.Rows[a]["Hardness"]); dt.Rows[i]["Hardness_detailed"] = dt_stl.Rows[a]["Hardness_detailed"]; break; } } } } } //去除物质分类(非夹杂物分类) for (int a = 0; a < m_mbszclass.M_KLLBXX.list_str_kllb_DeleteClass.Count; a++) { for (int i = dt.Rows.Count - 1; i >= 0; i--) { if (dt.Rows[i]["TypeName"].ToString() == m_mbszclass.M_KLLBXX.list_str_kllb_DeleteClass[a].ToString()) { dt.Rows.RemoveAt(i); } } } //将颗粒大小排序(从大到小) DataView dv = dt.DefaultView; dv.Sort = m_mbszclass.M_KLLBXX.str_cb_kllb_sort_p1.ToString() + " DESC"; DataTable dt_ParticlesGridDevidePage = dv.ToTable(); string str_resultPath = m_otsreport_export.m_ReportApp.m_rstDataMgr.ResultFilesList[m_otsreport_export.m_ReportApp.m_rstDataMgr.getSelectedIndex()].FilePath; DataTable DT_field_dt = new DataTable(); DT_field_dt.TableName = "field_dt"; DT_field_dt.Columns.Add("FieldId", typeof(int)); //图像列 DT_field_dt.Columns.Add("FieldImg", typeof(Bitmap)); //首先生成标记颗粒的帧图图像文件 DataTable dt_GridDevidePage = dt_ParticlesGridDevidePage.Copy(); dt_GridDevidePage.Clear(); for (int i = 0; i < dt_ParticlesGridDevidePage.Rows.Count; i++) { if (dt_ParticlesGridDevidePage.Rows[i]["TypeName"].ToString() != "Not Identified") { dt_GridDevidePage.Rows.Add(dt_ParticlesGridDevidePage.Rows[i].ItemArray); } } m_otsreport_export.m_ReportApp.im_ParticlesGridDevidePage.Out_MarkParticleRectangleOnFieldFile(str_resultPath, dt_GridDevidePage, out List vs, out DataTable data); FrameGraphParticleTableDatat(dt_ParticlesGridDevidePage, fielddata, data, m_mbszclass, out DataTable data_A); List listData = new List(); for (int i = 0; i < data.Rows.Count; i++) { DataTable dataTable = data_A.Clone(); //在数据表中有颗粒在该帧图中的话,则对该帧图标记图像进行读取存入数据库 DataRow[] datarowlist = data_A.Select(data.Rows[i]["fieldid"].ToString()); if (datarowlist.Count() > 0) { for (int a = 0; a < data_A.Rows.Count; a++) { if (data.Rows[i]["id"].ToString() == data_A.Rows[a]["FieldId"].ToString()) { dataTable.Rows.Add(data_A.Rows[a].ItemArray); } } listData.Add(dataTable); } } file_pic = data.Copy(); list_dt = listData; } private void FrameGraphParticleTableDatat(DataTable dt_ParticlesGridDevidePage, ParticleData fielddata, DataTable DT_field_dt, c_TemplateClass m_mbszclass, out DataTable data_A) { //将颗粒大小排序(从大到小) DataView dv = dt_ParticlesGridDevidePage.DefaultView; dv.Sort = m_mbszclass.M_KLLBXX.str_cb_kllb_chartSort_p1.ToString() + " DESC"; DataTable dt = dv.ToTable(); //表名Largest_frame表:(子表) 显示20条颗粒除外的部份颗粒信息 DataTable FrameGraphSubTable = new DataTable(); FrameGraphSubTable.TableName = "FrameGraphSubTable"; FrameGraphSubTable.Columns.Add("pid"); FrameGraphSubTable.Columns.Add("Size"); FrameGraphSubTable.Columns.Add("Width"); FrameGraphSubTable.Columns.Add("DMAX"); FrameGraphSubTable.Columns.Add("DMIN"); FrameGraphSubTable.Columns.Add("Class"); FrameGraphSubTable.Columns.Add("ColName1"); FrameGraphSubTable.Columns.Add("ColName2"); FrameGraphSubTable.Columns.Add("ColName3"); FrameGraphSubTable.Columns.Add("ColName4"); FrameGraphSubTable.Columns.Add("ColName5"); FrameGraphSubTable.Columns.Add("ColName6"); FrameGraphSubTable.Columns.Add("ColName7"); FrameGraphSubTable.Columns.Add("ColName8"); FrameGraphSubTable.Columns.Add("ColName9"); FrameGraphSubTable.Columns.Add("ColName10"); FrameGraphSubTable.Columns.Add("ColVal1"); FrameGraphSubTable.Columns.Add("ColVal2"); FrameGraphSubTable.Columns.Add("ColVal3"); FrameGraphSubTable.Columns.Add("ColVal4"); FrameGraphSubTable.Columns.Add("ColVal5"); FrameGraphSubTable.Columns.Add("ColVal6"); FrameGraphSubTable.Columns.Add("ColVal7"); FrameGraphSubTable.Columns.Add("ColVal8"); FrameGraphSubTable.Columns.Add("ColVal9"); FrameGraphSubTable.Columns.Add("ColVal10"); FrameGraphSubTable.Columns.Add("pic", typeof(Bitmap)); FrameGraphSubTable.Columns.Add("FieldId", typeof(int)); for (int i_row = 0; i_row < dt.Rows.Count; i_row++) { if (dt.Rows[i_row]["element"].ToString() == "") continue; if (dt.Rows[i_row]["TypeName"].ToString() == "Not Identified") continue; string str_fieldid = dt.Rows[i_row]["fieldid"].ToString(); if (JudgeWhetherItExists(Convert.ToInt32(str_fieldid), DT_field_dt, "id")) { //获取原始颗粒图像 Bitmap bp_particle = new Bitmap(1, 1); Bitmap bp_field = new Bitmap(1, 1); Rectangle rectangle = new Rectangle() { X = Convert.ToInt32(dt.Rows[i_row]["RectLeft"]), Y = Convert.ToInt32(dt.Rows[i_row]["RectTop"]), Width = Convert.ToInt32(dt.Rows[i_row]["RectWidth"]), Height = Convert.ToInt32(dt.Rows[i_row]["RectHeight"]) }; for (int i = 0; i < DT_field_dt.Rows.Count; i++) { if (dt.Rows[i_row]["FieldId"].ToString() == DT_field_dt.Rows[i]["id"].ToString()) { bp_field = new Bitmap(DT_field_dt.Rows[i]["fieldFullName"].ToString()); } } bp_particle = fielddata.GetBitmapByParticle(bp_field, rectangle); bp_particle.Tag = new List() { dt.Rows[i_row]["FieldId"].ToString(), dt.Rows[i_row]["ParticleId"].ToString(), dt.Rows[i_row]["TypeId"].ToString() }; DataRow dr = FrameGraphSubTable.NewRow(); dr["pic"] = bp_particle; //帧图列表列第一个字段的可选参数 dr["pid"] = datatable_data(dt, i_row, m_mbszclass.M_KLLBXX.str_cb_kllb_chartSort_p1); //帧图列表列第二个字段的可选参数 dr["Size"] = datatable_data(dt, i_row, m_mbszclass.M_KLLBXX.str_cb_kllb_chartSort_p2); dr["Width"] = dt.Rows[i_row]["rectwidth"].ToString(); dr["DMAX"] = Math.Round(Convert.ToDouble(dt.Rows[i_row]["dmax"]), 2).ToString(); dr["DMIN"] = Math.Round(Convert.ToDouble(dt.Rows[i_row]["dmin"]), 2).ToString(); dr["Class"] = dt.Rows[i_row]["typename"].ToString(); dr["fieldid"] = str_fieldid; GetMaxElementFromDataTable(dt, i_row, out List list_max_elementname, out List list_max_elementvale); double colVal = 0; for (int i = 0; i < list_max_elementvale.Count; i++) { colVal = colVal + Convert.ToDouble(list_max_elementvale[i]); } //元素1 dr["ColName1"] = list_max_elementname[0]; dr["ColVal1"] = ParameterNormalization(colVal, list_max_elementvale[0]); //元素2 dr["ColName2"] = list_max_elementname[1]; dr["ColVal2"] = ParameterNormalization(colVal, list_max_elementvale[1]); //元素3 dr["ColName3"] = list_max_elementname[2]; dr["ColVal3"] = ParameterNormalization(colVal, list_max_elementvale[2]); //元素4 dr["ColName4"] = list_max_elementname[3]; dr["ColVal4"] = ParameterNormalization(colVal, list_max_elementvale[3]); //元素5 dr["ColName5"] = list_max_elementname[4]; dr["ColVal5"] = ParameterNormalization(colVal, list_max_elementvale[4]); //元素6 dr["ColName6"] = list_max_elementname[5]; dr["ColVal6"] = ParameterNormalization(colVal, list_max_elementvale[5]); //元素6 dr["ColName7"] = list_max_elementname[6]; dr["ColVal7"] = ParameterNormalization(colVal, list_max_elementvale[6]); //元素6 dr["ColName8"] = list_max_elementname[7]; dr["ColVal8"] = ParameterNormalization(colVal, list_max_elementvale[7]); //元素6 dr["ColName9"] = list_max_elementname[8]; dr["ColVal9"] = ParameterNormalization(colVal, list_max_elementvale[8]); //元素6 dr["ColName10"] = list_max_elementname[9]; dr["ColVal10"] = ParameterNormalization(colVal, list_max_elementvale[9]); FrameGraphSubTable.Rows.Add(dr); } } data_A = FrameGraphSubTable.Copy(); } public void ParticleSizeTable(c_TemplateClass m_mbszclass, out DataTable surface_dt, out DataTable partsize_dt, out DataTable class_dt, out DataTable subdivide_dt, out DataTable colid_data) { //全部大类 DataTable dt_addCalss = new DataTable(); DataTable dt_allSubdivision = new DataTable(); //全部小类 if (m_bt_DBData.Columns.Count == 0) { GetDBData(m_mbszclass); } List colid = new List(); //获取粒级表 string path1 = m_otsreport_export.m_ReportApp.m_rstDataMgr.m_RptConfigFile.PartSizeFileFolder + m_otsreport_export.m_ReportApp.m_rstDataMgr.m_RptConfigFile.PartSizeFile; DataSet ds = OTSIncAReportApp.DataOperation.DataAccess.XMLoperate.GetXml(path1); string sizestr = ds.Tables[0].Rows[0]["Sizes"].ToString(); for (int i = 0; i < sizestr.Split(',').Length - 1; i++) { if (sizestr.Split(',')[i].Length > 0) { double d1 = Convert.ToDouble(sizestr.Split(',')[i]); double d2 = Convert.ToDouble(sizestr.Split(',')[i + 1]); colid.Add(d1.ToString() + "~" + d2.ToString()); } } double d = Convert.ToDouble(sizestr.Split(',')[sizestr.Split(',').Length - 1]); colid.Add(d.ToString() + "~MAX"); ParticleData fielddata = new ParticleData(m_otsreport_export.m_ReportApp.m_rstDataMgr.ResultFilesList[m_otsreport_export.m_ReportApp.m_rstDataMgr.getSelectedIndex()].FilePath); //------------------------------------------------ DataTable ls_partsize_dt = new DataTable(); ls_partsize_dt.TableName = "PartSize"; ls_partsize_dt.Columns.Add("c1"); ls_partsize_dt.Columns.Add("c2"); ls_partsize_dt.Columns.Add("c3"); ls_partsize_dt.Columns.Add("c4"); ls_partsize_dt.Columns.Add("c5"); ls_partsize_dt.Columns.Add("c6"); ls_partsize_dt.Columns.Add("c7"); ls_partsize_dt.Columns.Add("c8"); ls_partsize_dt.Columns.Add("c9"); DataRow dr = ls_partsize_dt.NewRow(); for (int i = 1; i < 10; i++) { if (colid.Count < i) { dr["c" + i.ToString()] = ""; } else { dr["c" + i.ToString()] = colid[i - 1]; } } ls_partsize_dt.Rows.Add(dr); DataTable ls_Particel_dt = new DataTable(); ls_Particel_dt.TableName = "Particel"; ls_Particel_dt.Columns.Add("c1", typeof(double)); ls_Particel_dt.Columns.Add("c2", typeof(double)); ls_Particel_dt.Columns.Add("c3", typeof(double)); ls_Particel_dt.Columns.Add("c4", typeof(double)); ls_Particel_dt.Columns.Add("c5", typeof(double)); ls_Particel_dt.Columns.Add("c6", typeof(double)); ls_Particel_dt.Columns.Add("c7", typeof(double)); ls_Particel_dt.Columns.Add("c8", typeof(double)); ls_Particel_dt.Columns.Add("c9", typeof(double)); ls_Particel_dt.Columns.Add("Name"); ls_Particel_dt.Columns.Add("total", typeof(double)); ls_Particel_dt.Columns.Add("TypeId"); ls_Particel_dt.Columns.Add("Class"); for (int i = 0; i < m_bt_DBData.Rows.Count; i++) { DataRow dr2 = ls_Particel_dt.NewRow(); dr2["Name"] = m_bt_DBData.Rows[i]["TypeName"].ToString(); dr2["Class"] = m_bt_DBData.Rows[i]["Class"].ToString(); dr2["TypeId"] = m_bt_DBData.Rows[i]["TypeId"].ToString();//获取分类编号 for (int j = 1; j < 10; j++) { if (colid.Count >= j) { dr2["c" + j.ToString()] = Convert.ToDouble(m_bt_DBData.Rows[i][colid[j - 1]]); } } if (dr2["Name"].ToString() != "" && dr2["Name"].ToString().IndexOf("number") < 0) { dr2["total"] = "0"; //求合 double d_total = 0; for (int j = 1; j < 10; j++) { if (colid.Count >= j) { d_total = d_total + Convert.ToInt64(m_bt_DBData.Rows[i][colid[j - 1]]); } } dr2["total"] = d_total.ToString(); } ls_Particel_dt.Rows.Add(dr2); } dt_allSubdivision = ls_Particel_dt.Copy(); //按照list列表进行物质类排序,物质类中的元素分类按照面积的大小进行排序 List ClassName = new List(); DataTable getClass_dt = fielddata.GetAllClass(); for (int i = 0; i < getClass_dt.Rows.Count; i++) { if (getClass_dt.Rows[i]["GroupName"].ToString() != "NOT_INCLUTION" && getClass_dt.Rows[i]["GroupName"].ToString() != "Invalid") ClassName.Add(getClass_dt.Rows[i]["GroupName"].ToString()); } //颗粒尺寸数据(例 1.5有多少,2.0有多少) colid_data = new DataTable(); colid_data.Columns.Add("name"); colid_data.Columns.Add("quantity",typeof(double)); for (int i=0;i< ls_Particel_dt.Columns.Count;i++) { if (ls_Particel_dt.Columns[i].ColumnName=="c"+(i+1).ToString()) { if (i< colid.Count) { DataRow dr1 = colid_data.NewRow(); dr1["name"] = colid[i].ToString(); int quantity = 0; for (int a = 0; a < ls_Particel_dt.Rows.Count; a++) { quantity = quantity + Convert.ToInt32(ls_Particel_dt.Rows[a][i].ToString()); } dr1["quantity"] = quantity.ToString(); colid_data.Rows.Add(dr1); } } } //获取大分类信息 DataTable dt = InvalidRemoval(QuantityOfIntegratedSubstances(ls_Particel_dt, ClassName), "Class"); dt_addCalss = dt.Copy(); DataTable data = classIfIcationSort(ls_Particel_dt, ClassName, dt); surface_dt = data.Copy(); class_dt = dt_addCalss.Copy(); subdivide_dt = dt_allSubdivision.Copy(); partsize_dt = ls_partsize_dt.Copy(); } private DataTable classIfIcationSort(DataTable dataTable, List ClassName, DataTable data) { DataTable dt = new DataTable(); dt = dataTable.Copy(); dt.Clear(); dt.TableName = "Particel_subdivision"; //循环list中每个类型 for (int i = 0; i < ClassName.Count(); i++) { DataTable data1 = dt.Copy(); data1.Clear(); data1.Rows.Add(); for (int a = 0; a < data.Rows.Count; a++) { if (data.Rows[a]["Class"].ToString() == ClassName[i].ToString()) { for (int b = 1; b < 10; b++) { data1.Rows[0]["c" + b.ToString()] = data.Rows[a]["c" + b.ToString()]; } data1.Rows[0]["total"] = data.Rows[a]["total"]; data1.Rows[0]["Class"] = data.Rows[a]["Class"]; dt.Rows.Add(data1.Rows[0].ItemArray); } } DataTable dt_1 = new DataTable(); dt_1 = dt.Copy(); dt_1.Clear(); //循环DataTable中每个分类的数据 for (int a = 0; a < dataTable.Rows.Count; a++) { if (dataTable.Rows[a]["Class"].ToString() == ClassName[i]) { dataTable.Rows[a]["Class"] = ""; dt_1.Rows.Add(dataTable.Rows[a].ItemArray); } } //将颗粒数量排序(从大到小) DataView dv = dt_1.DefaultView; dv.Sort = "total DESC"; DataTable dt_1_sort = dv.ToTable(); for (int a = 0; a < dt_1_sort.Rows.Count; a++) { dt.Rows.Add(dt_1_sort.Rows[a].ItemArray); } } dt.Columns.Remove("TypeId"); return dt; } public bool InsertReportTemplateTable_ElementAvgGrid(c_TemplateClass m_mbszclass, out DataTable dt1, out DataTable dt2,out DataTable allElement_dt) { if (m_bt_DBData.Columns.Count == 0) { GetDBData(m_mbszclass); } //根据sql条件,查询获取颗粒信息数据 ParticleData fielddata = new ParticleData(m_otsreport_export.m_ReportApp.m_rstDataMgr.ResultFilesList[m_otsreport_export.m_ReportApp.m_rstDataMgr.getSelectedIndex()].FilePath); DataTable AllAnalysisDetails = new DataTable(); AllAnalysisDetails.TableName = "ElementValue"; AllAnalysisDetails.Columns.Add("Name"); AllAnalysisDetails.Columns.Add("TypeId"); AllAnalysisDetails.Columns.Add("Area", typeof(double)); AllAnalysisDetails.Columns.Add("Class"); for (int i = 0; i < m_bt_DBData.Rows.Count; i++) { DataRow dr2 = AllAnalysisDetails.NewRow(); dr2["Name"] = m_bt_DBData.Rows[i]["TypeName"].ToString(); dr2["Area"] = Convert.ToDouble(m_bt_DBData.Rows[i]["ar"]); dr2["TypeId"] = m_bt_DBData.Rows[i]["TypeId"].ToString(); dr2["Class"] = m_bt_DBData.Rows[i]["Class"].ToString(); AllAnalysisDetails.Rows.Add(dr2); } //按照list列表进行物质类排序,物质类中的元素分类按照面积的大小进行排序 List ClassName = new List(); DataTable getClass_dt = fielddata.GetAllClass(); for (int i = 0; i < getClass_dt.Rows.Count; i++) { if (getClass_dt.Rows[i]["GroupName"].ToString() != "NOT_INCLUTION" && getClass_dt.Rows[i]["GroupName"].ToString() != "Invalid") ClassName.Add(getClass_dt.Rows[i]["GroupName"].ToString()); } //统计元素物质大类的元素信息和面积占比 DataTable dt_ElementalSubstance = ElementalSubstance(AllAnalysisDetails, ClassName, fielddata); //统计元素并按照Class Name自定义列表进行排序,大类中的小类元素信息按照面积从大到小排序 DataTable dt_ElementSorting = ElementSorting(AllAnalysisDetails, ClassName, fielddata); //生成最后导出时物质元素成分表 DataTable dt = MaterialElementComposition(dt_ElementalSubstance, 13);//导出14个元素成分信息 //生成最后导出时物质元素细分表 SubdivisionOfMaterialElements(dt_ElementSorting, 13, ClassName, dt, out dt1, out dt2); allElement_dt = dt_ElementSorting.Copy(); return true; } private bool SubdivisionOfMaterialElements(DataTable a_ElementalSubstance, int NumberOfColumns, List ClassName, DataTable data, out DataTable dt1, out DataTable dt2) { DataTable dt_ElementalSubstance = new DataTable(); dt_ElementalSubstance = data.Copy(); dt_ElementalSubstance.Clear(); dt_ElementalSubstance.TableName = "ElementSubdivision_Value"; dt_ElementalSubstance.Columns["Name"].ColumnName = "Class"; dt_ElementalSubstance.Columns.Add("Name"); //处理元素面积保留小数点后两位 for (int i = 0; i < a_ElementalSubstance.Rows.Count; i++) { a_ElementalSubstance.Rows[i]["Area"] = Math.Round(Convert.ToDouble(a_ElementalSubstance.Rows[i]["Area"].ToString()), 2); } //循环元素物质大类 for (int i = 0; i < ClassName.Count; i++) { DataTable dt_1 = new DataTable(); dt_1 = data.Copy(); dt_1.Clear(); for (int a = 0; a < data.Rows.Count; a++) { if (data.Rows[a]["Name"].ToString() == ClassName[i].ToString()) { dt_1.Rows.Add(data.Rows[a].ItemArray); } } dt_1.Columns["Name"].ColumnName = "Class"; dt_1.Columns.Add("Name"); DataTable dt_2 = new DataTable(); dt_2 = dt_1.Copy(); dt_2.Clear(); dt_2.Rows.Add(); //循环整个表筛选出当前的物质 for (int a = 0; a < a_ElementalSubstance.Rows.Count; a++) { if (ClassName[i].ToString() == a_ElementalSubstance.Rows[a]["Class"].ToString()) { for (int b = 0; b < dt_1.Columns.Count; b++) { if (dt_2.Columns[b].ToString() != "Class") { if (a_ElementalSubstance.Columns.Contains(dt_2.Columns[b].ToString())) { if (a_ElementalSubstance.Rows[a][dt_2.Columns[b].ToString()].ToString() == "") { dt_2.Rows[0][dt_2.Columns[b].ToString()] = 0; } else { dt_2.Rows[0][dt_2.Columns[b].ToString()] = a_ElementalSubstance.Rows[a][dt_2.Columns[b].ToString()]; } } else { dt_2.Rows[0][dt_2.Columns[b].ToString()] = 0; } } } dt_1.Rows.Add(dt_2.Rows[0].ItemArray); } } for (int a = 0; a < dt_1.Rows.Count; a++) { dt_ElementalSubstance.Rows.Add(dt_1.Rows[a].ItemArray); } } DataTable dataTable = new DataTable(); dataTable = dt_ElementalSubstance.Copy(); dataTable.Clear(); DataRow row = dataTable.NewRow(); dataTable.Rows.Add(row); dataTable.TableName = "ElementSubdivision_Name"; for (int i = 0; i < dataTable.Columns.Count; i++) { dataTable.Rows[0][dataTable.Columns[i].ToString()] = dataTable.Columns[i].ToString(); } dt1 = dataTable.Copy(); dt2 = dt_ElementalSubstance.Copy(); //m_list_dt.Add(dataTable); //m_list_dt.Add(dt_ElementalSubstance); return true; } #region 三元图 //手动绘制的三元图 public Bitmap DrawATernaryPicture(int selectindex, c_TemplateClass m_mbszclass, List Color_list) { int sel = 0; if (m_mbszclass.M_SY.int_xzkl == 0) { sel = 0; } else { sel = 1; } ResultFile resultFile = m_otsreport_export.m_ReportApp.m_rstDataMgr.ResultFilesList[m_otsreport_export.m_ReportApp.m_rstDataMgr.getSelectedIndex()]; string template = TemplateList[selectindex]; if (template == "") { //三元相图模板 template = m_condition.m_conditionData.GetPropItemDisplayValueByPropItemName(OTS_REPORT_PROP_GRID_ITEMS.TRIO_CHART_TYPE).ToString(); } //获取粒级表 string pathtpf = Application.StartupPath + "\\Config\\ProData\\DefaultTriTemplateFile.tpf"; List nameList = new List(); DataSet ds = XMLoperate.GetXmlData(pathtpf, "XMLData"); DataTable dt = ds.Tables["Member"]; string TemplateName = ""; //遍历第一层节点 foreach (DataRow element in dt.Rows) { TemplateName = element["TemplateName"].ToString(); if (TemplateName == template) { string Element = element["Element"].ToString(); nameList.Add(Element.Split('.')[0]); nameList.Add(Element.Split('.')[1]); nameList.Add(Element.Split('.')[2]); break; } } DataTable dt_point_sort = new DataTable(); dt_point_sort.Columns.Add("X", typeof(double)); dt_point_sort.Columns.Add("Y", typeof(double)); dt_point_sort.Columns.Add("Color_position"); DataTable particles = GetParticles(resultFile.FilePath, nameList, sel); foreach (DataRow item in particles.Rows) { if (item["particleLocation"].ToString() == "0,0,0") { continue; } double top = Convert.ToDouble(item["top"]); double left = Convert.ToDouble(item["left"]); double right = Convert.ToDouble(item["right"]); //x=right+top/2,y=(√3/2)*top double Y = 0.866 * top * 500; double X = (right + top / 2) * 500; double[] point_ = { Math.Round(X, 2), Math.Round(Y) }; DataRow dr = dt_point_sort.NewRow(); dr["X"] = Math.Round(X, 2); dr["Y"] = Math.Round(Y); dr["Color_position"] = item["Color_position"]; dt_point_sort.Rows.Add(dr); } #region 图形 int Line = 500; Bitmap map = new Bitmap(530, 530); Graphics g = Graphics.FromImage(map); SolidBrush sbrush_White = new SolidBrush(Color.White); g.FillRectangle(sbrush_White, 0, 0, 530, 530); Pen mypen = new Pen(Color.Black, 1); g.DrawImage(map, 0, 0, map.Width, map.Height); g.DrawLine(mypen, new Point(Line + 10, Line), new Point(Line / 2 + 10, Convert.ToInt32(Line - (Line / 2 * 1.732))));//"\" g.DrawLine(mypen, new Point(Line / 2 + 10, Convert.ToInt32(Line - (Line / 2 * 1.732))), new Point(0 + 10, Line));//"/" g.DrawLine(mypen, new Point(0 + 10, Line), new Point(Line + 10, Line));//"_" mypen.DashStyle = System.Drawing.Drawing2D.DashStyle.Custom; mypen.DashPattern = new float[] { 2, 2 }; mypen = new Pen(Color.FromArgb(212, 212, 212), 1); int point = Line / 10; for (int i = 1; i < 10; i++) { //"\" int x1_a = point / 2 + ((point / 2) * (i - 1)); int x2_a = Line - (43 * i); int y1_a = point * i; g.DrawLine(mypen, new Point(x1_a + 10, x2_a), new Point(y1_a + 10, Line)); //"/" int x1_b = Line - (point / 2 + ((point / 2) * (i - 1))); int x2_b = Line - (43 * i); int y1_b = Line - (point * i); g.DrawLine(mypen, new Point(x1_b + 10, x2_b), new Point(y1_b + 10, Line)); //"_" int x1_c = point / 2 + ((point / 2) * (i - 1)); int x2_c = Line - (43 * i); int y1_c = Line - (point / 2 + ((point / 2) * (i - 1))); int y2_c = Line - (43 * i); g.DrawLine(mypen, new Point(x1_c + 10, x2_c), new Point(y1_c + 10, y2_c)); g.DrawLine(mypen, new Point(y1_a + 10, Line + 10), new Point(y1_a + 10, Line)); g.DrawLine(mypen, new Point(x1_b + 10, x2_b), new Point(x1_b + 10 + 10, x2_b)); g.DrawLine(mypen, new Point(x1_c + 10 - 10, x2_c), new Point(y1_c + 10, y2_c)); g.DrawString((i * 10).ToString(), new Font("宋体", 8, FontStyle.Bold), new SolidBrush(Color.Black), new Point(x1_c - 20, x2_c-5)); g.DrawString((i * 10).ToString(), new Font("宋体", 8, FontStyle.Bold), new SolidBrush(Color.Black), new Point(y1_b , Line+8)); g.DrawString(((10-i) * 10).ToString(), new Font("宋体", 8, FontStyle.Bold), new SolidBrush(Color.Black), new Point(x1_b + 20, x2_b-5)); } for (int i = 0; i < dt_point_sort.Rows.Count; i++) { mypen = new Pen(Color.Black, 1); SolidBrush mysbrush = new SolidBrush(Color_list[Convert.ToInt32(dt_point_sort.Rows[i]["Color_position"])]); g.FillRectangle(mysbrush, Convert.ToInt32(dt_point_sort.Rows[i]["X"]) + 8, 500 - Convert.ToInt32(dt_point_sort.Rows[i]["Y"]) - 2, 4, 5); g.DrawRectangle(mypen, Convert.ToInt32(dt_point_sort.Rows[i]["X"]) + 7, 500 - Convert.ToInt32(dt_point_sort.Rows[i]["Y"]) - 2, 5, 5); } Font myFont = new Font("宋体", 13, FontStyle.Bold); Font Font_features = new Font("宋体", 10, FontStyle.Bold); SolidBrush sbrush = new SolidBrush(Color.Black); g.DrawString("features:" + dt_point_sort.Rows.Count.ToString(), Font_features, sbrush, 400, 200); g.DrawString(TemplateName, myFont, sbrush, 265 - (TemplateName.Length * 10 / 2), 10); g.DrawString(TemplateName.Split('.')[0].ToString(), myFont, sbrush, 265 - (TemplateName.Split('.')[0].ToString().Length * 10 / 2), 45);//顶点名字 g.DrawString(TemplateName.Split('.')[1].ToString(), myFont, sbrush, 0, 510);//左侧名字 g.DrawString(TemplateName.Split('.')[2].ToString(), myFont, sbrush, 500 - (TemplateName.Split('.')[0].ToString().Length * 10), 510);//左侧名字 //map.Save("D:\\1.bmp"); #endregion return map; } //绘制图例 public Bitmap DrawATernaryDiagramLegend(List Color_list) { Bitmap map = new Bitmap(450, 115); Graphics g = Graphics.FromImage(map); SolidBrush sbrush_White = new SolidBrush(Color.White); SolidBrush sbrush = new SolidBrush(Color.Black); g.FillRectangle(sbrush_White, 0, 0, 450, 115); Font myFont = new Font("宋体", 10, FontStyle.Bold); g.DrawString("legend(length,microns)", myFont, sbrush, 140, 3); //legend(length,microns) Pen mypen = new Pen(Color.Black, 1); g.DrawLine(mypen, 100, 19, 350, 19); //设置标签名称 List listName = new List(); //获取粒级表 string pathe = m_otsreport_export.m_ReportApp.m_rstDataMgr.m_RptConfigFile.PartSizeFileFolder + m_otsreport_export.m_ReportApp.m_rstDataMgr.m_RptConfigFile.PartSizeFile; DataSet ds = XMLoperate.GetXml(pathe); string sizestr = ds.Tables[0].Rows[0]["Sizes"].ToString(); for (int i = 0; i < sizestr.Split(',').Length - 1; i++) { if (sizestr.Split(',')[i].Length > 0) { double d1 = Convert.ToDouble(sizestr.Split(',')[i]); double d2 = Convert.ToDouble(sizestr.Split(',')[i + 1]); listName.Add(d1.ToString() + "~" + d2.ToString()); } } double d = Convert.ToDouble(sizestr.Split(',')[sizestr.Split(',').Length - 1]); listName.Add(d.ToString() + "~MAX"); int PositionJeight = 27; string str_unit = " microns"; for (int i=0;i< listName.Count;i=i+3) { if (i< listName.Count) { SolidBrush sbrush_Color = new SolidBrush(Color_list[i]); g.DrawRectangle(mypen, 26, PositionJeight, 8, 8); g.FillRectangle(sbrush_Color, 27, PositionJeight + 1, 7, 7); g.DrawString(listName[i].ToString()+ str_unit, myFont, sbrush, 38, PositionJeight-2); } if (i+1 < listName.Count) { SolidBrush sbrush_Color = new SolidBrush(Color_list[i+1]); g.DrawRectangle(mypen, 170, PositionJeight, 8, 8); g.FillRectangle(sbrush_Color, 171, PositionJeight + 1, 7, 7); g.DrawString(listName[i+1].ToString()+ str_unit, myFont, sbrush, 182, PositionJeight - 2); } if (i + 2 < listName.Count) { SolidBrush sbrush_Color = new SolidBrush(Color_list[i + 2]); g.DrawRectangle(mypen, 314, PositionJeight, 8, 8); g.FillRectangle(sbrush_Color, 315, PositionJeight + 1, 7, 7); g.DrawString(listName[i + 2].ToString()+ str_unit, myFont, sbrush, 326, PositionJeight - 2); } PositionJeight = PositionJeight + 15; } //g.DrawRectangle(mypen, 26, 27, 8, 8); //g.DrawString("50-100 microns", myFont, sbrush, 38, 25); //g.DrawRectangle(mypen, 170, 27, 8, 8); //g.DrawString("50-100 microns", myFont, sbrush, 182, 25); //g.DrawRectangle(mypen, 314, 27, 8, 8); //g.DrawString("50-100 microns", myFont, sbrush, 326, 25); //map.Save("D://2.bmp"); return map; } private DataTable GetParticles(string filepath, List nameList, int sel) { ParticleData particledata = new ParticleData(filepath); //设置标签名称 List listName = new List(); //获取粒级表 string pathe = m_otsreport_export.m_ReportApp.m_rstDataMgr.m_RptConfigFile.PartSizeFileFolder + m_otsreport_export.m_ReportApp.m_rstDataMgr.m_RptConfigFile.PartSizeFile; DataSet ds = XMLoperate.GetXml(pathe); string sizestr = ds.Tables[0].Rows[0]["Sizes"].ToString(); for (int i = 0; i < sizestr.Split(',').Length - 1; i++) { if (sizestr.Split(',')[i].Length > 0) { double d1 = Convert.ToDouble(sizestr.Split(',')[i]); double d2 = Convert.ToDouble(sizestr.Split(',')[i + 1]); listName.Add(d1.ToString() + "~" + d2.ToString()); } } double d = Convert.ToDouble(sizestr.Split(',')[sizestr.Split(',').Length - 1]); listName.Add(d.ToString() + "~MAX"); string filedAndParticl = ""; if (sel == 1) { List selectParticles = m_otsreport_export.m_ReportApp.GetSelectedParticles(); foreach (var item in selectParticles) { filedAndParticl = filedAndParticl + "," + (item.FieldId.ToString() + "-" + item.ParticleId.ToString()); } if (filedAndParticl != "") { filedAndParticl = filedAndParticl + ","; } } string po = ""; string con = ""; int row = m_condition.m_conditionData.ConditionItemList.Count; if (condition != -1) { List li = new List() { "DMAX", "DMIN", "Area", "FERET" }; con = li[condition]; } else { if (row < 4) { con = "DMAX"; } else { con = m_condition.m_conditionData.GetPropItemDisplayValueByPropItemName(OTS_REPORT_PROP_GRID_ITEMS.SIZE_CAL_METHOD_TYPE).ToString(); } } switch (con) { case "DMAX": po = "DMAX"; break; case "DMIN": po = "DMIN"; break; case "CIRCLE": po = "Area"; break; case "FERET": po = "DFERET"; break; } DataTable dtp = particledata.GetParticleAllHaveXray(filedAndParticl); //DataTable dtp = particledata.GetParticleHaveXray(filedAndParticl); for (int i=0;i=" + min + " and " + col + "<=" + max; } private string getStrRet(List template, string element) { List name = new List() { "h","he", "li","be","b","c","n","o","f","ne", "na","mg","al","si","p","s","cl","ar", "k","ca","sc","ti","v","cr","mn","fe","co","ni","cu","zn","ga","ge","as","se","br","kr", "rb","sr","y","zr","nb","mo","tc","ru","rh","pd","ag","cd","in","sn","sb","te","i","xe", "cs","ba","la", "ce","pr","nd","pm","sm","eu","gd","tb","dy","ho","er","tm","yb","lu", "hf","ta","w","re","os","ir","pt","au","hg","tl","pb","bi","po","at","rn", "fr","ra","ac", "th","pa","u","np","pu","am","cm","bk","cf","es","fm","md","no","lr" }; List value = new List() { 1.008,4.003, 6.941,9.012,10.811,12.011,14.007,15.999,18.998,20.180, 22.990,24.305,26.982,28.086,30.974,32.066,35.453,39.948, 39.098,40.08,44.956,47.88,50.942,51.996,54.938,55.847,58.933,58.70,63.546,65.39,69.72,72.61,74.922,78.96,79.904,83.80, 85.468,87.62,88.906,91.22,92.906,95.94,98.00,101.07,102.906,106.42,107.868,112.41,114.82,118.71,121.76,127.60,126.905,131.29, 132.905,137.33,138.906, 140.12,140.908,144.24,145.0,150.36,151.97,157.25,158.925,162.50,64.93,167.26,168.934,173.04,174.967, 178.49,180.948,183.85,186.207,190.20,192.22,195.08,196.967,200.59,204.38,207.2,208.980,209.00,210.00,222.00, 223.00,226.025,227.028, 232.038,231.036,238.029,237.048,244.00,243.00,247.00,247.00,251.00,252.00,257.00,258.00,259.00,260.00 }; double d_ASum = 0; double d_BSum = 0; double d_CSum = 0; string aElements = template[0]; string bElements = template[1]; string cElements = template[2]; foreach (var item in element.Split(';')) { if (item.Contains(aElements + "-")) { if (aElements != "") { d_ASum = Convert.ToDouble(item.Split('-')[1]) / value[name.IndexOf(aElements.ToLower())]; } } for (int i = 0; i < bElements.Split(',').Length; i++) { string e = bElements.Split(',')[i]; if (item.Contains(e + "-")) { d_BSum = d_BSum + Convert.ToDouble(item.Split('-')[1]) / value[name.IndexOf(e.ToLower())]; } } if (item.Contains(cElements + "-")) { if (cElements != "") d_CSum = Convert.ToDouble(item.Split('-')[1]) / value[name.IndexOf(cElements.ToLower())]; } } double allNums = d_ASum + d_BSum + d_CSum; string strRet = ""; if ((allNums) == 0) { strRet = "0,0,0"; } else { double aPercent = 0, bPercent = 0, cPercent = 0; if (d_ASum != 0) { aPercent = d_ASum / allNums; } if (d_BSum != 0) { bPercent = d_BSum / allNums; } if (d_CSum != 0) { cPercent = d_CSum / allNums; } strRet = aPercent.ToString() + "," + bPercent.ToString() + "," + cPercent.ToString(); } return strRet; } #endregion /// /// 大分类数据 /// /// /// public DataTable ClassificationIntegration(c_TemplateClass m_mbszclass,string str) { ParticleData fielddata = new ParticleData(m_otsreport_export.m_ReportApp.m_rstDataMgr.ResultFilesList[m_otsreport_export.m_ReportApp.m_rstDataMgr.getSelectedIndex()].FilePath); DataTable data = new DataTable(); if (m_mbszclass.M_SY.int_xzkl == 0) { data = fielddata.GetAreaByAllIncA("");//获取所有分类面积和数量信息 } else { DataTable AllInca = fielddata.GetAreaByAllIncA(""); DataTable SelectParticl = SelectParticleData(); data = GetParticleListForParticlSize(SelectParticl, AllInca); } DataTable AreaInformationOfAllElements = ConSolidateInvalid(data); DataTable AllAnalysisDetails = new DataTable(); AllAnalysisDetails.Columns.Add("Name"); AllAnalysisDetails.Columns.Add("TypeId"); AllAnalysisDetails.Columns.Add("Area", typeof(double)); AllAnalysisDetails.Columns.Add("Class"); AllAnalysisDetails.Columns.Add("Cunt", typeof(double)); for (int i = 0; i < AreaInformationOfAllElements.Rows.Count; i++) { DataRow dr2 = AllAnalysisDetails.NewRow(); dr2["Name"] = AreaInformationOfAllElements.Rows[i]["TypeName"].ToString(); dr2["Area"] = Convert.ToDouble(AreaInformationOfAllElements.Rows[i]["ar"]); dr2["TypeId"] = AreaInformationOfAllElements.Rows[i]["TypeId"].ToString(); dr2["Cunt"] = Convert.ToDouble(AreaInformationOfAllElements.Rows[i]["con"]); dr2["Class"] = AreaInformationOfAllElements.Rows[i]["GroupName"].ToString(); AllAnalysisDetails.Rows.Add(dr2); } //按照list列表进行物质类排序,物质类中的元素分类按照面积的大小进行排序 List ClassName = new List(); DataTable getClass_dt = fielddata.GetAllClass(); for (int i = 0; i < getClass_dt.Rows.Count; i++) { ClassName.Add(getClass_dt.Rows[i]["GroupName"].ToString()); } DataTable AreaRatio = new DataTable(); AreaRatio.TableName = "InclusionAreaRatio"; AreaRatio.Columns.Add("Class"); AreaRatio.Columns.Add("Name"); AreaRatio.Columns.Add("Area", typeof(double)); AreaRatio.Columns.Add("inca_proportion"); AreaRatio.Columns.Add("inca_FieldRatio"); AreaRatio.Columns.Add("Cunt", typeof(int)); //获取夹杂物的总面积用于计算夹杂物类别的占比(gridview最后一个固定是未识别颗粒,要排除未识别颗粒所以for循环至grid view长度减一) double totalInclusionArea = Convert.ToDouble(decimal.Parse(AllAnalysisDetails.Compute("sum(Area)", "").ToString())); for (int i = 0; i < AllAnalysisDetails.Rows.Count; i++) { DataRow dr2 = AreaRatio.NewRow(); dr2["Class"] = AllAnalysisDetails.Rows[i]["Class"].ToString(); dr2["Name"] = AllAnalysisDetails.Rows[i]["Name"].ToString(); dr2["Area"] = Convert.ToDouble(AllAnalysisDetails.Rows[i]["Area"]); dr2["inca_proportion"] = Math.Round((Convert.ToDouble(AllAnalysisDetails.Rows[i]["Area"]) / totalInclusionArea) * 100, 2); dr2["inca_FieldRatio"] = Math.Round((Convert.ToDouble(AllAnalysisDetails.Rows[i]["Area"]) / Convert.ToDouble(str)) * 100, 4); dr2["Cunt"] = AllAnalysisDetails.Rows[i]["Cunt"].ToString(); AreaRatio.Rows.Add(dr2); } DataTable AreaRatio_dt = AreaRatio.Copy(); AreaRatio_dt.Clear(); for (int i = 0; i < ClassName.Count(); i++) { DataTable dt = AreaRatio.Copy(); dt.Clear(); for (int a = 0; a < AreaRatio.Rows.Count; a++) { if (AreaRatio.Rows[a]["Class"].ToString() == ClassName[i].ToString()) { dt.Rows.Add(AreaRatio.Rows[a].ItemArray); } } DataView dv = dt.DefaultView; dv.Sort = "Area DESC"; DataTable dt_Element = dv.ToTable(); for (int a = 0; a < dt_Element.Rows.Count; a++) { AreaRatio_dt.Rows.Add(dt_Element.Rows[a].ItemArray); } } DataTable AllAnalysisDetails1 = AreaRatio_dt.Copy(); AllAnalysisDetails1.Clear(); for (int i = 0; i < ClassName.Count; i++) { DataTable dt = AreaRatio_dt.Copy(); dt.Clear(); for (int a = 0; a < AreaRatio_dt.Rows.Count; a++) { if (AreaRatio_dt.Rows[a]["Class"].ToString() == ClassName[i].ToString()) { dt.Rows.Add(AreaRatio_dt.Rows[a].ItemArray); } } if (dt.Rows.Count > 0) { double totalInclusionArea2 = Convert.ToDouble(decimal.Parse(AreaRatio_dt.Compute("sum(Area)", "").ToString())); double Area = Convert.ToDouble(decimal.Parse(dt.Compute("sum(Area)", "").ToString())); int cunt = Convert.ToInt32(decimal.Parse(dt.Compute("sum(Cunt)", "").ToString())); DataRow dr3 = AllAnalysisDetails1.NewRow(); dr3["Class"] = ClassName[i].ToString(); dr3["Area"] = Math.Round(Area, 2); dr3["inca_proportion"] = Math.Round((Convert.ToDouble(dt.Rows[0]["Area"]) / totalInclusionArea2) * 100, 2); dr3["inca_FieldRatio"] = Math.Round((Convert.ToDouble(dt.Rows[0]["Area"]) / Convert.ToDouble(str)) * 100, 4); dr3["Cunt"] = cunt; AllAnalysisDetails1.Rows.Add(dr3); } } return AllAnalysisDetails1; } private DataTable SelectParticleData() { List selectParticles = m_otsreport_export.m_ReportApp.GetSelectedParticles(); #region Datatable数据表格式 DataTable dtUelect = new DataTable(); dtUelect.Columns.Add("fieldid"); dtUelect.Columns.Add("particleid"); dtUelect.Columns.Add("AveGray"); dtUelect.Columns.Add("RectLeft"); dtUelect.Columns.Add("RectTop"); dtUelect.Columns.Add("RectWidth"); dtUelect.Columns.Add("RectHeight"); dtUelect.Columns.Add("Area"); dtUelect.Columns.Add("PosX"); dtUelect.Columns.Add("PosY"); dtUelect.Columns.Add("TypeId"); dtUelect.Columns.Add("SegmentNum"); dtUelect.Columns.Add("SEMPosX"); dtUelect.Columns.Add("SEMPosY"); dtUelect.Columns.Add("XrayId"); dtUelect.Columns.Add("DMAX"); dtUelect.Columns.Add("DMIN"); dtUelect.Columns.Add("DPERP"); dtUelect.Columns.Add("PERIMETER"); dtUelect.Columns.Add("ORIENTATION"); dtUelect.Columns.Add("DINSCR"); dtUelect.Columns.Add("DMEAN"); dtUelect.Columns.Add("DELONG"); dtUelect.Columns.Add("DFERET"); dtUelect.Columns.Add("TypeName"); dtUelect.Columns.Add("TypeColor"); #endregion for (int i = 0; i < selectParticles.Count; i++) { dtUelect.Rows.Add(selectParticles[i].FieldId, selectParticles[i].ParticleId, selectParticles[i].AveGray, selectParticles[i].RectLeft, selectParticles[i].RectTop, selectParticles[i].RectWidth, selectParticles[i].RectHeight, selectParticles[i].Area, selectParticles[i].PosX, selectParticles[i].PosX, selectParticles[i].TypeId, /*selectParticles[i].ElementNum,*/ selectParticles[i].SegmentNum, selectParticles[i].SEMPosX, selectParticles[i].SEMPosY, selectParticles[i].ParticleId, selectParticles[i].DMAX, selectParticles[i].DMIN, selectParticles[i].DPERP, selectParticles[i].PERIMETER, selectParticles[i].ORIENTATION, selectParticles[i].DINSCR, selectParticles[i].DMEAN, selectParticles[i].DELONG, selectParticles[i].DFERET, selectParticles[i].TypeName, selectParticles[i].TypeColor); } return dtUelect; } private DataTable ConSolidateInvalid(DataTable dt) { DataTable dt_invalid = dt.Clone(); DataTable dt_no_invalid = dt.Clone(); for (int i = 0; i < dt.Rows.Count; i++) { if (dt.Rows[i]["TypeName"].ToString() == "Invalid") { dt_invalid.Rows.Add(dt.Rows[i].ItemArray); } else { dt_no_invalid.Rows.Add(dt.Rows[i].ItemArray); } } return dt_no_invalid; } /// /// 细分类数据 /// /// /// public DataTable subdivisionIntegration(c_TemplateClass m_mbszclass) { ParticleData fielddata = new ParticleData(m_otsreport_export.m_ReportApp.m_rstDataMgr.ResultFilesList[m_otsreport_export.m_ReportApp.m_rstDataMgr.getSelectedIndex()].FilePath); DataTable data = new DataTable(); if (m_mbszclass.M_SY.int_xzkl == 0) { data = fielddata.GetAreaByAllIncA("");//获取所有分类面积和数量信息 } else { DataTable AllInca = fielddata.GetAreaByAllIncA(""); DataTable SelectParticl = SelectParticleData(); data = GetParticleListForParticlSize(SelectParticl, AllInca); } return ConSolidateInvalid(data); } public void GenerateINCAtable(string str,out DataTable dt) { //根据sql条件,查询获取颗粒信息数据 ParticleData fielddata = new ParticleData(m_otsreport_export.m_ReportApp.m_rstDataMgr.ResultFilesList[m_otsreport_export.m_ReportApp.m_rstDataMgr.getSelectedIndex()].FilePath); //按照list列表进行物质类排序,物质类中的元素分类按照面积的大小进行排序 List ClassName = new List(); DataTable getClass_dt = fielddata.GetAllClass(); for (int i = 0; i < getClass_dt.Rows.Count; i++) { if (getClass_dt.Rows[i]["GroupName"].ToString() != "NOT_INCLUTION" && getClass_dt.Rows[i]["GroupName"].ToString() != "Invalid") ClassName.Add(getClass_dt.Rows[i]["GroupName"].ToString()); } //夹杂物面积比添加大类 DataTable RawParticleData = InclusionAreaRatio_2(str); //夹杂物面积比计算大类占比 ProportionOfParticleArea(RawParticleData, ClassName, str, out dt); } private bool ProportionOfParticleArea(DataTable dataTable, List ClassName,string str, out DataTable dt_out) { DataTable AllAnalysisDetails = dataTable.Copy(); AllAnalysisDetails.Clear(); AllAnalysisDetails.TableName = "InclusionAreaRatio"; for (int i = 0; i < ClassName.Count; i++) { DataTable dt = dataTable.Copy(); dt.Clear(); for (int a = 0; a < dataTable.Rows.Count; a++) { if (dataTable.Rows[a]["Class"].ToString() == ClassName[i].ToString()) { dt.Rows.Add(dataTable.Rows[a].ItemArray); } } if (dt.Rows.Count > 0) { double totalInclusionArea = Convert.ToDouble(decimal.Parse(dataTable.Compute("sum(Area)", "").ToString())); double Area = Convert.ToDouble(decimal.Parse(dt.Compute("sum(Area)", "").ToString())); DataRow dr = AllAnalysisDetails.NewRow(); dr["Class"] = ClassName[i].ToString(); dr["Area"] = Math.Round(Area, 2); //Convert.ToDouble(decimal.Parse(dt.Compute("sum(e3)", "").ToString())); dr["inca_proportion"] = Math.Round((Convert.ToDouble(Area) / totalInclusionArea) * 100, 2); dr["inca_FieldRatio"] = Math.Round((Convert.ToDouble(Area) / Convert.ToDouble(str)) * 100, 4); AllAnalysisDetails.Rows.Add(dr); DataView dv = dt.DefaultView; dv.Sort = "Area DESC"; DataTable dt_Area = dv.ToTable(); for (int a = 0; a < dt_Area.Rows.Count; a++) { dt_Area.Rows[a]["Class"] = ""; dt_Area.Rows[a]["Area"] = Math.Round(Convert.ToDouble(dt_Area.Rows[a]["Area"]), 2); AllAnalysisDetails.Rows.Add(dt_Area.Rows[a].ItemArray); } } } dt_out = AllAnalysisDetails.Copy(); return true; } private DataTable InclusionAreaRatio_2(string str) { //根据sql条件,查询获取颗粒信息数据 ParticleData fielddata = new ParticleData(m_otsreport_export.m_ReportApp.m_rstDataMgr.ResultFilesList[m_otsreport_export.m_ReportApp.m_rstDataMgr.getSelectedIndex()].FilePath); DataTable AreaInformationOfAllElements = InvalidRemoval(InvalidRemoval(fielddata.GetAreaByAllIncA(""), "GroupName"), "TypeName"); DataTable AllAnalysisDetails = new DataTable(); AllAnalysisDetails.Columns.Add("Name"); AllAnalysisDetails.Columns.Add("TypeId"); AllAnalysisDetails.Columns.Add("Area", typeof(double)); AllAnalysisDetails.Columns.Add("Class"); AllAnalysisDetails.Columns.Add("Cunt", typeof(double)); for (int i = 0; i < AreaInformationOfAllElements.Rows.Count; i++) { DataRow dr2 = AllAnalysisDetails.NewRow(); dr2["Name"] = AreaInformationOfAllElements.Rows[i]["TypeName"].ToString(); dr2["Area"] = Convert.ToDouble(AreaInformationOfAllElements.Rows[i]["ar"]); dr2["TypeId"] = AreaInformationOfAllElements.Rows[i]["TypeId"].ToString(); dr2["Cunt"] = Convert.ToDouble(AreaInformationOfAllElements.Rows[i]["con"]); dr2["Class"] = AreaInformationOfAllElements.Rows[i]["GroupName"].ToString(); AllAnalysisDetails.Rows.Add(dr2); } List ClassName = new List(); DataTable getClass_dt = fielddata.GetAllClass(); for (int i = 0; i < getClass_dt.Rows.Count; i++) { if (getClass_dt.Rows[i]["GroupName"].ToString() != "NOT_INCLUTION" && getClass_dt.Rows[i]["GroupName"].ToString() != "Invalid") ClassName.Add(getClass_dt.Rows[i]["GroupName"].ToString()); } DataTable AreaRatio = new DataTable(); AreaRatio.TableName = "InclusionAreaRatio"; AreaRatio.Columns.Add("Class"); AreaRatio.Columns.Add("subdivision"); AreaRatio.Columns.Add("Area", typeof(double)); AreaRatio.Columns.Add("inca_proportion"); AreaRatio.Columns.Add("inca_FieldRatio"); //获取夹杂物的总面积用于计算夹杂物类别的占比(gridview最后一个固定是未识别颗粒,要排除未识别颗粒所以for循环至grid view长度减一) int sumArea = 0; for (int i = 0; i < AllAnalysisDetails.Rows.Count; i++) { sumArea = sumArea + Convert.ToInt32(AllAnalysisDetails.Rows[i]["Area"]); } for (int i = 0; i < AllAnalysisDetails.Rows.Count; i++) { DataRow dr = AreaRatio.NewRow(); dr["Class"] = AllAnalysisDetails.Rows[i]["Class"].ToString(); dr["subdivision"] = AllAnalysisDetails.Rows[i]["Name"].ToString(); dr["Area"] = Convert.ToDouble(AllAnalysisDetails.Rows[i]["Area"]); dr["inca_proportion"] = Math.Round((Convert.ToDouble(AllAnalysisDetails.Rows[i]["Area"]) / sumArea) * 100, 2); dr["inca_FieldRatio"] = Math.Round((Convert.ToDouble(AllAnalysisDetails.Rows[i]["Area"]) / Convert.ToDouble(str)) * 100, 4); AreaRatio.Rows.Add(dr); } DataTable AreaRatio_dt = AreaRatio.Copy(); AreaRatio_dt.Clear(); for (int i = 0; i < ClassName.Count(); i++) { DataTable dt = AreaRatio.Copy(); dt.Clear(); for (int a = 0; a < AreaRatio.Rows.Count; a++) { if (AreaRatio.Rows[a]["Class"].ToString() == ClassName[i].ToString()) { dt.Rows.Add(AreaRatio.Rows[a].ItemArray); } } DataView dv = dt.DefaultView; dv.Sort = "Area DESC"; DataTable dt_Element = dv.ToTable(); for (int a = 0; a < dt_Element.Rows.Count; a++) { AreaRatio_dt.Rows.Add(dt_Element.Rows[a].ItemArray); } } return AreaRatio_dt; } public void criterion_out(GBReport GB_Report, OTSReport_Export in_export,int Index,DataTable dev_internationalLanguage,bool gb_1,bool gb_2,bool AmericanStandard,bool GermanStandard) { //首页信息 GB_Report = new GBReport(in_export); GB_Report.setResultGrid(m_otsreport_export.m_mbszclass); GB_Report.International_language(dev_internationalLanguage); for (int i = 0; i < m_otsreport_export.m_ReportApp.m_rstDataMgr.ResultFilesList.Count; i++) { string anothername = m_otsreport_export.m_ReportApp.m_rstDataMgr.ResultFilesList[i].anotherFileName.ToString(); string resultfile = m_otsreport_export.m_ReportApp.m_rstDataMgr.ResultFilesList[i].FilePath.ToString() + "\\" + m_otsreport_export.m_ReportApp.m_rstDataMgr.ResultFilesList[i].FileName_real.ToString(); m_otsreport_export.m_ReportApp.m_rstDataMgr.m_ReportMgr.AddASmplMsrResultMgr(resultfile, anothername); } OTSCLRINTERFACE.CPropParamClr clr_prop = m_otsreport_export.m_ReportApp.m_rstDataMgr.m_ReportMgr.GetPropertyParamTable(); List datasourcelist = m_otsreport_export.m_ReportApp.m_conditionChoose.m_conditionData.GetComboDownListByItemName(OTS_REPORT_PROP_GRID_ITEMS.DATA_SOURCE); if (gb_1) { List GB1 = InsertReportTemplateTable_ChineseStandardABCDDS(clr_prop, datasourcelist, Index, (int)CALCULATE_TABLE_TYPE.GB_Method1); DataView dv_gb1 = GB1[4].DefaultView; dv_gb1.Sort = "Grade desc"; DataTable dt_gb1 = dv_gb1.ToTable(); for (int i=0; i < GB1[4].Rows.Count;i++) { for(int a=0;a< GB1[4].Columns.Count;a++) { GB1[4].Rows[i][a] = dt_gb1.Rows[i][a]; } } List GB1NameList = new List(); GB1NameList.Add("A类"); GB1NameList.Add("B类"); GB1NameList.Add("C类"); GB1NameList.Add("D类"); GB1NameList.Add("DS类"); GB_Report.set_GB_Method(GB1, GB1NameList, "方法一"); } if (gb_2) { List GB2 = InsertReportTemplateTable_ChineseStandardABCDDS(clr_prop, datasourcelist, Index, (int)CALCULATE_TABLE_TYPE.GB_Method2); DataView dv_gb1 = GB2[5].DefaultView; dv_gb1.Sort = "Grade desc"; DataTable dt_gb1 = dv_gb1.ToTable(); for (int i = 0; i < GB2[5].Rows.Count; i++) { for (int a = 0; a < GB2[5].Columns.Count; a++) { GB2[5].Rows[i][a] = dt_gb1.Rows[i][a]; } } List GB2NameList = new List(); GB2NameList.Add("A类"); GB2NameList.Add("B类"); GB2NameList.Add("C类"); GB2NameList.Add("D类"); GB2NameList.Add("D硫化物类"); GB2NameList.Add("DS类"); GB_Report.set_GB_Method(GB2, GB2NameList, "方法二"); } DevExpress.XtraReports.UI.ReportPrintTool tool = new DevExpress.XtraReports.UI.ReportPrintTool(GB_Report); tool.ShowPreview(); } } }