ParticlesGridDevidePage.cs 112 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679
  1. using NPOI.SS.UserModel;
  2. using NPOI.SS.UserModel.Charts;
  3. using NPOI.SS.Util;
  4. using NPOI.XSSF.UserModel;
  5. using OTSCLRINTERFACE;
  6. using OTSCommon.DBOperate;
  7. using OTSCommon.DBOperate.Model;
  8. using OTSIncAReportApp;
  9. using OTSIncAReportApp._1_UI.Control_Grids.ParticlesGridDevidePage;
  10. using OTSIncAReportApp.DataOperation.DataAccess;
  11. using OTSIncAReportApp.OTSRstMgrFunction;
  12. using OTSIncAReportApp.SysMgrTools;
  13. using OTSIncAReportGraph.Class;
  14. using OTSIncAReportGraph.Controls;
  15. using OTSIncAReportGraph.OTSIncAReportGraphFuncation;
  16. using OTSIncAReportGrids.OTSIncAReportGridsFuncation;
  17. using OTSIncAReportMailInterface;
  18. using OTSPeriodicTable;
  19. using System;
  20. using System.Collections;
  21. using System.Collections.Generic;
  22. using System.Data;
  23. using System.Data.SQLite;
  24. using System.Drawing;
  25. using System.IO;
  26. using System.Linq;
  27. using System.Reflection;
  28. using System.Threading;
  29. using System.Windows.Forms;
  30. using static OTSDataType.otsdataconst;
  31. namespace OTSIncAReportGrids
  32. {
  33. public partial class ParticlesGridDevidePage : UserControl
  34. {
  35. ParticlesGridDevidePageShowConfig m_particlesGridDevidePageShowConfig = null;
  36. //设置模拟数据表
  37. public DataTable m_dt = new DataTable();
  38. //底层操作类
  39. OTSReportGridsFun m_OTSIncAReportGridsFun = null;
  40. //进度条窗体
  41. public Frm_UserProgress m_frm_userprogress;
  42. //移动SEM到指定位置发生线程
  43. private Thread m_mythread;
  44. //记录线程是否已经运行完成的状态
  45. private bool m_mythread_state = false;
  46. //导出图像文件的路径
  47. private string m_imagefilepath = "";
  48. //显示元素列表
  49. public List<string> m_list_elementscolname = null;
  50. //单个数据源所拥有的列数,这里保存下来,供导出模块使用
  51. public int m_oneresult_columncount = 0;
  52. OTSImageDisHelp m_ReportFun = null;
  53. public OTSImageDisHelp ReportFun { get => m_ReportFun; set => m_ReportFun = value; }
  54. /// <summary>
  55. /// 选择颗粒缓存表
  56. /// </summary>
  57. List<Particle> Particleslist_selecttodisplay = new List<Particle>();
  58. //多个数据源,每个数据源拥有的列数,这里保存下来,供分组使用
  59. public List<int> m_list_oneresult_columncount;
  60. //国际化
  61. Language lan;
  62. public Hashtable table;
  63. //测量结果
  64. public ResultFile result = null;
  65. frmReportConditionChoose m_condition;
  66. FieldData fieldData;
  67. DataTable particlesAll;
  68. DataTable particles;
  69. public ParticleData Particledata;
  70. UserLibraryData userLibrary;
  71. DataTable userLibraryData;
  72. NLog.Logger log = NLog.LogManager.GetCurrentClassLogger();
  73. enum SelItem
  74. {
  75. analyticalParticle = 0,
  76. otherParticles = 1,
  77. MergeParticles = 2,
  78. allParticles = 3
  79. }
  80. //ListOfSimilarParticles Form_listOfSimilarParticles;
  81. #region 分页器相关
  82. #region 分页字段和属性
  83. string condition = "";
  84. public string FileName = null;
  85. private int pageIndex = 1;
  86. /// <summary>
  87. /// 当前页面
  88. /// </summary>
  89. public virtual int PageIndex
  90. {
  91. get { return pageIndex; }
  92. set { pageIndex = value; }
  93. }
  94. private int pageSize = 20;
  95. /// <summary>
  96. /// 每页记录数
  97. /// </summary>
  98. public virtual int PageSize
  99. {
  100. get { return pageSize; }
  101. set { pageSize = value; }
  102. }
  103. private int recordCount = 0;
  104. /// <summary>
  105. /// 总记录数
  106. /// </summary>
  107. public virtual int RecordCount
  108. {
  109. get { return recordCount; }
  110. set { recordCount = value; }
  111. }
  112. private int pageCount = 0;
  113. /// <summary>
  114. /// 总页数
  115. /// </summary>
  116. public int PageCount
  117. {
  118. get
  119. {
  120. pageCount = GetPageCount();
  121. return pageCount;
  122. }
  123. }
  124. /// <summary>
  125. /// 计算总页数
  126. /// </summary>
  127. /// <returns></returns>
  128. private int GetPageCount()
  129. {
  130. if (PageSize == 0)
  131. {
  132. return 0;
  133. }
  134. int pageCount = RecordCount / PageSize;
  135. if (RecordCount % PageSize == 0)
  136. {
  137. pageCount = RecordCount / PageSize;
  138. }
  139. else
  140. {
  141. pageCount = RecordCount / PageSize + 1;
  142. }
  143. return pageCount;
  144. }
  145. #endregion
  146. frmReportApp m_ReportApp;
  147. #endregion
  148. public ParticlesGridDevidePage(frmReportApp ReportApp)
  149. {
  150. m_ReportApp = ReportApp;
  151. m_condition = ReportApp.m_conditionChoose;
  152. string sou = m_condition.m_CurrentConditions[OTSIncAReportApp.OTSSampleReportInfo.OTS_REPORT_PROP_GRID_ITEMS.DATA_SOURCE].itemDisplayVal.ToString();
  153. if (sou.Contains("+"))
  154. {
  155. MessageBox.Show("This function does not support multiple samples!");
  156. result = m_ReportApp.m_rstDataMgr.ResultFilesList[0];
  157. }
  158. else
  159. {
  160. result = m_ReportApp.m_rstDataMgr.ResultFilesList[m_ReportApp.m_conditionChoose.m_conditionData.GetComboDownListIndexByItemName(OTSIncAReportApp.OTSSampleReportInfo.OTS_REPORT_PROP_GRID_ITEMS.DATA_SOURCE)];
  161. }
  162. ReportFun = new OTSImageDisHelp(result);
  163. //设置窗体的双缓冲,以保证大数据时拖动不卡
  164. this.SetStyle(ControlStyles.OptimizedDoubleBuffer | ControlStyles.ResizeRedraw | ControlStyles.AllPaintingInWmPaint, true);
  165. this.UpdateStyles();
  166. InitializeComponent();
  167. //利用反射设置DataGridView的双缓冲
  168. Type dgvType = this.dgV_ParticlesDevidePage.GetType();
  169. PropertyInfo pi = dgvType.GetProperty("DoubleBuffered", BindingFlags.Instance | BindingFlags.NonPublic);
  170. pi.SetValue(this.dgV_ParticlesDevidePage, true, null);
  171. this.control_XRayTable1 = new Control_XRayTable(null);
  172. this.control_XRayTable1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  173. this.control_XRayTable1.Dock = System.Windows.Forms.DockStyle.Bottom;
  174. this.control_XRayTable1.GBInfoStr = "";
  175. this.control_XRayTable1.GoodChineseName = "";
  176. this.control_XRayTable1.MaterialName = "";
  177. this.control_XRayTable1.Location = new System.Drawing.Point(0, 400);
  178. this.control_XRayTable1.Name = "control_XRayTable1";
  179. this.control_XRayTable1.ShowAnalysisXray = true;
  180. this.control_XRayTable1.ShowSearchXray = false;
  181. this.control_XRayTable1.Size = new System.Drawing.Size(1004, 200);
  182. this.control_XRayTable1.STDName = "";
  183. this.control_XRayTable1.Visible = false;
  184. this.control_XRayTable1.label_close.Visible = true;
  185. this.Controls.Add(this.control_XRayTable1);
  186. }
  187. bool Init()
  188. {
  189. if (result == null)
  190. {
  191. return false;
  192. }
  193. try
  194. {
  195. lan = new Language(this);
  196. table = lan.GetNameTable(this.Name);
  197. m_mythread_state = false;
  198. m_mythread = new Thread(new ParameterizedThreadStart(Thread_GO));
  199. fieldData = new FieldData(result.FilePath);
  200. Particledata = new ParticleData(result.FilePath);
  201. var systype = m_ReportApp.m_RptConfigFile.Systype;
  202. if (systype == OTS_SysType_ID.TCCleannessA || systype == OTS_SysType_ID.BatteryCleannessA)
  203. {
  204. string str_libraryName = result.GetSTDName();
  205. userLibrary = new UserLibraryData(str_libraryName, result.FilePath + "\\");
  206. if (userLibrary.GetSqlHelper() != null)
  207. {
  208. userLibraryData = userLibrary.GetSubAttributeFromDatabase();
  209. }
  210. else
  211. {
  212. userLibraryData = null;
  213. }
  214. }
  215. //初始化底层操作类
  216. m_OTSIncAReportGridsFun = new OTSReportGridsFun();
  217. return true;
  218. }
  219. catch (Exception ex)
  220. {
  221. log.Error(ex.ToString());
  222. return false;
  223. }
  224. }
  225. private void ParticlesGridDevidePage_Load(object sender, EventArgs e)
  226. {
  227. if (!Init())
  228. {
  229. return;
  230. }
  231. ProgressStart();//进度条关闭通过cbB_PageSize.SelectedIndex事件
  232. if (!UpdateTable())
  233. {
  234. return;
  235. }
  236. cbB_PageSize.Items.Add("20");
  237. cbB_PageSize.Items.Add("100");
  238. cbB_PageSize.Items.Add("500");
  239. cbB_PageSize.Items.Add("1000");
  240. cbB_PageSize.Items.Add("5000");
  241. cbB_PageSize.Items.Add("All");
  242. cbB_PageSize.SelectedIndex = 0;
  243. DataTable table = GetClassificationOfAllParticles();
  244. if (table != null)
  245. {
  246. if (table.Rows.Count > 0)
  247. {
  248. foreach (DataRow row in table.Rows)
  249. {
  250. tbx_Type.Text += row["TypeName"].ToString() + '$';
  251. }
  252. }
  253. if (tbx_Type.Text != "")
  254. {
  255. tbx_Type.Text = tbx_Type.Text.Remove(tbx_Type.Text.Length - 1);
  256. }
  257. }
  258. dgV_ParticlesDevidePage.Focus();
  259. }
  260. #region 自定义方法
  261. bool UpdateTable()
  262. {
  263. int sel = m_ReportApp.m_conditionChoose.m_conditionData.GetComboDownListIndexByItemName(OTSIncAReportApp.OTSSampleReportInfo.OTS_REPORT_PROP_GRID_ITEMS.PARTICE_LIST);
  264. particlesAll = new DataTable();
  265. if (sel == (int)SelItem.analyticalParticle)
  266. {
  267. particlesAll = Particledata.GetInfoForPartucleDevidePage_analyticalParticle(condition);
  268. DataTable mergeParticles = Particledata.GetInfoForPartucleDevidePage_mergeParticles(condition);
  269. if (mergeParticles != null && mergeParticles.Rows.Count > 0)
  270. {
  271. RemoveMergeParticles(ref particlesAll, mergeParticles);
  272. }
  273. }
  274. if (sel == (int)SelItem.otherParticles)
  275. {
  276. particlesAll = Particledata.GetInfoForPartucleDevidePage_otherParticle(condition);
  277. DataTable mergeParticles = Particledata.GetInfoForPartucleDevidePage_mergeParticles(condition);
  278. if (mergeParticles != null && mergeParticles.Rows.Count > 0)
  279. {
  280. RemoveMergeParticles(ref particlesAll, mergeParticles);
  281. }
  282. }
  283. if (sel == (int)SelItem.MergeParticles)
  284. {
  285. particlesAll = Particledata.GetInfoForPartucleDevidePage_mergeParticles(condition);
  286. }
  287. if (sel == (int)SelItem.allParticles)
  288. {
  289. particlesAll = Particledata.GetInfoForPartucleDevidePage_allParticles(condition);
  290. }
  291. particlesAll.Columns.Add("Hardness");
  292. particlesAll.Columns.Add("Density");
  293. particlesAll.Columns.Add("Electrical_conductivity");
  294. if (userLibraryData != null)
  295. {
  296. for (int i = 0; i < particlesAll.Rows.Count; i++)
  297. {
  298. DataRow[] dr = userLibraryData.Select("STDId=" + particlesAll.Rows[i]["TypeId"].ToString());
  299. if (dr.Length > 0)
  300. {
  301. particlesAll.Rows[i]["Hardness"] = dr[0]["Hardness"].ToString();
  302. particlesAll.Rows[i]["Density"] = dr[0]["Density"].ToString();
  303. particlesAll.Rows[i]["Electrical_conductivity"] = dr[0]["Electrical_conductivity"].ToString();
  304. }
  305. else
  306. {
  307. particlesAll.Rows[i]["Hardness"] = "";
  308. particlesAll.Rows[i]["Density"] = "";
  309. particlesAll.Rows[i]["Electrical_conductivity"] = "";
  310. }
  311. }
  312. }
  313. else
  314. {
  315. for (int i = 0; i < particlesAll.Rows.Count; i++)
  316. {
  317. particlesAll.Rows[i]["Hardness"] = "";
  318. particlesAll.Rows[i]["Density"] = "";
  319. particlesAll.Rows[i]["Electrical_conductivity"] = "";
  320. }
  321. }
  322. btn_Sel.Enabled = true;
  323. if (particlesAll == null)
  324. {
  325. log.Error("There is an exception in the data of the database!");
  326. #region 加载进度条进度部份结束
  327. this.Cursor = Cursors.Default;
  328. m_frm_userprogress.Close();
  329. #endregion
  330. return false;
  331. }
  332. DataTable elementchemistry = Particledata.GetElementChemistry();
  333. for (int i = 0; i < particlesAll.Rows.Count; i++)
  334. {
  335. string str = "XRayId = " + particlesAll.Rows[i]["particleId"].ToString() + " and fieldid = " + particlesAll.Rows[i]["fieldid"].ToString();
  336. DataRow[] drs = elementchemistry.Select(str);
  337. string ConcatenatedString = "";
  338. for (int j = 0; j < drs.Length; j++)
  339. {
  340. ConcatenatedString += drs[j]["name"] + "-" + drs[j]["Percentage"] + ';';
  341. }
  342. particlesAll.Rows[i]["Element"] = ConcatenatedString;
  343. }
  344. if (sel != (int)SelItem.MergeParticles)
  345. {
  346. DataTable XRayData = Particledata.GetXRayData();
  347. particlesAll.Columns.Add("XRayDataCount");
  348. for (int i = 0; i < particlesAll.Rows.Count; i++)
  349. {
  350. if (int.Parse(particlesAll.Rows[i]["particleId"].ToString()) > -1)
  351. {
  352. particlesAll.Rows[i]["XRayDataCount"] = 0;
  353. string str = " XrayIndex= " + particlesAll.Rows[i]["particleId"].ToString() + " and fieldid = " + particlesAll.Rows[i]["fieldid"].ToString();
  354. DataRow[] drs = XRayData.Select(str);
  355. uint xraycount = 0;
  356. if (drs != null)
  357. {
  358. if (drs.Length > 0)
  359. {
  360. uint[] Analysis_xray = new uint[2000];
  361. for (int j = 0; j < 2000; j++)
  362. {
  363. Analysis_xray[j] = BitConverter.ToUInt32((byte[])drs[0][2], j * 4);
  364. }
  365. for (int j = 0; j < 2000; j++)
  366. {
  367. xraycount += Analysis_xray[j];
  368. }
  369. particlesAll.Rows[i]["XRayDataCount"] = xraycount;
  370. }
  371. }
  372. }
  373. }
  374. }
  375. return true;
  376. }
  377. private void BindDataGridView()
  378. {
  379. dgV_ParticlesDevidePage.Visible = false;
  380. if (m_frm_userprogress.IsDisposed)
  381. {
  382. ProgressStart();
  383. }
  384. dgV_ParticlesDevidePage.Rows.Clear();
  385. dgV_ParticlesDevidePage.Columns.Clear();
  386. var startFun = m_ReportApp.m_RptConfigFile.Systype;
  387. string str_DefaultComputedColName = "", str_ElementsColName = "";
  388. DataSet ds = XMLoperate.GetXmlData(Application.StartupPath + RptConfigFile.m_ReportMgrParamFile, "XMLData");
  389. DataTable dt = ds.Tables["Member"];
  390. foreach (DataRow element in dt.Rows)
  391. {
  392. string RegName = element["RegName"].ToString();
  393. if (RegName == "DefaultComputedColName")
  394. {
  395. str_DefaultComputedColName = element["strValue"].ToString();
  396. }
  397. if (RegName == "ElementsColName")
  398. {
  399. str_ElementsColName = element["strValue"].ToString();
  400. }
  401. }
  402. string[] strs = str_DefaultComputedColName.Split(',');
  403. Dictionary<string, string> keyValues = new Dictionary<string, string>() { };
  404. keyValues.Add("rowid", table["str4"].ToString());
  405. keyValues.Add("TypeName", table["str6"].ToString());
  406. keyValues.Add("ParticleImage", table["str5"].ToString());
  407. keyValues.Add("FieldId", "FieldId");
  408. keyValues.Add("ParticleId", "ParticleId");
  409. keyValues.Add("SEMPosX", "SEMPosX");
  410. keyValues.Add("SEMPosY", "SEMPosY");
  411. for (int i = 0; i < strs.Count(); i++)
  412. {
  413. if (strs[i] == "ParticleCoordinate")
  414. {
  415. keyValues.Add("AbPosX", "PosX");
  416. keyValues.Add("AbPosY", "PosY");
  417. }
  418. if (strs[i] == "Area")
  419. {
  420. keyValues.Add("Area", table["str21"].ToString());
  421. }
  422. if (strs[i] == "EquivalentCircleDiameter")
  423. {
  424. keyValues.Add("Equivalent", table["str22"].ToString());
  425. }
  426. if (strs[i] == "MaxDiameter")
  427. {
  428. keyValues.Add("DMAX", table["str23"].ToString());
  429. }
  430. if (strs[i] == "MinDiameter")
  431. {
  432. keyValues.Add("DMIN", table["str24"].ToString());
  433. }
  434. if (strs[i] == "DiameterRatio")
  435. {
  436. keyValues.Add("DiameterRatio", table["str25"].ToString());
  437. }
  438. if (strs[i] == "FerretDiameter")
  439. {
  440. keyValues.Add("DFERET", table["str26"].ToString());
  441. }
  442. if (strs[i] == "PERP")
  443. {
  444. keyValues.Add("DPERP", table["str27"].ToString());
  445. }
  446. if (strs[i] == "PERI")
  447. {
  448. keyValues.Add("PERIMETER", table["str28"].ToString());
  449. }
  450. if (strs[i] == "INSCR")
  451. {
  452. keyValues.Add("DINSCR", table["str29"].ToString());
  453. }
  454. if (strs[i] == "MEAN")
  455. {
  456. keyValues.Add("DMEAN", table["str30"].ToString());
  457. }
  458. if (strs[i] == "ELONG")
  459. {
  460. keyValues.Add("DELONG", table["str31"].ToString());
  461. }
  462. if (strs[i] == "ASPECT_ELONG")
  463. {
  464. keyValues.Add("ASPECT_ELONG", table["str32"].ToString());
  465. }
  466. if (strs[i] == "Orientation")
  467. {
  468. keyValues.Add("ORIENTATION", table["str33"].ToString());
  469. }
  470. if (strs[i] == "XRayDataCount")
  471. {
  472. keyValues.Add("XRayDataCount", "XRay计数");
  473. }
  474. if (startFun == OTS_SysType_ID.TCCleannessA || startFun == OTS_SysType_ID.BatteryCleannessA)
  475. {
  476. if (strs[i] == "Hardness")
  477. {
  478. keyValues.Add("Hardness", table["str34"].ToString());
  479. }
  480. if (strs[i] == "Density")
  481. {
  482. keyValues.Add("Density", table["str35"].ToString());
  483. }
  484. if (strs[i] == "Electrical_conductivity")
  485. {
  486. keyValues.Add("Electrical_conductivity", table["str36"].ToString());
  487. }
  488. }
  489. }
  490. keyValues.Add("Element", "Element");
  491. Dictionary<string, string>.Enumerator en = keyValues.GetEnumerator();
  492. for (int irow = 0; irow < keyValues.Count; irow++)
  493. {
  494. if (en.MoveNext())
  495. {
  496. if (en.Current.Key == "ParticleImage")
  497. {
  498. DataGridViewImageColumn iconColumn = new DataGridViewImageColumn();
  499. iconColumn.Name = en.Current.Key;
  500. iconColumn.HeaderText = en.Current.Value;
  501. dgV_ParticlesDevidePage.Columns.Add(iconColumn);
  502. }
  503. else if (en.Current.Key == "Element")
  504. {
  505. }
  506. else
  507. {
  508. dgV_ParticlesDevidePage.Columns.Add(en.Current.Key, en.Current.Value);
  509. if (en.Current.Key == "Area" || en.Current.Key == "EquivalentCircleDiameter" || en.Current.Key == "MaxDiameter" || en.Current.Key == "MinDiameter" || en.Current.Key == "DiameterRatio" || en.Current.Key == "FerretDiameter" || en.Current.Key == "PERP" || en.Current.Key == "PERI" || en.Current.Key == "INSCR" || en.Current.Key == "MEAN" || en.Current.Key == "ELONG" || en.Current.Key == "ASPECT_ELONG" || en.Current.Key == "Orientation")
  510. {
  511. int id = dgV_ParticlesDevidePage.Columns.Count;
  512. dgV_ParticlesDevidePage.Columns[id - 1].Tag = "NumericType";
  513. }
  514. }
  515. }
  516. }
  517. if (PageSize == -1|| PageSize == 0)
  518. {
  519. PageSize = particlesAll.Rows.Count;
  520. }
  521. if (particlesAll == null)
  522. {
  523. return;
  524. }
  525. RecordCount = particlesAll.Rows.Count;
  526. particles = particlesAll.Clone();
  527. for (int fi = (PageIndex - 1) * pageSize; fi < PageIndex * pageSize; fi++)
  528. {
  529. if (fi > RecordCount - 1)
  530. {
  531. break;
  532. }
  533. particles.ImportRow(particlesAll.Rows[fi]);
  534. }
  535. string particleM = "";
  536. List<string> ElementTypeSort = new List<string>(str_ElementsColName.Split(',').ToList());//去重
  537. for (int i = 0; i < ElementTypeSort.Count; i++)
  538. {
  539. if (ElementTypeSort[0] == "")
  540. {
  541. ElementTypeSort.RemoveAt(0);
  542. break;
  543. }
  544. dgV_ParticlesDevidePage.Columns.Add(ElementTypeSort[i], ElementTypeSort[i]);
  545. int id = dgV_ParticlesDevidePage.Columns.Count;
  546. dgV_ParticlesDevidePage.Columns[id - 1].Tag = "NumericType";
  547. }
  548. double jd = 95f / (double)particles.Rows.Count;
  549. string filePath = result.FilePath + "\\FIELD_FILES\\";
  550. KeyValuePair<string, Bitmap> FieldImage = new KeyValuePair<string, Bitmap>();
  551. for (int i = 0; i < particles.Rows.Count; i++)
  552. {
  553. if (i % 10 == 0)
  554. m_frm_userprogress.SetProgressValueAndText((int)(jd * i), "loading..");
  555. Dictionary<string, string>.Enumerator enl = keyValues.GetEnumerator();
  556. int add_rowindex = dgV_ParticlesDevidePage.Rows.Add();
  557. dgV_ParticlesDevidePage.Rows[add_rowindex].Cells[0].Value = (pageSize * (PageIndex - 1) + add_rowindex + 1).ToString();
  558. for (int k = 0; k < keyValues.Count; k++)
  559. {
  560. if (enl.MoveNext())
  561. {
  562. if (enl.Current.Key == "ParticleImage")
  563. {
  564. if (particles.Columns.Contains("SubParticles"))
  565. {
  566. string subt = particles.Rows[i]["SubParticles"].ToString();
  567. if (subt != null && subt != "")
  568. {
  569. double ScanFieldSize = result.GetScanFieldSizeX();
  570. string filePatht = result.FilePath + "\\FIELD_FILES\\";
  571. string imagePatht = filePatht + "Field" + subt.Split(',')[0].Split(':')[0].ToString() + ".bmp";
  572. Bitmap tempbit = Particledata.ReadImageFile(imagePatht);
  573. int pixw = tempbit.Width;
  574. double xs = pixw / ScanFieldSize;
  575. particleM = particleM + "," + subt;
  576. Bitmap bmap = Particledata.GetBitmapForBig(subt, xs, result.FilePath, tempbit.Height, tempbit.Width);
  577. if (bmap != null)
  578. {
  579. string[] str = subt.Split(',');
  580. bmap.Tag = new List<string>() { str[0].Split(':')[0], str[0].Split(':')[1], particles.Rows[i]["TypeId"].ToString() };
  581. dgV_ParticlesDevidePage.Rows[add_rowindex].Height = 150;
  582. dgV_ParticlesDevidePage.Rows[add_rowindex].Cells[k].Value = bmap;
  583. dgV_ParticlesDevidePage.Rows[add_rowindex].Cells[k].Style.BackColor = Color.Azure;
  584. dgV_ParticlesDevidePage.Rows[add_rowindex].DefaultCellStyle.ForeColor = Color.Chocolate;
  585. }
  586. else
  587. {
  588. dgV_ParticlesDevidePage.Rows[add_rowindex].Height = 150;
  589. dgV_ParticlesDevidePage.Rows[add_rowindex].Cells[k].Style.BackColor = Color.Azure;
  590. }
  591. }
  592. }
  593. else
  594. {
  595. if (FieldImage.Key != particles.Rows[i]["fieldid"].ToString() || FieldImage.Value == null)
  596. {
  597. string imagePath = filePath + "Field" + particles.Rows[i]["fieldid"].ToString() + ".bmp";
  598. FieldImage = new KeyValuePair<string, Bitmap>(particles.Rows[i]["fieldid"].ToString(), Particledata.ReadImageFile(imagePath));
  599. }
  600. Rectangle rectangle = new Rectangle() { X = Convert.ToInt32(particles.Rows[i]["RectLeft"]), Y = Convert.ToInt32(particles.Rows[i]["RectTop"]), Width = Convert.ToInt32(particles.Rows[i]["RectWidth"]), Height = Convert.ToInt32(particles.Rows[i]["RectHeight"]) };
  601. Bitmap bmap = Particledata.GetBitmapByParticle(FieldImage.Value, rectangle);
  602. bmap.Tag = new List<string>() { particles.Rows[i]["FieldId"].ToString(), particles.Rows[i]["ParticleId"].ToString(), particles.Rows[i]["TypeId"].ToString(), particles.Rows[i]["XrayId"].ToString() };
  603. dgV_ParticlesDevidePage.Rows[add_rowindex].Cells[k].Value = bmap;
  604. dgV_ParticlesDevidePage.Rows[add_rowindex].Height = bmap.Height + 20;
  605. }
  606. }
  607. if (enl.Current.Key == "DiameterRatio")
  608. {
  609. double d = Convert.ToDouble(particles.Rows[i]["DMAX"]) / Convert.ToDouble(particles.Rows[i]["DMIN"]);
  610. dgV_ParticlesDevidePage.Rows[add_rowindex].Cells[k].Value = Math.Round(d, 2);
  611. }
  612. if (en.Current.Key == "Element")
  613. {
  614. }
  615. if (enl.Current.Key == "ASPECT_ELONG")
  616. {
  617. double d = Convert.ToDouble(particles.Rows[i]["DELONG"]) / Convert.ToDouble(particles.Rows[i]["DMEAN"]);
  618. dgV_ParticlesDevidePage.Rows[add_rowindex].Cells[k].Value = Math.Round(d, 2);
  619. }
  620. if (particles.Columns.Contains(enl.Current.Key))
  621. {
  622. double num = 0;
  623. if (double.TryParse(particles.Rows[i][enl.Current.Key].ToString(), out num))
  624. {
  625. dgV_ParticlesDevidePage.Rows[add_rowindex].Cells[k].Value = Math.Round(num, 2);
  626. }
  627. else if (enl.Current.Key == "Element")
  628. {
  629. List<string> elementtemp = new List<string>(ElementTypeSort);
  630. string[] strcbo = particles.Rows[i][enl.Current.Key].ToString().Split(';');
  631. for (int j = 0; j < strcbo.Length; j++)
  632. {
  633. if (ElementTypeSort.Count == 0)
  634. {
  635. break;
  636. }
  637. string[] str = strcbo[j].Split('-');
  638. if (ElementTypeSort.Contains(str[0]))
  639. { dgV_ParticlesDevidePage.Rows[add_rowindex].Cells[str[0].ToString()].Value = Math.Round(double.Parse(str[1]), 2).ToString(); }
  640. elementtemp.Remove(str[0].ToString());
  641. }
  642. foreach (var ele in elementtemp)
  643. {
  644. dgV_ParticlesDevidePage.Rows[add_rowindex].Cells[ele].Value = "0";
  645. }
  646. }
  647. else
  648. {
  649. double val = 0;
  650. if (double.TryParse(Convert.ToString(particles.Rows[i][enl.Current.Key]), out val))
  651. {
  652. dgV_ParticlesDevidePage.Rows[add_rowindex].Cells[k].Value = val;
  653. }
  654. else
  655. {
  656. dgV_ParticlesDevidePage.Rows[add_rowindex].Cells[k].Value = particles.Rows[i][enl.Current.Key];
  657. }
  658. }
  659. }
  660. if (enl.Current.Key == "TypeName")
  661. {
  662. if (particles.Rows[i]["TypeId"].ToString() == "9")
  663. {
  664. dgV_ParticlesDevidePage.Rows[add_rowindex].Cells[k].Value = "Not Identified";
  665. }
  666. }
  667. if (enl.Current.Key == "Equivalent")
  668. {
  669. double dSize = Convert.ToDouble(particles.Rows[i]["Area"]);
  670. double Diameter = Math.Sqrt(dSize / Math.PI) * 2;
  671. dgV_ParticlesDevidePage.Rows[add_rowindex].Cells[k].Value = Math.Round(Diameter, 2);
  672. }
  673. if (enl.Current.Key == "Hardness")
  674. {
  675. string str = ChangeHardnessColor(particles.Rows[i]["Hardness"].ToString());
  676. {
  677. if (str == "#FF0000")
  678. {
  679. dgV_ParticlesDevidePage.Rows[add_rowindex].Cells[k].Style.ForeColor = Color.Red;
  680. }
  681. }
  682. }
  683. if (enl.Current.Key == "AbPosX")
  684. {
  685. Point point = CalculateParticleCenterPosition(result, new Point(Convert.ToInt32(particles.Rows[i]["SEMPosX"]), Convert.ToInt32(particles.Rows[i]["SEMPosY"])), new Point(Convert.ToInt32(particles.Rows[i]["PosX"]), Convert.ToInt32(particles.Rows[i]["PosY"])));
  686. dgV_ParticlesDevidePage.Rows[add_rowindex].Cells["AbPosX"].Value = point.X;
  687. dgV_ParticlesDevidePage.Rows[add_rowindex].Cells["AbPosY"].Value = point.Y;
  688. }
  689. }
  690. }
  691. }
  692. #region 加载进度条进度部份结束
  693. //加载完成设置鼠标为默认
  694. this.Cursor = Cursors.Default;
  695. string str8 = table["str8"].ToString();
  696. m_frm_userprogress.SetProgressValueAndText(100, str8);
  697. //加载完成,关闭进度条
  698. m_frm_userprogress.Close();
  699. #endregion
  700. dgV_ParticlesDevidePage.Visible = true;
  701. }
  702. /// <summary>
  703. /// 设置DataGridView样式
  704. /// </summary>
  705. private void SetDataGridViewStyle()
  706. {
  707. //用户不能调整标题的高度
  708. dgV_ParticlesDevidePage.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  709. //用户不能调整 行高
  710. dgV_ParticlesDevidePage.AllowUserToResizeRows = false;
  711. //点击选择整行
  712. dgV_ParticlesDevidePage.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
  713. //居中显示
  714. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  715. dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  716. dgV_ParticlesDevidePage.DefaultCellStyle = dataGridViewCellStyle1;
  717. dgV_ParticlesDevidePage.ColumnHeadersDefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;
  718. //再次重覆禁用拖动表头高度,居然有效果了
  719. dgV_ParticlesDevidePage.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  720. //设置grid可以复制
  721. dgV_ParticlesDevidePage.ClipboardCopyMode = DataGridViewClipboardCopyMode.EnableAlwaysIncludeHeaderText;
  722. //设置每列的宽度
  723. dgV_ParticlesDevidePage.Columns[0].Width = 40;//第一列序号的宽度设置一下吧,要不太丑
  724. dgV_ParticlesDevidePage.Columns[1].Width = 150;
  725. //设置序号列不排序
  726. dgV_ParticlesDevidePage.Columns[0].SortMode = DataGridViewColumnSortMode.NotSortable;
  727. dgV_ParticlesDevidePage.Columns[1].SortMode = DataGridViewColumnSortMode.NotSortable;
  728. //设置序号列不可以设置宽度
  729. dgV_ParticlesDevidePage.Columns[0].Resizable = DataGridViewTriState.False;
  730. dgV_ParticlesDevidePage.RowsDefaultCellStyle.BackColor = Color.Azure;
  731. }
  732. /// <summary>
  733. /// 计算颗粒中心的电镜坐标
  734. /// </summary>
  735. /// <param name="resultFile"></param>
  736. /// <param name="SEMPos"></param>
  737. /// <param name="ParticlePos"></param>
  738. /// <returns></returns>
  739. public static Point CalculateParticleCenterPosition(ResultFile resultFile, Point SEMPos, Point ParticlePos)
  740. {
  741. Point point = new Point();
  742. float ScanFieldSizeX = resultFile.GetScanFieldSizeX();
  743. string leftOrRight = resultFile.GetXAxisDir();
  744. string downOrUp = resultFile.GetYAxisDir();
  745. float ScanFieldSizeY = resultFile.GetScanFieldSizeY();
  746. float m_pixelSize = resultFile.GetPixelSize();
  747. if (leftOrRight == "RIGHT_TOWARD")
  748. {
  749. point.X = (int)(SEMPos.X - ScanFieldSizeX / 2 + ParticlePos.X * m_pixelSize);
  750. }
  751. else
  752. {
  753. point.X = (int)(SEMPos.X + ScanFieldSizeX / 2 - ParticlePos.X * m_pixelSize);
  754. }
  755. if (downOrUp == "UP_TOWARD")
  756. {
  757. point.Y = (int)(SEMPos.Y + ScanFieldSizeY / 2 - ParticlePos.Y * m_pixelSize);
  758. }
  759. else
  760. {
  761. point.Y = (int)(SEMPos.Y - ScanFieldSizeY / 2 + ParticlePos.Y * m_pixelSize);
  762. }
  763. return point;
  764. }
  765. #endregion
  766. #region 相关事件
  767. private void ToolStripMenuItem1_Click(object sender, EventArgs e)
  768. {
  769. //复制整个表
  770. CopyAll();
  771. }
  772. private void ToolStripMenuItem2_Click(object sender, EventArgs e)
  773. {
  774. //复制选择区域
  775. CopySelected();
  776. }
  777. /// <summary>
  778. /// 复制选择区域
  779. /// </summary>
  780. public void CopySelected()
  781. {
  782. //复制选择区域
  783. object oo = dgV_ParticlesDevidePage.GetClipboardContent();
  784. if (oo != null)
  785. Clipboard.SetDataObject(dgV_ParticlesDevidePage.GetClipboardContent());
  786. }
  787. /// <summary>
  788. /// 复制所有
  789. /// </summary>
  790. public void CopyAll()
  791. {
  792. dgV_ParticlesDevidePage.SelectAll();
  793. Clipboard.SetDataObject(dgV_ParticlesDevidePage.GetClipboardContent());
  794. }
  795. /// <summary>
  796. /// 以图像的方式将GridView进行截图
  797. /// </summary>
  798. public void CopyImage()
  799. {
  800. int height, width;
  801. width = dgV_ParticlesDevidePage.Columns.GetColumnsWidth(DataGridViewElementStates.Visible) + 2;
  802. height = this.Height;
  803. Bitmap image = new Bitmap(width, height);
  804. dgV_ParticlesDevidePage.DrawToBitmap(image, new Rectangle(0, 0, width, height));
  805. Clipboard.SetImage(image);
  806. }
  807. private void toolStripMenuItem4_Click(object sender, EventArgs e)
  808. {
  809. //对gridview进行截图
  810. CopyImage();
  811. }
  812. private void dgV_ParticlesDevidePage_SortCompare(object sender, DataGridViewSortCompareEventArgs e)
  813. {
  814. //排序中
  815. if (e.Column.Tag != null && e.Column.Tag.ToString() == "NumericType")
  816. {
  817. e.SortResult = double.Parse(e.CellValue1.ToString()).CompareTo(double.Parse(e.CellValue2.ToString()));
  818. e.Handled = true;
  819. }
  820. }
  821. #endregion
  822. #region 连接电镜相关
  823. /// <summary>
  824. /// 移动SEM到指定位置线程函数
  825. /// </summary>
  826. private void Thread_GO(object in_obj)
  827. {
  828. if (m_mythread_state == false)
  829. {
  830. m_mythread_state = true;
  831. Point sem_point = (Point)in_obj;
  832. //第一步,连接电镜
  833. m_OTSIncAReportGridsFun.Connection_ForParticlesGrid();
  834. Thread.Sleep(500);
  835. //第二步,移动到指定位置,先读取再设置
  836. if (m_OTSIncAReportGridsFun.m_SEMConnectionState == true)
  837. {
  838. m_OTSIncAReportGridsFun.MoveSemToPointXY_ForParticlesGrid(sem_point.X, sem_point.Y);
  839. }
  840. Thread.Sleep(1500);
  841. m_mythread_state = false;
  842. }
  843. }
  844. #endregion
  845. private void ToolStripMenuItem5_Click(object sender, EventArgs e)
  846. {
  847. /*注意:多数据源情况下,只获取第一个数据源的选择了多行的情况下,只获取最后一个选择行的,没有办法,这是为了符合李阳博士提出的要求*/
  848. //先获取鼠标所选择的行里的颗粒的FieldID和ParticleID
  849. string i_ls_fieldid = "";
  850. string i_ls_particleid = "";
  851. int cou = dgV_ParticlesDevidePage.SelectedRows.Count;
  852. if (cou > 0)
  853. {
  854. DataGridViewRow dgvr = dgV_ParticlesDevidePage.SelectedRows[cou - 1];
  855. Bitmap ls_bp = (Bitmap)dgvr.Cells[2].Value;
  856. List<string> list_str = (List<string>)ls_bp.Tag;
  857. if (list_str != null)
  858. {
  859. i_ls_fieldid = list_str[0];
  860. i_ls_particleid = list_str[1];
  861. }
  862. }
  863. ParticleData particleData = new ParticleData(result.FilePath);
  864. Particle particle = particleData.GetParticleByFidAndPid(i_ls_fieldid, i_ls_particleid);
  865. //取得Field的Position,然后执行线程移动SEM到当前Field的位置
  866. if (m_mythread == null)
  867. {
  868. return;
  869. }
  870. if (m_mythread.ThreadState == ThreadState.Running || m_mythread.ThreadState == ThreadState.WaitSleepJoin)
  871. {
  872. return;
  873. }
  874. if (m_mythread.ThreadState == ThreadState.Stopped)
  875. {
  876. m_mythread = new Thread(new ParameterizedThreadStart(Thread_GO));
  877. }
  878. Point point = CalculateParticleCenterPosition(result, new Point(particle.SEMPosX, particle.SEMPosY), new Point(particle.PosX, particle.PosY));
  879. //改为线程调用,先判断线程状态
  880. m_mythread.Start(point);
  881. }
  882. private void ToolStripMenuItem_exportimagefile_Click(object sender, EventArgs e)
  883. {
  884. FolderBrowserDialog fbd = new FolderBrowserDialog();
  885. if (fbd.ShowDialog() == DialogResult.OK)
  886. {
  887. m_imagefilepath = fbd.SelectedPath;
  888. for (int i = 0; i < dgV_ParticlesDevidePage.Rows.Count; i++)
  889. {
  890. Bitmap ls_bp = new Bitmap(1, 1);
  891. ls_bp = (Bitmap)dgV_ParticlesDevidePage.Rows[i].Cells[2].Value;
  892. ls_bp.Save(m_imagefilepath + "\\" + (i + 1).ToString() + ".jpg");
  893. }
  894. string str9 = table["str9"].ToString();
  895. MessageBox.Show(str9 + dgV_ParticlesDevidePage.Rows.Count.ToString());
  896. }
  897. }
  898. private void testToolStripMenuItem_Click(object sender, EventArgs e)
  899. {
  900. }
  901. /// <summary>
  902. /// 判断条件输入 前<后
  903. /// </summary>
  904. /// <param name="min"></param>
  905. /// <param name="max"></param>
  906. /// <returns></returns>
  907. bool CompareInput(string min, string max)
  908. {
  909. int imax = 0;
  910. int imin = 0;
  911. double dmax = 0;
  912. double dmin = 0;
  913. if (int.TryParse(max, out imax))
  914. {
  915. dmax = (double)imax;
  916. }
  917. else
  918. {
  919. dmax = Convert.ToDouble(max);
  920. }
  921. if (int.TryParse(min, out imin))
  922. {
  923. dmin = (double)imin;
  924. }
  925. else
  926. {
  927. dmin = Convert.ToDouble(min);
  928. }
  929. if (dmin <= dmax)
  930. {
  931. return true;
  932. }
  933. else
  934. {
  935. return false;
  936. }
  937. }
  938. private void btn_Sel_Click(object sender, EventArgs e)
  939. {
  940. condition = "";
  941. if (!string.IsNullOrWhiteSpace(tBx_AreaMin.Text))
  942. {
  943. double dnum = 0;
  944. int inum = 0;
  945. if (double.TryParse(tBx_AreaMin.Text, out dnum) && dnum >= 0)
  946. {
  947. condition += " and Area" + " > " + tBx_AreaMin.Text;
  948. }
  949. else if (int.TryParse(tBx_AreaMin.Text, out inum) && inum >= 0)
  950. {
  951. condition += " and Area" + " > " + tBx_AreaMin.Text;
  952. }
  953. else
  954. {
  955. MessageBox.Show(table["str10"].ToString());
  956. return;
  957. }
  958. }
  959. if (!string.IsNullOrWhiteSpace(Tbx_AreaMax.Text))
  960. {
  961. double dnum = 0;
  962. int inum = 0;
  963. if (double.TryParse(Tbx_AreaMax.Text, out dnum) && dnum >= 0)
  964. {
  965. condition += " and Area" + "<" + Tbx_AreaMax.Text;
  966. }
  967. else if (int.TryParse(Tbx_AreaMax.Text, out inum) && inum >= 0)
  968. {
  969. condition += " and Area" + "<" + Tbx_AreaMax.Text;
  970. }
  971. else
  972. {
  973. MessageBox.Show(table["str10"].ToString());
  974. return;
  975. }
  976. }
  977. if (!string.IsNullOrWhiteSpace(tBx_AreaMin.Text) && !string.IsNullOrWhiteSpace(Tbx_AreaMax.Text))
  978. {
  979. if (!CompareInput(tBx_AreaMin.Text, Tbx_AreaMax.Text))
  980. {
  981. MessageBox.Show(table["str11"].ToString());
  982. return;
  983. }
  984. }
  985. if (!string.IsNullOrWhiteSpace(tbx_DmaxMin.Text))
  986. {
  987. double dnum = 0;
  988. int inum = 0;
  989. if (double.TryParse(tbx_DmaxMin.Text, out dnum) && dnum >= 0)
  990. {
  991. condition += " and DMAX" + " > " + tbx_DmaxMin.Text;
  992. }
  993. else if (int.TryParse(tbx_DmaxMin.Text, out inum) && inum >= 0)
  994. {
  995. condition += " and DMAX" + " > " + tbx_DmaxMin.Text;
  996. }
  997. else
  998. {
  999. MessageBox.Show(table["str10"].ToString());
  1000. return;
  1001. }
  1002. }
  1003. if (!string.IsNullOrWhiteSpace(tbx_DmaxMax.Text))
  1004. {
  1005. double dnum = 0;
  1006. int inum = 0;
  1007. if (double.TryParse(tbx_DmaxMax.Text, out dnum) && dnum > 0)
  1008. {
  1009. condition += " and DMAX" + "<" + tbx_DmaxMax.Text;
  1010. }
  1011. else if (int.TryParse(tbx_DmaxMax.Text, out inum) && inum >= 0)
  1012. {
  1013. condition += " and DMAX" + "<" + tbx_DmaxMax.Text;
  1014. }
  1015. else
  1016. {
  1017. MessageBox.Show(table["str10"].ToString());
  1018. return;
  1019. }
  1020. }
  1021. if (!string.IsNullOrWhiteSpace(tB_FieldId.Text))
  1022. {
  1023. int inum = 0;
  1024. if (int.TryParse(tB_FieldId.Text, out inum))
  1025. {
  1026. condition += " and FieldId =" + tB_FieldId.Text;
  1027. }
  1028. else
  1029. {
  1030. MessageBox.Show(table["str10"].ToString());
  1031. return;
  1032. }
  1033. }
  1034. if (!string.IsNullOrWhiteSpace(tB_ParticleId.Text))
  1035. {
  1036. int inum = 0;
  1037. if (int.TryParse(tB_ParticleId.Text, out inum))
  1038. {
  1039. condition += " and ParticleId =" + tB_ParticleId.Text;
  1040. }
  1041. else
  1042. {
  1043. MessageBox.Show(table["str10"].ToString());
  1044. return;
  1045. }
  1046. }
  1047. if (!string.IsNullOrWhiteSpace(tbx_DmaxMin.Text) && !string.IsNullOrWhiteSpace(tbx_DmaxMax.Text))
  1048. {
  1049. if (!CompareInput(tbx_DmaxMin.Text, tbx_DmaxMax.Text))
  1050. {
  1051. MessageBox.Show(table["str11"].ToString());
  1052. return;
  1053. }
  1054. }
  1055. if (!string.IsNullOrWhiteSpace(tbx_DferretMin.Text))
  1056. {
  1057. double dnum = 0;
  1058. int inum = 0;
  1059. if (double.TryParse(tbx_DferretMin.Text, out dnum) && dnum >= 0)
  1060. {
  1061. condition += " and DFERET" + ">" + tbx_DferretMin.Text;
  1062. }
  1063. else if (int.TryParse(Tbx_AreaMax.Text, out inum) && inum >= 0)
  1064. {
  1065. condition += " and DFERET" + ">" + tbx_DferretMin.Text;
  1066. }
  1067. else
  1068. {
  1069. MessageBox.Show(table["str10"].ToString());
  1070. return;
  1071. }
  1072. }
  1073. if (!string.IsNullOrWhiteSpace(tbx_DferretMax.Text))
  1074. {
  1075. double dnum = 0;
  1076. int inum = 0;
  1077. if (double.TryParse(tbx_DferretMax.Text, out dnum) && dnum >= 0)
  1078. {
  1079. condition += " and DFERET" + "<" + tbx_DferretMax.Text;
  1080. }
  1081. else if (int.TryParse(tbx_DferretMax.Text, out inum) && inum >= 0)
  1082. {
  1083. condition += " and DFERET" + "<" + tbx_DferretMax.Text;
  1084. }
  1085. else
  1086. {
  1087. MessageBox.Show(table["str10"].ToString());
  1088. return;
  1089. }
  1090. }
  1091. if (!string.IsNullOrWhiteSpace(tbx_DferretMin.Text) && !string.IsNullOrWhiteSpace(tbx_DferretMax.Text))
  1092. {
  1093. if (!CompareInput(tbx_DferretMin.Text, tbx_DferretMax.Text))
  1094. {
  1095. MessageBox.Show(table["str11"].ToString());
  1096. return;
  1097. }
  1098. }
  1099. if (!string.IsNullOrWhiteSpace(tbx_ECDMin.Text))
  1100. {
  1101. double dnum = 0;
  1102. int inum = 0;
  1103. if (double.TryParse(tbx_ECDMin.Text, out dnum) && dnum >= 0)
  1104. {
  1105. double area = Math.PI * dnum / 2 * dnum / 2;
  1106. condition += " and Area" + ">" + area.ToString();
  1107. }
  1108. else if (int.TryParse(tbx_ECDMin.Text, out inum) && inum >= 0)
  1109. {
  1110. double area = Math.PI * dnum / 2 * dnum / 2;
  1111. condition += " and Area" + ">" + area.ToString();
  1112. }
  1113. else
  1114. {
  1115. MessageBox.Show(table["str10"].ToString());
  1116. return;
  1117. }
  1118. }
  1119. if (!string.IsNullOrWhiteSpace(tbx_ECDMax.Text))
  1120. {
  1121. double dnum = 0; int inum = 0;
  1122. if (double.TryParse(tbx_ECDMax.Text, out dnum) && dnum >= 0)
  1123. {
  1124. double area = Math.PI * dnum / 2 * dnum / 2;
  1125. condition += " and Area" + "<" + area.ToString();
  1126. }
  1127. else if (int.TryParse(tbx_ECDMax.Text, out inum) && inum >= 0)
  1128. {
  1129. double area = Math.PI * dnum / 2 * dnum / 2;
  1130. condition += " and Area" + "<" + area.ToString();
  1131. }
  1132. else
  1133. {
  1134. MessageBox.Show(table["str10"].ToString());
  1135. return;
  1136. }
  1137. }
  1138. if (!string.IsNullOrWhiteSpace(tbx_ECDMin.Text) && !string.IsNullOrWhiteSpace(tbx_ECDMax.Text))
  1139. {
  1140. if (!CompareInput(tbx_ECDMin.Text, tbx_ECDMax.Text))
  1141. {
  1142. MessageBox.Show(table["str11"].ToString());
  1143. return;
  1144. }
  1145. }
  1146. if (!string.IsNullOrWhiteSpace(tbx_Type.Text))
  1147. {
  1148. string[] tr = tbx_Type.Text.Split('$');
  1149. condition += " and (";
  1150. for (int i = 0; i < tr.Length; i++)
  1151. {
  1152. if (i == 0)
  1153. {
  1154. condition += " TypeName = '" + tr[i] + "'";
  1155. }
  1156. else
  1157. {
  1158. condition += " or TypeName = '" + tr[i] + "'";
  1159. }
  1160. }
  1161. condition += ")";
  1162. }
  1163. if (m_frm_userprogress.IsDisposed)
  1164. {
  1165. ProgressStart();
  1166. }
  1167. UpdateTable();
  1168. lnkFirst_Click(null, null);
  1169. SetDataGridViewStyle();
  1170. }
  1171. void ProgressStart()
  1172. {
  1173. #region 加载显示进度条部份
  1174. this.Cursor = Cursors.WaitCursor;
  1175. m_frm_userprogress = new Frm_UserProgress();
  1176. Form ls_main_form = this.ParentForm.ParentForm;//取出父窗体
  1177. if (ls_main_form == null)
  1178. {
  1179. m_frm_userprogress.Visible = false;
  1180. }
  1181. else
  1182. {
  1183. m_frm_userprogress.Width = (int)(MyPrimaryScreen.DESKTOP.Width / MyPrimaryScreen.ScaleX * 0.9);
  1184. m_frm_userprogress.Location = new Point(ls_main_form.Location.X + 80, ls_main_form.Location.Y + (int)(MyPrimaryScreen.DESKTOP.Height / MyPrimaryScreen.ScaleX) / 2);
  1185. m_frm_userprogress.Show();
  1186. m_frm_userprogress.SetProgressValueAndText(0, "Loading data of particles...");
  1187. }
  1188. #endregion
  1189. }
  1190. /// <summary>
  1191. /// 页面控件呈现
  1192. /// </summary>
  1193. private void DrawControl(bool callEvent)
  1194. {
  1195. BindDataGridView();
  1196. lblTotalCount.Text = RecordCount.ToString();
  1197. lblPageCount.Text = PageCount.ToString();
  1198. txtPageNum.Text = PageIndex.ToString();
  1199. SetFormCtrEnabled();
  1200. if (PageCount == 0 || PageCount == 1)//有且仅有一页
  1201. {
  1202. lnkFirst.Enabled = false;
  1203. lnkPrev.Enabled = false;
  1204. lnkNext.Enabled = false;
  1205. lnkLast.Enabled = false;
  1206. btnGo.Enabled = false;
  1207. }
  1208. else if (PageIndex == 1)//第一页
  1209. {
  1210. lnkFirst.Enabled = false;
  1211. lnkPrev.Enabled = false;
  1212. }
  1213. else if (PageIndex == PageCount)//最后一页
  1214. {
  1215. lnkNext.Enabled = false;
  1216. lnkLast.Enabled = false;
  1217. }
  1218. }
  1219. private void SetFormCtrEnabled()
  1220. {
  1221. lnkFirst.Enabled = true;
  1222. lnkPrev.Enabled = true;
  1223. lnkNext.Enabled = true;
  1224. lnkLast.Enabled = true;
  1225. btnGo.Enabled = true;
  1226. }
  1227. /// <summary>
  1228. /// 分页属性改变了。
  1229. /// </summary>
  1230. private void txtPageSize_TextChanged(object sender, EventArgs e)
  1231. {
  1232. int num = 0;
  1233. if (int.TryParse(txtPageNum.Text.Trim(), out num) && num > 0)
  1234. {
  1235. }
  1236. else { txtPageNum.Text = "1"; }
  1237. }
  1238. private void lnkFirst_Click(object sender, EventArgs e)
  1239. {
  1240. PageIndex = 1;
  1241. DrawControl(true);
  1242. }
  1243. private void lnkPrev_Click(object sender, EventArgs e)
  1244. {
  1245. PageIndex = Math.Max(1, PageIndex - 1);
  1246. DrawControl(true);
  1247. }
  1248. private void lnkNext_Click(object sender, EventArgs e)
  1249. {
  1250. PageIndex = Math.Min(PageCount, PageIndex + 1);
  1251. DrawControl(true);
  1252. }
  1253. private void lnkLast_Click(object sender, EventArgs e)
  1254. {
  1255. PageIndex = PageCount;
  1256. DrawControl(true);
  1257. }
  1258. /// <summary>
  1259. /// 跳转
  1260. /// </summary>
  1261. /// <param name="sender"></param>
  1262. /// <param name="e"></param>
  1263. private void btnGo_Click(object sender, EventArgs e)
  1264. {
  1265. int num = 0;
  1266. if (int.TryParse(txtPageNum.Text.Trim(), out num) && num > 0)
  1267. {
  1268. if (num > PageCount)
  1269. {
  1270. num = PageCount;
  1271. txtPageNum.Text = PageCount.ToString();
  1272. }
  1273. PageIndex = num;
  1274. DrawControl(true);
  1275. }
  1276. }
  1277. private void cbB_PageSize_SelectedIndexChanged(object sender, EventArgs e)
  1278. {
  1279. DisplayData();
  1280. }
  1281. private void EXCELToolStripMenuItem_Click(object sender, EventArgs e)
  1282. {
  1283. OTSIncAReportApp._1_UI.Control_Grids.SpectrumExportConfirmation sfd = new OTSIncAReportApp._1_UI.Control_Grids.SpectrumExportConfirmation();
  1284. if (sfd.ShowDialog() == DialogResult.OK)
  1285. {
  1286. Cursor = Cursors.WaitCursor;
  1287. if (m_frm_userprogress.IsDisposed)
  1288. {
  1289. ProgressStart();
  1290. }
  1291. IWorkbook workbook = new NPOI.XSSF.UserModel.XSSFWorkbook(); //用于创建.xlsx office2007开始以后的
  1292. ISheet sheet;
  1293. FileStream fs = File.Create(sfd.FileName);
  1294. fs.Close();
  1295. sheet = workbook.CreateSheet("Particles");//创建工作表
  1296. ICellStyle cellStyle = workbook.CreateCellStyle();
  1297. cellStyle.Alignment = NPOI.SS.UserModel.HorizontalAlignment.Center;
  1298. cellStyle.VerticalAlignment = VerticalAlignment.Center;
  1299. //设置上4边
  1300. cellStyle.BorderBottom = NPOI.SS.UserModel.BorderStyle.Thin;
  1301. cellStyle.BorderTop = NPOI.SS.UserModel.BorderStyle.Thin;
  1302. cellStyle.BorderLeft = NPOI.SS.UserModel.BorderStyle.Thin;
  1303. cellStyle.BorderRight = NPOI.SS.UserModel.BorderStyle.Thin;
  1304. //设置字符大小和颜色
  1305. IFont font = workbook.CreateFont();
  1306. font.FontName = "黑体";
  1307. font.FontHeightInPoints = 10;
  1308. cellStyle.SetFont(font);
  1309. //设置颗粒名列宽
  1310. sheet.SetColumnWidth(1, 30 * 256);//夹杂物名列宽
  1311. sheet.SetColumnWidth(2, 7 * 256);//图像列宽
  1312. IRow row;
  1313. ICell cell;
  1314. //插入表头
  1315. row = sheet.CreateRow(1);//从第15行添加一行
  1316. IDrawing patriarch;
  1317. patriarch = sheet.CreateDrawingPatriarch();
  1318. row.Height = 30 * 20;
  1319. for (int i_cell = 0; i_cell < dgV_ParticlesDevidePage.Columns.Count; i_cell++)
  1320. {
  1321. cell = row.CreateCell(i_cell);
  1322. cell.CellStyle = cellStyle;
  1323. cell.SetCellValue(dgV_ParticlesDevidePage.Columns[i_cell].HeaderText);
  1324. }
  1325. m_frm_userprogress.SetProgressValueAndText(0, "export:" + "0" + "/total:" + dgV_ParticlesDevidePage.Rows.Count);
  1326. IClientAnchor anchor;
  1327. int pictureIdx;
  1328. Bitmap bp;
  1329. byte[] bytes;
  1330. IPicture pict;
  1331. //插入表内容
  1332. for (int i_row = 0; i_row < dgV_ParticlesDevidePage.Rows.Count; i_row++)
  1333. {
  1334. if (dgV_ParticlesDevidePage.Rows.Count > 100)
  1335. {
  1336. if (i_row % (dgV_ParticlesDevidePage.Rows.Count / 100) == 0)
  1337. m_frm_userprogress.SetProgressValueAndText(i_row * 100 / dgV_ParticlesDevidePage.Rows.Count, "export:" + i_row + "/total:" + dgV_ParticlesDevidePage.Rows.Count);
  1338. }
  1339. row = sheet.CreateRow(2 + i_row);
  1340. row.Height = 45 * 20;
  1341. for (int i_cell = 0; i_cell < dgV_ParticlesDevidePage.Columns.Count; i_cell++)
  1342. {
  1343. cell = row.CreateCell(i_cell);
  1344. cell.CellStyle = cellStyle;
  1345. if (dgV_ParticlesDevidePage[i_cell, i_row].Value == null)
  1346. continue;
  1347. if (i_cell == 2)
  1348. {
  1349. if (sfd.IfExportPicture)
  1350. {
  1351. //颗粒图像列
  1352. bp = (Bitmap)dgV_ParticlesDevidePage.Rows[i_row].Cells[2].Value;
  1353. bytes = ImageConvertToBytes(bp);
  1354. //第二步,将图片添加到workbook中,指定图片的格式,返回图片所在workbook->paicture数组中的索引的地址,从1开始
  1355. pictureIdx = workbook.AddPicture(bytes, PictureType.JPEG);
  1356. //第三步,在sheet中创建画布
  1357. //第四步,设置锚点,(在起始单元格的X坐标0-1023,Y的坐标0-255,在终止单元格的X坐标0-1023,Y的坐标0-255,起始单元格行数,列数,终止单元格行数,列数)
  1358. anchor = patriarch.CreateAnchor(1, 1, 2, 2, i_cell, i_row + 2, i_cell + 1, i_row + 3);//终止比开始位置大1,会自动缩放到一个单元格内的
  1359. //第五步,创建图片
  1360. pict = patriarch.CreatePicture(anchor, pictureIdx);
  1361. }
  1362. }
  1363. else
  1364. {
  1365. //非图像列
  1366. double dval = 0;
  1367. if(double.TryParse(dgV_ParticlesDevidePage[i_cell, i_row].Value.ToString(), out dval))
  1368. {
  1369. cell.SetCellType(CellType.Numeric);
  1370. cell.SetCellValue(dval);
  1371. }
  1372. else
  1373. cell.SetCellValue(dgV_ParticlesDevidePage[i_cell, i_row].Value.ToString());
  1374. }
  1375. }
  1376. }
  1377. if (sfd.IfExportSpectrumData)
  1378. {
  1379. ISheet sheet2;
  1380. sheet2 = workbook.CreateSheet("Peak spectrum Data");//创建工作表
  1381. //插入表头
  1382. row = sheet2.CreateRow(1);
  1383. row.Height = 30 * 20;
  1384. cell = row.CreateCell(0);
  1385. cell.CellStyle = cellStyle;
  1386. cell.SetCellValue("rowid");
  1387. for (int i_cell = 1; i_cell < 2001; i_cell++)
  1388. {
  1389. cell = row.CreateCell(i_cell);
  1390. cell.CellStyle = cellStyle;
  1391. if (i_cell == 1)
  1392. {
  1393. cell.SetCellValue("PeakSpectrumData");
  1394. }
  1395. }
  1396. sheet2.AddMergedRegion(new NPOI.SS.Util.CellRangeAddress(1, 1, 1, 2000));
  1397. for (int j = 0; j < particles.Rows.Count; j++)
  1398. {
  1399. row = sheet2.CreateRow(2 + j);
  1400. cell = row.CreateCell(0);
  1401. cell.CellStyle = cellStyle;
  1402. cell.SetCellValue(j + 1);
  1403. var tmpPart = Particledata.GetParticleXrayDataByFidAndPid(particles.Rows[j]["fieldid"].ToString(), particles.Rows[j]["particleid"].ToString());
  1404. if (tmpPart != null)
  1405. {
  1406. if (tmpPart.XrayId > -1)
  1407. {
  1408. uint[] Analysis_xray = new uint[2000];
  1409. for (int i = 0; i < 2000; i++)
  1410. {
  1411. Analysis_xray[i] = BitConverter.ToUInt32(tmpPart.XRayData, i * 4);
  1412. cell = row.CreateCell(i + 1);
  1413. cell.CellStyle = cellStyle;
  1414. cell.SetCellValue(Analysis_xray[i]);
  1415. }
  1416. }
  1417. }
  1418. }
  1419. }
  1420. if (sfd.IfExportSpectrumConfirmation)
  1421. {
  1422. ISheet sheet3;
  1423. sheet3 = workbook.CreateSheet("Peak spectrum");
  1424. sheet3.SetColumnWidth(1, 200 * 256);//图像列宽
  1425. //插入表头
  1426. row = sheet3.CreateRow(1);
  1427. row.Height = 30 * 20;
  1428. cell = row.CreateCell(0);
  1429. cell.CellStyle = cellStyle;
  1430. cell.SetCellValue("rowid");
  1431. cell = row.CreateCell(1);
  1432. cell.CellStyle = cellStyle;
  1433. cell.SetCellValue("PeakSpectrum");
  1434. IDrawing drawing;
  1435. IClientAnchor anchor3;
  1436. for (int j = 0; j < particles.Rows.Count; j++)
  1437. {
  1438. row = sheet3.CreateRow(j + 2);
  1439. row.Height = 120 * 20;
  1440. cell = row.CreateCell(0);
  1441. cell.CellStyle = cellStyle;
  1442. cell.SetCellValue(j + 1);
  1443. cell = row.CreateCell(1);
  1444. cell = row.CreateCell(2);
  1445. cell = row.CreateCell(3);
  1446. drawing = sheet3.CreateDrawingPatriarch();
  1447. //锚点
  1448. anchor3 = drawing.CreateAnchor(0, 0, 0, 0, 1, j + 2, 2, j + 3);//XSSFClientAnchor(dx1,dy1,dx2,dy2,col1,row1,col2,row2);参数说明:dx1 dy1 起始单元格中的x,y坐标.dx2 dy2 结束单元格中的x,y坐标col1, row1 指定起始的单元格,下标从0开始col2, row2 指定结束的单元格,下标从0开始
  1449. CreateChart(drawing, sheet3, anchor3, j + 2);
  1450. }
  1451. }
  1452. //完成后,对Excel进行保存
  1453. FileStream file = new FileStream(sfd.FileName, FileMode.Create);
  1454. workbook.Write(file);
  1455. file.Close();
  1456. m_frm_userprogress.SetProgressValueAndText(100, "export:" + dgV_ParticlesDevidePage.Rows.Count + "/total:" + dgV_ParticlesDevidePage.Rows.Count);
  1457. //加载完成,关闭进度条
  1458. m_frm_userprogress.Close();
  1459. Cursor = Cursors.Default;
  1460. //导出完成后,打开Excel文件
  1461. if (File.Exists(sfd.FileName))
  1462. {
  1463. //打开刚才导出的文件
  1464. System.Diagnostics.Process.Start(sfd.FileName);
  1465. }
  1466. }
  1467. }
  1468. /// <summary>
  1469. /// 读取标准库的ClassifySTD表
  1470. /// </summary>
  1471. /// <param name="a_address"></param>
  1472. /// <returns></returns>
  1473. private DataTable ReadClassification(string a_address ,string STDName)
  1474. {
  1475. DataTable dt_STDGroups = new DataTable();
  1476. DataTable dt_ClassifySTD = new DataTable();
  1477. DataTable dt_IncAData = new DataTable();
  1478. var systype = m_ReportApp.m_RptConfigFile.Systype;
  1479. if (systype == OTS_SysType_ID.IncA)
  1480. {
  1481. dt_ClassifySTD.Columns.Add("STDId");
  1482. dt_ClassifySTD.Columns.Add("StrName");
  1483. dt_ClassifySTD.Columns.Add("Color");
  1484. dt_ClassifySTD.Columns.Add("KeyElementList");
  1485. dt_ClassifySTD.Columns.Add("SubElementList");
  1486. dt_ClassifySTD.Columns.Add("UsingImgPropertyList");
  1487. dt_ClassifySTD.Columns.Add("UsingOtherPropertyList");
  1488. dt_ClassifySTD.Columns.Add("Expression");
  1489. dt_ClassifySTD.Columns.Add("Hardness");
  1490. dt_ClassifySTD.Columns.Add("Density");
  1491. dt_ClassifySTD.Columns.Add("Electrical_conductivity");
  1492. dt_ClassifySTD.Columns.Add("BSE");
  1493. dt_ClassifySTD.Columns.Add("Formula");
  1494. dt_ClassifySTD.Columns.Add("Element");
  1495. dt_ClassifySTD.Columns.Add("IfElementAnalysis");
  1496. dt_ClassifySTD.Columns.Add("ListNum");
  1497. dt_ClassifySTD.Columns.Add("GroupId");
  1498. dt_ClassifySTD.Columns.Add("GroupName");
  1499. dt_ClassifySTD.Columns.Add("GroupColor");
  1500. DataTable da = Particledata.GetParticleListForParticlSizeID("area", "");
  1501. for (int i = 0; i < da.Rows.Count; i++)
  1502. {
  1503. if (Convert.ToInt64(da.Rows[i]["TypeId"]) > 9)
  1504. {
  1505. DataRow newRow = dt_ClassifySTD.NewRow();
  1506. newRow["STDId"] = da.Rows[i]["TypeId"];
  1507. newRow["StrName"] = da.Rows[i]["TypeName"];
  1508. newRow["Color"] = da.Rows[i]["TypeColor"];
  1509. newRow["GroupId"] = da.Rows[i]["GroupId"];
  1510. newRow["GroupName"] = da.Rows[i]["GroupName"];
  1511. newRow["GroupColor"] = da.Rows[i]["GroupColor"];
  1512. dt_ClassifySTD.Rows.Add(newRow);
  1513. }
  1514. }
  1515. }
  1516. else
  1517. {
  1518. SqLiteHelper sh_STDGroups = new SqLiteHelper("data source='" + a_address + "\\" + STDName + ".db" + "'");
  1519. dt_STDGroups = sh_STDGroups.ExecuteQuery("select * from STDGroups");
  1520. SqLiteHelper sh_ClassifySTD = new SqLiteHelper("data source='" + a_address + "\\" + STDName + ".db" + "'");
  1521. dt_ClassifySTD = sh_ClassifySTD.ExecuteQuery("select * from ClassifySTD");
  1522. dt_ClassifySTD.Columns.Add("GroupName");
  1523. dt_ClassifySTD.Columns.Add("GroupColor");
  1524. for (int i = 0; i < dt_ClassifySTD.Rows.Count; i++)
  1525. {
  1526. for (int a = 0; a < dt_STDGroups.Rows.Count; a++)
  1527. {
  1528. if (dt_ClassifySTD.Rows[i]["GroupId"].ToString() == dt_STDGroups.Rows[a]["id"].ToString())
  1529. {
  1530. dt_ClassifySTD.Rows[i]["GroupName"] = dt_STDGroups.Rows[a]["name"].ToString();
  1531. dt_ClassifySTD.Rows[i]["GroupColor"] = dt_STDGroups.Rows[a]["color"].ToString();
  1532. continue;
  1533. }
  1534. }
  1535. }
  1536. SqLiteHelper sh_Inclusion = new SqLiteHelper("data source='" + a_address + "\\FIELD_FILES\\Inclusion.db" + "'");
  1537. dt_IncAData = sh_Inclusion.ExecuteQuery("select * from IncAData");
  1538. for (int i = 0; i < dt_IncAData.Rows.Count; i++)
  1539. {
  1540. if (Convert.ToInt64(dt_IncAData.Rows[i]["TypeId"]) > 50000)
  1541. {
  1542. DataRow newRow = dt_ClassifySTD.NewRow();
  1543. newRow["STDId"] = dt_IncAData.Rows[i]["TypeId"];
  1544. newRow["StrName"] = dt_IncAData.Rows[i]["TypeName"];
  1545. newRow["Color"] = dt_IncAData.Rows[i]["TypeColor"];
  1546. newRow["GroupId"] = dt_IncAData.Rows[i]["GroupId"];
  1547. newRow["GroupName"] = dt_IncAData.Rows[i]["GroupName"];
  1548. newRow["GroupColor"] = dt_IncAData.Rows[i]["GroupColor"];
  1549. dt_ClassifySTD.Rows.Add(newRow);
  1550. }
  1551. }
  1552. }
  1553. return dt_ClassifySTD;
  1554. }
  1555. private void ToolStripMenuItem3_Click(object sender, EventArgs e)
  1556. {
  1557. //如果没有选中颗粒退出
  1558. if (dgV_ParticlesDevidePage.SelectedRows.Count == 0)
  1559. {
  1560. return;
  1561. }
  1562. string CategoryName = "";
  1563. //循环选中颗粒
  1564. for (int i = 0; i < dgV_ParticlesDevidePage.SelectedRows.Count; i++)
  1565. {
  1566. DataGridViewRow dgvr = dgV_ParticlesDevidePage.SelectedRows[i];
  1567. CategoryName = dgvr.Cells[1].Value.ToString();
  1568. }
  1569. string TypeId = "";
  1570. string TypeName = "";
  1571. string TypeColor = "";
  1572. string GroupName = "";
  1573. string GroupID = "";
  1574. string GroupColor = "";
  1575. string[] resulta = result.GetSTDName().Split('.');
  1576. DataTable data = ReadClassification(result.FilePath, resulta[0]);
  1577. ModifyCategoryForm modifyCategoryForm = new ModifyCategoryForm(data, CategoryName);
  1578. DialogResult result1 = modifyCategoryForm.ShowDialog();
  1579. if (modifyCategoryForm.DoYouWantToModifyIt)
  1580. {
  1581. TypeId = modifyCategoryForm.OutTypeAndName[0];
  1582. TypeName = modifyCategoryForm.OutTypeAndName[1];
  1583. TypeColor = modifyCategoryForm.OutTypeAndName[2];
  1584. GroupName = modifyCategoryForm.OutTypeAndName[3];
  1585. GroupID = modifyCategoryForm.OutTypeAndName[4];
  1586. GroupColor= modifyCategoryForm.OutTypeAndName[5];
  1587. List<string> strings = new List<string>();
  1588. strings.Add(TypeId);
  1589. strings.Add(TypeName);
  1590. strings.Add(TypeColor);
  1591. strings.Add(GroupName);
  1592. strings.Add(GroupID);
  1593. strings.Add(GroupColor);
  1594. DialogResult result2 = MessageBox.Show("是否寻找相似颗粒并重命名?", "Tip", MessageBoxButtons.YesNo);
  1595. if (result2 == DialogResult.Yes)
  1596. {
  1597. int sel = m_ReportApp.m_conditionChoose.m_conditionData.GetComboDownListIndexByItemName(OTSIncAReportApp.OTSSampleReportInfo.OTS_REPORT_PROP_GRID_ITEMS.PARTICE_LIST);
  1598. if (sel == (int)SelItem.MergeParticles)
  1599. {
  1600. return;
  1601. }
  1602. var SelectRows = dgV_ParticlesDevidePage.SelectedRows;
  1603. uint[] Search_xray = new uint[2000];
  1604. int classifyid = -1;
  1605. if (SelectRows.Count != 0)
  1606. {
  1607. if (SelectRows.Count == 1)
  1608. {
  1609. DataGridViewRow dgvr = SelectRows[0];
  1610. Bitmap ls_bp = (Bitmap)dgvr.Cells[2].Value;
  1611. List<string> list_str = (List<string>)ls_bp.Tag;
  1612. classifyid = Convert.ToInt32(list_str[2]);
  1613. uint[] Analysis_xray = new uint[2000];
  1614. int i_xray_id = 0;
  1615. List<Element> list_celementchemistryclr = new List<Element>();
  1616. ReportFun.GetXrayByParticleTagIDAndFieldID_ForDrawDistrbutionImageAndBSE(Convert.ToInt32(dgvr.Cells["particleId"].Value), Convert.ToInt32(dgvr.Cells["fieldid"].Value), out Search_xray, out Analysis_xray, out i_xray_id, out list_celementchemistryclr);
  1617. }
  1618. }
  1619. ListOfSimilarParticles Form_listOfSimilarParticles = new ListOfSimilarParticles(this, Search_xray, classifyid,strings, m_ReportApp);
  1620. DialogResult result3=Form_listOfSimilarParticles.ShowDialog();
  1621. if(result3== DialogResult.OK)
  1622. {
  1623. }
  1624. else
  1625. {
  1626. List<KeyValuePair<string, SQLiteParameter[]>> cmdlist = new List<KeyValuePair<string, SQLiteParameter[]>>();
  1627. for (int i = 0; i < dgV_ParticlesDevidePage.SelectedRows.Count; i++)
  1628. {
  1629. DataGridViewRow dgvr = dgV_ParticlesDevidePage.SelectedRows[i];
  1630. dgvr.Cells[1].Value = TypeName;
  1631. Bitmap ls_bp = (Bitmap)dgvr.Cells[2].Value;
  1632. List<string> list_str = (List<string>)ls_bp.Tag;
  1633. int i_ls_fieldid = Convert.ToInt32(list_str[0]);
  1634. int i_ls_particleid = Convert.ToInt32(list_str[1]);
  1635. List<int> ints = new List<int>();
  1636. ints.Add(i_ls_fieldid);
  1637. ints.Add(i_ls_particleid);
  1638. var cmd = Particledata.GetUpdataAIncACmd(ints, strings);
  1639. cmdlist.Add(cmd);
  1640. }
  1641. Particledata.ExecuteNonQueryBatch(cmdlist);
  1642. }
  1643. }
  1644. else
  1645. {
  1646. List<KeyValuePair<string, SQLiteParameter[]>> cmdlist = new List<KeyValuePair<string, SQLiteParameter[]>>();
  1647. for (int i = 0; i < dgV_ParticlesDevidePage.SelectedRows.Count; i++)
  1648. {
  1649. DataGridViewRow dgvr = dgV_ParticlesDevidePage.SelectedRows[i];
  1650. dgvr.Cells[1].Value = TypeName;
  1651. Bitmap ls_bp = (Bitmap)dgvr.Cells[2].Value;
  1652. List<string> list_str = (List<string>)ls_bp.Tag;
  1653. int i_ls_fieldid = Convert.ToInt32(list_str[0]);
  1654. int i_ls_particleid = Convert.ToInt32(list_str[1]);
  1655. List<int> ints = new List<int>();
  1656. ints.Add(i_ls_fieldid);
  1657. ints.Add(i_ls_particleid);
  1658. var cmd = Particledata.GetUpdataAIncACmd(ints, strings);
  1659. cmdlist.Add(cmd);
  1660. }
  1661. Particledata.ExecuteNonQueryBatch(cmdlist);
  1662. }
  1663. UpdateTable();
  1664. lnkFirst_Click(null, null);
  1665. SetDataGridViewStyle();
  1666. DataTable table = GetClassificationOfAllParticles();
  1667. if (table != null)
  1668. {
  1669. if (table.Rows.Count > 0)
  1670. {
  1671. foreach (DataRow row in table.Rows)
  1672. {
  1673. tbx_Type.Text += row["TypeName"].ToString() + '$';
  1674. }
  1675. }
  1676. if (tbx_Type.Text != "")
  1677. {
  1678. tbx_Type.Text = tbx_Type.Text.Remove(tbx_Type.Text.Length - 1);
  1679. }
  1680. }
  1681. dgV_ParticlesDevidePage.Focus();
  1682. }
  1683. }
  1684. void CreateChart(IDrawing drawing, ISheet sheet, IClientAnchor anchor, int rowid)
  1685. {
  1686. var chart = drawing.CreateChart(anchor) as XSSFChart;
  1687. //图表
  1688. var data = chart.ChartDataFactory.CreateLineChartData<double, double>(); //折线图
  1689. IChartAxis bottomAxis = chart.ChartAxisFactory.CreateCategoryAxis(AxisPosition.Bottom);
  1690. IValueAxis leftAxis = chart.ChartAxisFactory.CreateValueAxis(AxisPosition.Left);
  1691. leftAxis.Crosses = AxisCrosses.AutoZero;
  1692. leftAxis.IsVisible = true;
  1693. bottomAxis.IsVisible = true;
  1694. //数据源
  1695. IChartDataSource<double> ys = DataSources.FromNumericCellRange(sheet, new CellRangeAddress(rowid, rowid, 1, 2001));
  1696. Double[] doubles = new Double[2000];
  1697. for (int i = 0; i < 2000; i++)
  1698. {
  1699. doubles[i] = i;
  1700. }
  1701. IChartDataSource<double> xs = DataSources.FromArray(doubles);
  1702. //数据系列
  1703. var s1 = data.AddSeries(xs, ys);
  1704. }
  1705. /// <summary>
  1706. /// 将image转成bytes
  1707. /// </summary>
  1708. /// <param name="in_img"></param>
  1709. /// <returns></returns>
  1710. public byte[] ImageConvertToBytes(System.Drawing.Image in_img)
  1711. {
  1712. MemoryStream ms = new MemoryStream();
  1713. in_img.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);
  1714. return ms.ToArray();
  1715. }
  1716. private void ToolStripMenuItem_Delete_Particle_Click(object sender, EventArgs e)
  1717. {
  1718. string path = result.FilePath;
  1719. ParticleData fielddata = new ParticleData(result.FilePath);
  1720. List<Particle> particles = fielddata.GetParticleAllList();
  1721. DialogResult dr = MessageBox.Show("Remove all these particles permanently?", "Tips", MessageBoxButtons.OKCancel, MessageBoxIcon.Question);
  1722. if (dr == DialogResult.OK)
  1723. {
  1724. List<Particle> list_Part = new List<Particle>();
  1725. for (int ii = 0; ii < dgV_ParticlesDevidePage.SelectedRows.Count; ii++)
  1726. {
  1727. DataGridViewRow dgvr = dgV_ParticlesDevidePage.SelectedRows[ii];
  1728. Bitmap ls_bp = (Bitmap)dgvr.Cells[2].Value;
  1729. List<string> list_str = (List<string>)ls_bp.Tag;
  1730. if (list_str != null)
  1731. {
  1732. int i_ls_fieldid = Convert.ToInt32(list_str[0]);
  1733. int i_ls_particleid = Convert.ToInt32(list_str[1]);
  1734. foreach (Particle item in particles)
  1735. {
  1736. if (i_ls_fieldid == item.FieldId && i_ls_particleid == item.ParticleId)
  1737. {
  1738. if (DeleteParticlesFromLibrary(item.ParticleId, item.FieldId))
  1739. {
  1740. for (int i = 0; i < particlesAll.Rows.Count; i++)
  1741. {
  1742. if (particlesAll.Rows[i]["Fieldid"].ToString() == item.FieldId.ToString() && particlesAll.Rows[i]["Particleid"].ToString() == item.ParticleId.ToString())
  1743. {
  1744. particlesAll.Rows.RemoveAt(i);
  1745. list_Part.Add(item);
  1746. }
  1747. }
  1748. }
  1749. else
  1750. {
  1751. MessageBox.Show("Delete failed");
  1752. }
  1753. break;
  1754. }
  1755. }
  1756. }
  1757. }
  1758. RecordCount = recordCount - dgV_ParticlesDevidePage.SelectedRows.Count;
  1759. lblTotalCount.Text = RecordCount.ToString();
  1760. foreach (DataGridViewRow Row in dgV_ParticlesDevidePage.SelectedRows)
  1761. {
  1762. dgV_ParticlesDevidePage.Rows.Remove(Row);
  1763. }
  1764. if (dgV_ParticlesDevidePage.Rows.Count == 0)
  1765. {
  1766. DisplayData();
  1767. }
  1768. for (int j = 0; j < dgV_ParticlesDevidePage.Rows.Count; j++)
  1769. {
  1770. dgV_ParticlesDevidePage.Rows[j].Cells[0].Value = (pageSize * (PageIndex - 1) + j + 1).ToString();
  1771. }
  1772. if (m_ReportApp.im_Control_DrawDistrbutionImageAndBSE != null)
  1773. {
  1774. m_ReportApp.im_Control_DrawDistrbutionImageAndBSE.DeletesParticlesSynchronously(list_Part);
  1775. }
  1776. else
  1777. {
  1778. var _Control_DrawDistrbutionImageAndBSE = new OTSIncAReportGraph.Controls.Control_DrawDistrbutionImageAndBSE(m_ReportApp);
  1779. foreach (var p in list_Part)
  1780. {
  1781. _Control_DrawDistrbutionImageAndBSE.DeleteParticlesFromLibrary(p.ParticleId, p.FieldId);
  1782. }
  1783. }
  1784. }
  1785. }
  1786. private bool DeleteParticlesFromLibrary(int in_clr_tagid, int in_clr_fieldid)
  1787. {
  1788. bool DoesItExist = false;
  1789. for (int i = 1; i < 201; i++)
  1790. {
  1791. if (System.IO.Directory.Exists(result.FilePath + "\\FIELD_FILES\\Backups" + i.ToString()))
  1792. {
  1793. DoesItExist = true;
  1794. break;
  1795. }
  1796. }
  1797. if (!DoesItExist)
  1798. {
  1799. //备份数据库
  1800. BackupDatabase();
  1801. }
  1802. DoesItExist = false;
  1803. //防止为空校验判断
  1804. if (result.List_OTSField == null)
  1805. return false;
  1806. Particle particle = result.List_OTSField.Find(x => x.FieldID == in_clr_fieldid).ParticleList.Find(x => x.ParticleId == in_clr_tagid);
  1807. if (new ParticleData(result.FilePath).DeleteFromData(Convert.ToString(particle.FieldId), Convert.ToString(particle.XrayId)))
  1808. {
  1809. return true;
  1810. }
  1811. else
  1812. {
  1813. return false;
  1814. }
  1815. }
  1816. private bool BackupDatabase()
  1817. {
  1818. //创建备份数据库文件夹
  1819. string sourcePath = result.FilePath + "\\FIELD_FILES\\Inclusion.db";//源文件路径
  1820. string sourceName = "Inclusion.db";//源文件名称
  1821. string folderPath = result.FilePath + "\\FIELD_FILES\\Backups";//目标文件夹
  1822. string Fields = "";
  1823. for (int i = 1; i < 201; i++)
  1824. {
  1825. if (System.IO.Directory.Exists(folderPath + i.ToString()))
  1826. {
  1827. Fields = folderPath + i.ToString();
  1828. continue;
  1829. }
  1830. else
  1831. {
  1832. System.IO.Directory.CreateDirectory(folderPath + i.ToString());
  1833. Fields = folderPath + i.ToString();
  1834. break;
  1835. }
  1836. }
  1837. if (Fields == "")
  1838. {
  1839. return false;
  1840. }
  1841. //复制数据库文件
  1842. string targetPath = Path.Combine(Fields, sourceName);
  1843. FileInfo file = new FileInfo(sourcePath);
  1844. if (file.Exists)
  1845. {
  1846. file.CopyTo(targetPath, true);
  1847. }
  1848. return true;
  1849. }
  1850. private void DisplayData()
  1851. {
  1852. if (cbB_PageSize.SelectedItem.ToString() == "All")
  1853. {
  1854. pageSize = -1;
  1855. }
  1856. else
  1857. {
  1858. pageSize = int.Parse(cbB_PageSize.SelectedItem.ToString());
  1859. }
  1860. lnkFirst_Click(null, null);
  1861. SetDataGridViewStyle();
  1862. }
  1863. string ChangeHardnessColor(string Hardness)
  1864. {
  1865. string str = System.Text.RegularExpressions.Regex.Replace(Hardness, @"[^\d.\d]", "");
  1866. double hd;
  1867. if (double.TryParse(str, out hd))
  1868. {
  1869. if (hd >= 1000)
  1870. {
  1871. return "#FF0000";
  1872. }
  1873. else return "";
  1874. }
  1875. else
  1876. return "";
  1877. }
  1878. /// <summary>
  1879. ///
  1880. /// </summary>
  1881. /// <param name="str_resultPath"></param>
  1882. /// <param name="dataTable"></param>
  1883. /// <param name="vs"></param>
  1884. /// <param name="dt_FIeld"></param>
  1885. public void Out_MarkParticleRectangleOnFieldFile(string str_resultPath, DataTable dataTable, out List<string> vs, out DataTable dt_FIeld)
  1886. {
  1887. Init();
  1888. List<string> maxlength = new List<string>();
  1889. for (int i = 0; i < dataTable.Rows.Count; i++)
  1890. {
  1891. if (Convert.ToInt32(dataTable.Rows[i]["TypeId"]) > 9)
  1892. {
  1893. if (maxlength.Count < 10)
  1894. {
  1895. maxlength.Add(dataTable.Rows[i]["Fieldid"].ToString());
  1896. }
  1897. else
  1898. {
  1899. break;
  1900. }
  1901. }
  1902. }
  1903. List<string> max_list = maxlength.Distinct().ToList();
  1904. string str_path_FIELD_FILES = str_resultPath + "\\FIELD_FILES\\";
  1905. int intQuantity = 0;
  1906. dt_FIeld = new DataTable();
  1907. vs = new List<string>();
  1908. ResultFile resfile = m_ReportApp.m_rstDataMgr.ResultFilesList[m_ReportApp.m_rstDataMgr.GetWorkingResultId()];
  1909. float PixelSize = resfile.GetPixelSize();
  1910. float ScanFieldSizeX = resfile.GetScanFieldSizeX();
  1911. int gauge = RulerSelection(ScanFieldSizeX);
  1912. float RulerPixels = gauge / PixelSize;
  1913. DataTable dt_AllParticle = fieldData.GetAllParticle_DataTable();
  1914. DirectoryInfo theFolder = new DirectoryInfo(str_path_FIELD_FILES);
  1915. if (theFolder.Exists)
  1916. {
  1917. DataTable dt = new DataTable();
  1918. dt.Columns.Add("fieldid");
  1919. dt.Columns.Add("id");
  1920. dt.Columns.Add("fieldName");
  1921. dt.Columns.Add("cunt", typeof(int));
  1922. dt.Columns.Add("fieldFullName");
  1923. for (int i = 0; i < max_list.Count; i++)
  1924. {
  1925. foreach (FileInfo nextifile in theFolder.GetFiles())
  1926. {
  1927. if (nextifile.Name.Contains(".bmp") == true || nextifile.Name.Contains(".BMP") == true)
  1928. {
  1929. string str_fieldid = Path.GetFileNameWithoutExtension(nextifile.Name);
  1930. str_fieldid = str_fieldid.Substring(5, str_fieldid.Length - 5);//减去field字符长度
  1931. bool bl = false;
  1932. if (str_fieldid == max_list[i].ToString())
  1933. {
  1934. bl = true;
  1935. }
  1936. if (bl)
  1937. {
  1938. DataRow dr = dt.NewRow();
  1939. dr["fieldid"] = " fieldid = " + str_fieldid;
  1940. int drcunt = 0;
  1941. for (int ia = 0; ia < dataTable.Rows.Count; ia++)
  1942. {
  1943. if (dataTable.Rows[ia]["fieldid"].ToString() == str_fieldid.ToString())
  1944. {
  1945. drcunt++;
  1946. }
  1947. }
  1948. dr["cunt"] = drcunt;
  1949. dr["fieldName"] = nextifile.Name;
  1950. dr["fieldFullName"] = nextifile.FullName;
  1951. dr["id"] = str_fieldid;
  1952. dt.Rows.Add(dr);
  1953. }
  1954. }
  1955. }
  1956. }
  1957. dt_FIeld = dt.Copy();
  1958. dt_FIeld.Columns.Add("Field_pic", typeof(Bitmap));
  1959. for (int i = 0; i < dt_FIeld.Rows.Count; i++)
  1960. {
  1961. int drCount = 0;
  1962. for (int ia = 0; ia < dataTable.Rows.Count; ia++)
  1963. if (Convert.ToInt32(dt_FIeld.Rows[i]["id"]) == Convert.ToInt32(dataTable.Rows[ia]["fieldid"]))
  1964. drCount++;
  1965. if (drCount > 0)
  1966. {
  1967. vs.Add(dt_FIeld.Rows[i]["id"].ToString());
  1968. Image img = Image.FromFile(dt_FIeld.Rows[i]["fieldFullName"].ToString());
  1969. Bitmap ls_fieldbp = new Bitmap(img.Width, img.Height, System.Drawing.Imaging.PixelFormat.Format32bppArgb);
  1970. using (Graphics g = Graphics.FromImage(ls_fieldbp))
  1971. {
  1972. g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic;
  1973. g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
  1974. g.CompositingQuality = System.Drawing.Drawing2D.CompositingQuality.HighQuality;
  1975. g.DrawImage(img, new Rectangle(0, 0, img.Width, img.Height));
  1976. }
  1977. img.Dispose();
  1978. img = null;
  1979. //循环将颗粒,进行标记到bitmap图上
  1980. DataRow[] drlist = dt_AllParticle.Select(dt_FIeld.Rows[i]["fieldid"].ToString());
  1981. if (drlist.Count() > 0)
  1982. intQuantity = intQuantity + 1;
  1983. for (int i_row = 0; i_row < drlist.Count(); i_row++)
  1984. {
  1985. string str_particleid = drlist[i_row]["particleid"].ToString();
  1986. string str_stdtypeid = drlist[i_row]["typeid"].ToString();
  1987. string str_offset_rect_X = drlist[i_row]["RectLeft"].ToString();
  1988. string str_offset_rect_Y = drlist[i_row]["RectTop"].ToString();
  1989. string str_offset_rect_Width = drlist[i_row]["RectWidth"].ToString();
  1990. string str_offset_rect_Height = drlist[i_row]["RectHeight"].ToString();
  1991. //确定需要标记颗粒的定位
  1992. Rectangle offset_rect = new Rectangle(Convert.ToInt32(str_offset_rect_X), Convert.ToInt32(str_offset_rect_Y),
  1993. Convert.ToInt32(str_offset_rect_Width), Convert.ToInt32(str_offset_rect_Height));
  1994. //向帧图进行标记颗粒位置
  1995. Graphics g = Graphics.FromImage(ls_fieldbp);
  1996. g.DrawRectangle(new Pen(Color.Aquamarine), offset_rect);
  1997. //判断是否超出了图像外面,是的话,让文字在左侧显示,默认在右侧显示
  1998. int ls_offsetx = offset_rect.X + offset_rect.Width;
  1999. if (ls_offsetx > ls_fieldbp.Width - 10)
  2000. {
  2001. ls_offsetx = offset_rect.X - 10;
  2002. }
  2003. g.DrawString(dt_FIeld.Rows[i]["id"].ToString() + "" + str_particleid.ToString(), new Font("黑体", 8), new SolidBrush(Color.Aqua), new PointF(ls_offsetx, offset_rect.Y));
  2004. var bitmap = DrawRuler(ls_fieldbp, (int)(RulerPixels / 2), 2, (gauge / 2).ToString() + "μm");
  2005. dt_FIeld.Rows[i]["Field_pic"] = bitmap;
  2006. }
  2007. }
  2008. }
  2009. }
  2010. GC.Collect();
  2011. GC.WaitForPendingFinalizers();
  2012. }
  2013. /// <summary>
  2014. /// 在图片上绘制标尺
  2015. /// </summary>
  2016. /// <param name="bitmap">图片</param>
  2017. /// <param name="LineLength">线长(像素)</param>
  2018. /// <param name="LineWidth">线宽(像素)</param>
  2019. /// <returns></returns>
  2020. private Bitmap DrawRuler(Bitmap bitmap, int LineLength, int LineWidth, string a_str)
  2021. {
  2022. if (bitmap == null)
  2023. throw new ArgumentNullException(nameof(bitmap));
  2024. // 创建一个新的Bitmap,并设置其大小与原图相同
  2025. Bitmap rgbBitmap = new Bitmap(bitmap.Width, bitmap.Height);
  2026. using (Graphics graphics = Graphics.FromImage(rgbBitmap))
  2027. {
  2028. // 将原图转换为RGB格式,并绘制到新的Bitmap上
  2029. graphics.DrawImage(bitmap, new Rectangle(0, 0, bitmap.Width, bitmap.Height));
  2030. Color color = FromHex("#00FF00");
  2031. //Color color = FromHex("#00FF00");
  2032. // 设置线条颜色和宽度
  2033. Pen pen = new Pen(color, LineWidth);
  2034. Font font = new Font("Arial", 20, GraphicsUnit.Pixel);
  2035. Brush brush = new SolidBrush(color);
  2036. StringFormat stringFormat = new StringFormat();
  2037. stringFormat.Alignment = StringAlignment.Center; // 居中对齐
  2038. stringFormat.LineAlignment = StringAlignment.Center; // 居中对齐行
  2039. // 绘制文字
  2040. SizeF textSize = Graphics.FromImage(bitmap).MeasureString(a_str, font);
  2041. PointF point = new PointF();
  2042. // 计算文本应该开始的位置,使其居中
  2043. point.X = (bitmap.Width - LineLength - 20) + ((LineLength - textSize.Width) / 2);
  2044. point.Y = bitmap.Height - 80;
  2045. graphics.DrawString(a_str, font, new SolidBrush(color), point);
  2046. graphics.DrawLine(pen, bitmap.Width - LineLength - 20, bitmap.Height - 40, bitmap.Width - 20, bitmap.Height - 40);
  2047. graphics.DrawLine(pen, bitmap.Width - LineLength - 20, bitmap.Height - 40, bitmap.Width - LineLength - 20, bitmap.Height - 50);
  2048. graphics.DrawLine(pen, bitmap.Width - 20, bitmap.Height - 40, bitmap.Width - 20, bitmap.Height - 50);
  2049. }
  2050. return rgbBitmap;
  2051. }
  2052. private static Color FromHex(string hex)
  2053. {
  2054. hex = hex.Replace("#", ""); // 移除 # 前缀
  2055. byte a = 255; // 默认Alpha值为255(不透明)
  2056. byte r = Convert.ToByte(hex.Substring(0, 2), 16);
  2057. byte g = Convert.ToByte(hex.Substring(2, 2), 16);
  2058. byte b = Convert.ToByte(hex.Substring(4, 2), 16);
  2059. return Color.FromArgb(a, r, g, b);
  2060. }
  2061. /// <summary>
  2062. /// 判断当前图片应该使用多大标尺
  2063. /// </summary>
  2064. /// <param name="a_value"> </param>
  2065. /// <returns></returns>
  2066. private int RulerSelection(float a_value)
  2067. {
  2068. int value = 0;
  2069. a_value = a_value / 2;
  2070. for (int i = 10; i < 5000; i += 5)
  2071. {
  2072. if (a_value < i)
  2073. {
  2074. value = i - 5;
  2075. break;
  2076. }
  2077. }
  2078. if (value == 0)
  2079. {
  2080. value = 5000;
  2081. }
  2082. return value;
  2083. }
  2084. private void dgV_ParticlesDevidePage_MouseDown(object sender, MouseEventArgs e)
  2085. {
  2086. var SelectRows = dgV_ParticlesDevidePage.SelectedRows;
  2087. int sel = m_ReportApp.m_conditionChoose.m_conditionData.GetComboDownListIndexByItemName(OTSIncAReportApp.OTSSampleReportInfo.OTS_REPORT_PROP_GRID_ITEMS.PARTICE_LIST);
  2088. {
  2089. if (sel != (int)SelItem.MergeParticles)
  2090. {
  2091. if (SelectRows != null && SelectRows.Count == 1)
  2092. {
  2093. DataGridViewRow dgvr = SelectRows[0];
  2094. Bitmap ls_bp = (Bitmap)dgvr.Cells[2].Value;
  2095. List<string> list_str = (List<string>)ls_bp.Tag;
  2096. }
  2097. ToolStripMenuItemDelete_Particle.Visible = true;
  2098. }
  2099. else
  2100. {
  2101. ToolStripMenuItemDelete_Particle.Visible = false;
  2102. }
  2103. }
  2104. }
  2105. /// <summary>
  2106. /// 去除拼接颗粒组成颗粒
  2107. /// </summary>
  2108. /// <param name="dataTable_Particle"></param>
  2109. /// <param name="dataTable_MergeParticles"></param>
  2110. public void RemoveMergeParticles(ref DataTable dataTable_Particle, DataTable dataTable_MergeParticles)
  2111. {
  2112. foreach (DataRow row in dataTable_Particle.Rows)
  2113. {
  2114. foreach (DataRow MergeParticlesRow in dataTable_MergeParticles.Rows)
  2115. {
  2116. string subt = MergeParticlesRow["SubParticles"].ToString();
  2117. string[] sub = subt.Split(',');
  2118. if (row.RowState == DataRowState.Deleted)
  2119. {
  2120. break;
  2121. }
  2122. if (row["fieldid"].ToString() == Convert.ToString(sub[0]).Split(':')[0] && row["ParticleId"].ToString() == Convert.ToString(sub[0]).Split(':')[1])
  2123. {
  2124. row.Delete();
  2125. break;
  2126. }
  2127. if (row["fieldid"].ToString() == Convert.ToString(sub[1]).Split(':')[0] && row["ParticleId"].ToString() == Convert.ToString(sub[1]).Split(':')[1])
  2128. {
  2129. row.Delete();
  2130. break; ;
  2131. }
  2132. }
  2133. }
  2134. dataTable_Particle.AcceptChanges();
  2135. }
  2136. private void btn_showconfig_Click(object sender, EventArgs e)
  2137. {
  2138. var p = particles; List<string> ele = new List<string>();
  2139. string elementsstr = "";
  2140. foreach (DataRow row in particles.Rows)
  2141. {
  2142. string[] strcbo = row["Element"].ToString().Split(';');
  2143. for (int j = 0; j < strcbo.Length; j++)
  2144. {
  2145. string[] str = strcbo[j].Split('-');
  2146. if (!ele.Contains(str[0]) && str[0] != "")
  2147. {
  2148. if (str[1] != "" && double.Parse(str[1]) != 0) //咨询demo后,元素含量返回值为零时一般去除此元素
  2149. { ele.Add(str[0]); }
  2150. }
  2151. }
  2152. }
  2153. foreach (var el in ele)
  2154. {
  2155. elementsstr += el.ToString() + ',';
  2156. }
  2157. if (elementsstr != "")
  2158. {
  2159. elementsstr = elementsstr.Remove(elementsstr.Length - 1, 1);
  2160. }
  2161. m_particlesGridDevidePageShowConfig = new ParticlesGridDevidePageShowConfig(m_ReportApp.m_RptConfigFile.Systype, elementsstr);
  2162. m_particlesGridDevidePageShowConfig.ShowDialog();
  2163. if (m_particlesGridDevidePageShowConfig.DialogResult == DialogResult.OK)
  2164. {
  2165. dgV_ParticlesDevidePage.Rows.Clear();
  2166. dgV_ParticlesDevidePage.Columns.Clear();
  2167. BindDataGridView();
  2168. SetDataGridViewStyle();
  2169. }
  2170. }
  2171. private void SaveParticleslist_select()
  2172. {
  2173. ParticleData fielddata = new ParticleData(result.FilePath);
  2174. List<Particle> particles = fielddata.GetParticleAllList();
  2175. Particleslist_selecttodisplay.Clear();
  2176. for (int l = 0; l < dgV_ParticlesDevidePage.SelectedRows.Count; l++)
  2177. {
  2178. //从事先加载的Bitmap对象的Tag中取出List<string>
  2179. DataGridViewRow dgvr = dgV_ParticlesDevidePage.SelectedRows[l];
  2180. Bitmap ls_bp = (Bitmap)dgvr.Cells[2].Value;
  2181. List<string> list_str = (List<string>)ls_bp.Tag;
  2182. if (list_str != null)
  2183. {
  2184. int i_ls_fieldid = Convert.ToInt32(list_str[0]);
  2185. int i_ls_particleid = Convert.ToInt32(list_str[1]);
  2186. foreach (Particle item in particles)
  2187. {
  2188. if (i_ls_fieldid == item.FieldId && i_ls_particleid == item.ParticleId)
  2189. {
  2190. Particleslist_selecttodisplay.Add(item);
  2191. break;
  2192. }
  2193. }
  2194. }
  2195. }
  2196. }
  2197. public List<Particle> GetParticleslist_select()
  2198. {
  2199. return Particleslist_selecttodisplay;
  2200. }
  2201. private void dgV_ParticlesDevidePage_MouseUp(object sender, MouseEventArgs e)
  2202. {
  2203. int sel = m_ReportApp.m_conditionChoose.m_conditionData.GetComboDownListIndexByItemName(OTSIncAReportApp.OTSSampleReportInfo.OTS_REPORT_PROP_GRID_ITEMS.PARTICE_LIST);
  2204. if (sel == (int)SelItem.MergeParticles)
  2205. {
  2206. return;
  2207. }
  2208. var SelectRows = dgV_ParticlesDevidePage.SelectedRows;
  2209. if (SelectRows.Count != 0)
  2210. {
  2211. if (SelectRows.Count == 1)
  2212. {
  2213. DataGridViewRow dgvr = SelectRows[0];
  2214. Bitmap ls_bp = (Bitmap)dgvr.Cells[2].Value;
  2215. List<string> list_str = (List<string>)ls_bp.Tag;
  2216. uint[] Search_xray = new uint[2000];
  2217. uint[] Analysis_xray = new uint[2000];
  2218. int i_xray_id = 0;
  2219. List<Element> list_celementchemistryclr = new List<Element>();
  2220. ReportFun.GetXrayByParticleTagIDAndFieldID_ForDrawDistrbutionImageAndBSE(Convert.ToInt32(dgvr.Cells["particleId"].Value), Convert.ToInt32(dgvr.Cells["fieldid"].Value), out Search_xray, out Analysis_xray, out i_xray_id, out list_celementchemistryclr);
  2221. List<ShowElementInfo> list_showelementinfo = new List<ShowElementInfo>();
  2222. for (int i = 0; i < list_celementchemistryclr.Count; i++)
  2223. {
  2224. ShowElementInfo ls_sei = new ShowElementInfo();
  2225. ls_sei.ElementName = list_celementchemistryclr[i].Name;
  2226. ls_sei.Percentage = list_celementchemistryclr[i].Percentage;
  2227. ls_sei.dKF = Convert.ToDouble(CListPeriodic.GetPeriodicByEleName(ls_sei.ElementName).K_Peak);
  2228. double de_sx2 = 0;
  2229. if (CListPeriodic.GetPeriodicByEleName(ls_sei.ElementName).L_Peak == "" || CListPeriodic.GetPeriodicByEleName(ls_sei.ElementName).L_Peak == "-")
  2230. {
  2231. de_sx2 = 0;
  2232. }
  2233. else
  2234. {
  2235. de_sx2 = Convert.ToDouble(CListPeriodic.GetPeriodicByEleName(ls_sei.ElementName).L_Peak);
  2236. }
  2237. ls_sei.dLF = de_sx2;
  2238. list_showelementinfo.Add(ls_sei);
  2239. }
  2240. list_showelementinfo.Sort((p1, p2) => p2.Percentage.CompareTo(p1.Percentage));
  2241. string str_IncAName = "";
  2242. str_IncAName = Convert.ToString(dgvr.Cells[1].Value);
  2243. Particle particle = result.List_OTSField.Find(x => x.FieldID == Convert.ToInt32(dgvr.Cells["fieldid"].Value)).ParticleList.Find(x => x.ParticleId == Convert.ToInt32(dgvr.Cells["particleId"].Value));
  2244. if (particle == null)
  2245. {
  2246. return;
  2247. }
  2248. control_XRayTable1.SetParticleInfo("Area:" + Math.Round(particle.Area, 2) + " " + "DMAX:" + Math.Round(particle.DMAX, 2) + " " + "DELONG:" + Math.Round(particle.DELONG, 2) + " " + "DFERET:" + Math.Round(particle.DFERET, 2) + " " + "DINSCR:" + Math.Round(particle.DINSCR, 2) + "\n" + "DMEAN:" + Math.Round(particle.DMEAN, 2) + " " + "DMIN:" + Math.Round(particle.DMIN, 2) + " " + "DPERP:" + Math.Round(particle.DPERP, 2) + " " + "ORIENTATION:" + Math.Round(particle.ORIENTATION, 2) + " " + "PERIMETER:" + Math.Round(particle.PERIMETER, 2));
  2249. control_XRayTable1.Visible = true;
  2250. control_XRayTable1.SetXRayShowLineValue(null, Analysis_xray, list_showelementinfo);
  2251. //颗粒国标信息
  2252. control_XRayTable1.GBInfoStr = "";
  2253. control_XRayTable1.MaterialName = str_IncAName;//杂夹物
  2254. control_XRayTable1.List_ShowElementInfo = list_showelementinfo;
  2255. string str = " particleId= " + dgvr.Cells["particleId"].Value.ToString() + " and fieldid = " + dgvr.Cells["fieldid"].Value.ToString();
  2256. DataRow[] drs = particles.Select(str);
  2257. if (drs.Length > 0)
  2258. {
  2259. Rectangle rectangle = new Rectangle() { X = Convert.ToInt32(particle.RectLeft), Y = Convert.ToInt32(particle.RectTop), Width = Convert.ToInt32(particle.RectWidth), Height = Convert.ToInt32(particle.RectHeight) };
  2260. Bitmap dpImage = new Bitmap(result.GetImageWidth(), result.GetImageHeight());
  2261. using (Graphics graphics = Graphics.FromImage(dpImage))
  2262. {
  2263. graphics.Clear(Color.White); // 清除位图背景为白色
  2264. }
  2265. string filePath = result.FilePath + "\\FIELD_FILES\\";
  2266. string imagePath = filePath + "Field" + dgvr.Cells["fieldid"].Value.ToString() + ".bmp";
  2267. Bitmap m_originalImage = DrawFunction.ReadImageFile(imagePath);
  2268. foreach (Segment seg in particle.SegmentList)
  2269. {
  2270. int f_length = seg.Length;
  2271. for (int m = 0; m < f_length; m++)
  2272. {
  2273. int lsjs_x = seg.Start + m;
  2274. int lsjs_y = seg.Height;
  2275. var pixelColor = m_originalImage.GetPixel(lsjs_x, lsjs_y);
  2276. dpImage.SetPixel(lsjs_x, lsjs_y, Color.Black);
  2277. }
  2278. }
  2279. Bitmap bmap = Particledata.GetBitmapByParticle(dpImage, rectangle);
  2280. Bitmap bmap1 = Particledata.GetBitmapByParticle(m_originalImage, rectangle);
  2281. control_XRayTable1.SetBitmapOfPictureBox(bmap1, bmap);
  2282. Invalidate();
  2283. }
  2284. else
  2285. {
  2286. control_XRayTable1.Visible = false;
  2287. }
  2288. }
  2289. SaveParticleslist_select();
  2290. }
  2291. }
  2292. private void dgV_ParticlesDevidePage_KeyDown(object sender, KeyEventArgs e)
  2293. {
  2294. if (e.KeyData == Keys.Delete)
  2295. {
  2296. ToolStripMenuItem_Delete_Particle_Click(null, null);
  2297. }
  2298. }
  2299. private void dgV_ParticlesDevidePage_KeyUp(object sender, KeyEventArgs e)
  2300. {
  2301. if (e.KeyData == Keys.Down)
  2302. {
  2303. dgV_ParticlesDevidePage_MouseUp(null, null);
  2304. }
  2305. if (e.KeyData == Keys.Up)
  2306. {
  2307. dgV_ParticlesDevidePage_MouseUp(null, null);
  2308. }
  2309. }
  2310. private void tbx_Type_Click(object sender, EventArgs e)
  2311. {
  2312. ParticleClassificationSelect particleClassificationSelect = new ParticleClassificationSelect(this, tbx_Type.Text);
  2313. DialogResult result = particleClassificationSelect.ShowDialog();
  2314. if (result == DialogResult.OK)
  2315. {
  2316. condition = "";
  2317. tbx_Type.Text = particleClassificationSelect.ParticleClassificationSelected;
  2318. string[] tr = tbx_Type.Text.Split(',');
  2319. condition += " and (";
  2320. for (int i = 0; i < tr.Length; i++)
  2321. {
  2322. if (i == 0)
  2323. {
  2324. condition += " TypeName = '" + tr[i] + "'";
  2325. }
  2326. else
  2327. {
  2328. condition += " or TypeName = '" + tr[i] + "'";
  2329. }
  2330. }
  2331. condition += ")";
  2332. if (m_frm_userprogress.IsDisposed)
  2333. {
  2334. ProgressStart();
  2335. }
  2336. UpdateTable();
  2337. lnkFirst_Click(null, null);
  2338. SetDataGridViewStyle();
  2339. }
  2340. }
  2341. private void btn_particletypesel_Click(object sender, EventArgs e)
  2342. {
  2343. ParticleClassificationSelect particleClassificationSelect = new ParticleClassificationSelect(this, tbx_Type.Text);
  2344. DialogResult result = particleClassificationSelect.ShowDialog();
  2345. if (result == DialogResult.OK)
  2346. {
  2347. condition = "";
  2348. tbx_Type.Text = "";
  2349. if (particleClassificationSelect.ParticleClassificationSelected != "")
  2350. {
  2351. tbx_Type.Text = particleClassificationSelect.ParticleClassificationSelected;
  2352. btn_Sel_Click(null, null);
  2353. }
  2354. }
  2355. }
  2356. public DataTable GetClassificationOfAllParticles()
  2357. {
  2358. string str = "";
  2359. int sel = m_ReportApp.m_conditionChoose.m_conditionData.GetComboDownListIndexByItemName(OTSIncAReportApp.OTSSampleReportInfo.OTS_REPORT_PROP_GRID_ITEMS.PARTICE_LIST);
  2360. if (sel == (int)SelItem.analyticalParticle)
  2361. {
  2362. str = "where xrayid > -1 and typeid !=9 and typeid !=-1 and typeid !=4";
  2363. }
  2364. else if (sel == (int)SelItem.otherParticles)
  2365. {
  2366. str = "where typeid =9 or typeid =-1 or typeid =4";
  2367. }
  2368. else
  2369. {
  2370. }
  2371. DataTable table = Particledata.GetClassificationOfAllParticles(str);
  2372. return table;
  2373. }
  2374. private void 根据相似度批量修改ToolStripMenuItem_Click(object sender, EventArgs e)
  2375. {
  2376. //如果没有选中颗粒退出
  2377. if (dgV_ParticlesDevidePage.SelectedRows.Count == 0)
  2378. {
  2379. return;
  2380. }
  2381. int sel = m_ReportApp.m_conditionChoose.m_conditionData.GetComboDownListIndexByItemName(OTSIncAReportApp.OTSSampleReportInfo.OTS_REPORT_PROP_GRID_ITEMS.PARTICE_LIST);
  2382. if (sel == (int)SelItem.MergeParticles)
  2383. {
  2384. return;
  2385. }
  2386. var SelectRows = dgV_ParticlesDevidePage.SelectedRows;
  2387. uint[] Search_xray = new uint[2000];
  2388. int classifyid = -1;
  2389. if (SelectRows.Count != 0)
  2390. {
  2391. if (SelectRows.Count == 1)
  2392. {
  2393. DataGridViewRow dgvr = SelectRows[0];
  2394. Bitmap ls_bp = (Bitmap)dgvr.Cells[2].Value;
  2395. List<string> list_str = (List<string>)ls_bp.Tag;
  2396. classifyid = Convert.ToInt32(list_str[2]);
  2397. uint[] Analysis_xray = new uint[2000];
  2398. int i_xray_id = 0;
  2399. List<Element> list_celementchemistryclr = new List<Element>();
  2400. ReportFun.GetXrayByParticleTagIDAndFieldID_ForDrawDistrbutionImageAndBSE(Convert.ToInt32(dgvr.Cells["particleId"].Value), Convert.ToInt32(dgvr.Cells["fieldid"].Value), out Search_xray, out Analysis_xray, out i_xray_id, out list_celementchemistryclr);
  2401. }
  2402. }
  2403. ListOfSimilarParticles Form_listOfSimilarParticles = new ListOfSimilarParticles(this, Search_xray, classifyid, m_ReportApp);
  2404. DialogResult result3 = Form_listOfSimilarParticles.ShowDialog();
  2405. if (result3 == DialogResult.OK)
  2406. {
  2407. UpdateTable();
  2408. lnkFirst_Click(null, null);
  2409. SetDataGridViewStyle();
  2410. DataTable table = GetClassificationOfAllParticles();
  2411. if (table != null)
  2412. {
  2413. if (table.Rows.Count > 0)
  2414. {
  2415. foreach (DataRow row in table.Rows)
  2416. {
  2417. tbx_Type.Text += row["TypeName"].ToString() + '$';
  2418. }
  2419. }
  2420. if (tbx_Type.Text != "")
  2421. {
  2422. tbx_Type.Text = tbx_Type.Text.Remove(tbx_Type.Text.Length - 1);
  2423. }
  2424. }
  2425. dgV_ParticlesDevidePage.Focus();
  2426. }
  2427. else
  2428. {
  2429. }
  2430. }
  2431. }
  2432. }