From 0f2eaaec20957ea9c02aadd287e11c127f1c01f6 Mon Sep 17 00:00:00 2001 From: seto Date: Fri, 16 Oct 2020 17:36:30 +0900 Subject: [PATCH] update --- .../Properties/AssemblyInfo.cs | 4 +- Crystallography/Geometriy.cs | 54 +- Crystallography/Properties/AssemblyInfo.cs | 4 +- PDIndexer/FormCrystal.Designer.cs | 120 +- PDIndexer/FormCrystal.resx | 182 +- PDIndexer/FormFitting.Designer.cs | 2 +- PDIndexer/FormFitting.cs | 207 +- PDIndexer/FormMain.Designer.cs | 483 +- PDIndexer/FormMain.cs | 255 +- PDIndexer/FormMain.ja.resx | 1069 +- PDIndexer/FormMain.resx | 8843 ++++++++--------- PDIndexer/Properties/AssemblyInfo.cs | 4 +- PDIndexer/Version.cs | 1 + 13 files changed, 5441 insertions(+), 5787 deletions(-) diff --git a/Crystallography.Controls/Properties/AssemblyInfo.cs b/Crystallography.Controls/Properties/AssemblyInfo.cs index 16680ba..62b094a 100644 --- a/Crystallography.Controls/Properties/AssemblyInfo.cs +++ b/Crystallography.Controls/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ // すべての値を指定するか、下のように '*' を使ってビルドおよびリビジョン番号を // 既定値にすることができます: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("2020.10.15.0839")] -[assembly: AssemblyFileVersion("2020.10.15.0839")] \ No newline at end of file +[assembly: AssemblyVersion("2020.10.16.0824")] +[assembly: AssemblyFileVersion("2020.10.16.0824")] \ No newline at end of file diff --git a/Crystallography/Geometriy.cs b/Crystallography/Geometriy.cs index 6f4efc8..a493776 100644 --- a/Crystallography/Geometriy.cs +++ b/Crystallography/Geometriy.cs @@ -655,45 +655,51 @@ public static Vector3DBase GetCrossPoint(double a, double b, double c, double d, /// public static PointD[][] GetPointsWithinRectangle(IEnumerable sourcePoints, RectangleD area) { + var pt = sourcePoints.ToList(); //܂ȀƉg - List pt = new List(); - foreach (var p in sourcePoints) - pt.Add(p); - int first = pt.FindIndex(p => p.X >= area.X) - 1; + var first = pt.FindIndex(p => p.X >= area.X) - 1; if (first > 0) pt.RemoveRange(0, first); - int last = pt.FindLastIndex(p => p.X <= area.X + area.Width) + 2; + var last = pt.FindLastIndex(p => p.X <= area.X + area.Width) + 2; if (last < pt.Count) pt.RemoveRange(last, pt.Count - last); - for (int i = 0; i < pt.Count - 1; i++) + if (pt.Max(p => p.Y) <= area.UpperY && pt.Min(pt => pt.Y) >= area.Y) + return new[] { pt.ToArray() }; + else if(pt.Max(p => p.Y) <= area.Y || pt.Min(pt => pt.Y) >= area.UpperY) + return new[] { new PointD[] { } }; + else { - if (!area.IsInsde(pt[i]) || !area.IsInsde(pt[i + 1])) //ǂ炩͈͊O̎ + + for (int i = 0; i < pt.Count - 1; i++) { - var pts = getCrossPoint(pt[i], pt[i + 1], area); - if (pts != null) + if (!area.IsInsde(pt[i]) || !area.IsInsde(pt[i + 1])) //ǂ炩͈͊O̎ { - pt.InsertRange(i + 1, pts); - i += pts.Length; + var pts = getCrossPoint(pt[i], pt[i + 1], area); + if (pts != null) + { + pt.InsertRange(i + 1, pts); + i += pts.Length; + } } } - } - var results = new List>(); - for (int i = 0; i < pt.Count - 1; i++) - { - if (!area.IsInsde(pt[i])) - pt.RemoveAt(i--); - else + var results = new List>(); + for (int i = 0; i < pt.Count - 1; i++) { - var pts = new List(); - for (; i < pt.Count && area.IsInsde(pt[i]); i++) - pts.Add(new PointD(pt[i])); - i--; - results.Add(pts); + if (!area.IsInsde(pt[i])) + pt.RemoveAt(i--); + else + { + var pts = new List(); + for (; i < pt.Count && area.IsInsde(pt[i]); i++) + pts.Add(new PointD(pt[i])); + i--; + results.Add(pts); + } } + return results.Select(r => r.ToArray()).ToArray(); } - return results.Select(r => r.ToArray()).ToArray(); } /// diff --git a/Crystallography/Properties/AssemblyInfo.cs b/Crystallography/Properties/AssemblyInfo.cs index ab03e9f..c9662db 100644 --- a/Crystallography/Properties/AssemblyInfo.cs +++ b/Crystallography/Properties/AssemblyInfo.cs @@ -26,7 +26,7 @@ // ɂ悤ɁA'*' gāAׂĂ̒lw肷邩A // rhуrWԍlɂ邱Ƃł܂B -[assembly: AssemblyVersion("2020.10.15.0839")] +[assembly: AssemblyVersion("2020.10.16.0824")] // // AZuɏɂ́AgpL[w肵Ȃ΂Ȃ܂B @@ -57,5 +57,5 @@ [assembly: AssemblyKeyFile("")] [assembly: AssemblyKeyName("")] [assembly: ComVisibleAttribute(true)] -[assembly: AssemblyFileVersion("2020.10.15.0839")] +[assembly: AssemblyFileVersion("2020.10.16.0824")] diff --git a/PDIndexer/FormCrystal.Designer.cs b/PDIndexer/FormCrystal.Designer.cs index 410a666..8c0ec81 100644 --- a/PDIndexer/FormCrystal.Designer.cs +++ b/PDIndexer/FormCrystal.Designer.cs @@ -44,12 +44,15 @@ private void InitializeComponent() System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); this.splitContainer1 = new System.Windows.Forms.SplitContainer(); this.groupBox3 = new System.Windows.Forms.GroupBox(); + this.crystalControl = new Crystallography.Controls.CrystalControl(); this.panel2 = new System.Windows.Forms.Panel(); this.buttonAdd = new System.Windows.Forms.Button(); this.buttonChange = new System.Windows.Forms.Button(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.dataGridViewCrystal = new System.Windows.Forms.DataGridView(); this.checkDataGridViewCheckBoxColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn(); + this.PeakColor = new System.Windows.Forms.DataGridViewImageColumn(); + this.crystalDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.bindingSource = new System.Windows.Forms.BindingSource(this.components); this.dataSet = new PDIndexer.DataSet(); this.flowLayoutPanel3 = new System.Windows.Forms.FlowLayoutPanel(); @@ -82,7 +85,9 @@ private void InitializeComponent() this.label6 = new System.Windows.Forms.Label(); this.checkBoxShowPeakUnderProfile = new System.Windows.Forms.CheckBox(); this.groupBox4 = new System.Windows.Forms.GroupBox(); + this.crystalDatabaseControl = new Crystallography.Controls.CrystalDatabaseControl(); this.panel1 = new System.Windows.Forms.Panel(); + this.searchCrystalControl = new Crystallography.Controls.SearchCrystalControl(); this.buttonSearch = new System.Windows.Forms.Button(); this.toolTip = new System.Windows.Forms.ToolTip(this.components); this.dataGridViewImageColumn1 = new System.Windows.Forms.DataGridViewImageColumn(); @@ -92,11 +97,6 @@ private void InitializeComponent() this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.dataGridViewImageColumn3 = new System.Windows.Forms.DataGridViewImageColumn(); this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.crystalControl = new Crystallography.Controls.CrystalControl(); - this.PeakColor = new System.Windows.Forms.DataGridViewImageColumn(); - this.crystalDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.crystalDatabaseControl = new Crystallography.Controls.CrystalDatabaseControl(); - this.searchCrystalControl = new Crystallography.Controls.SearchCrystalControl(); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit(); this.splitContainer1.Panel1.SuspendLayout(); this.splitContainer1.Panel2.SuspendLayout(); @@ -144,6 +144,29 @@ private void InitializeComponent() this.groupBox3.Name = "groupBox3"; this.groupBox3.TabStop = false; // + // crystalControl + // + this.crystalControl.AllowDrop = true; + resources.ApplyResources(this.crystalControl, "crystalControl"); + this.crystalControl.CellConstants = ((System.ValueTuple)(resources.GetObject("crystalControl.CellConstants"))); + this.crystalControl.Crystal = ((Crystallography.Crystal)(resources.GetObject("crystalControl.Crystal"))); + this.crystalControl.DefaultTabNumber = 0; + this.crystalControl.Name = "crystalControl"; + this.crystalControl.ScatteringFactorVisible = false; + this.crystalControl.SkipEvent = false; + this.crystalControl.SymmetryInformationVisible = false; + this.crystalControl.SymmetrySeriesNumber = 0; + this.crystalControl.VisibleAtomTab = true; + this.crystalControl.VisibleBasicInfoTab = true; + this.crystalControl.VisibleBondsPolyhedraTab = false; + this.crystalControl.VisibleBoundTab = false; + this.crystalControl.VisibleElasticityTab = false; + this.crystalControl.VisibleEOSTab = true; + this.crystalControl.VisibleLatticePlaneTab = false; + this.crystalControl.VisiblePolycrystallineTab = false; + this.crystalControl.VisibleReferenceTab = true; + this.crystalControl.VisibleStressStrainTab = false; + // // panel2 // resources.ApplyResources(this.panel2, "panel2"); @@ -197,7 +220,7 @@ private void InitializeComponent() this.dataGridViewCrystal.DataSource = this.bindingSource; dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192))))); - dataGridViewCellStyle1.Font = new System.Drawing.Font("Segoe UI Symbol", 9.75F, System.Drawing.FontStyle.Bold); + dataGridViewCellStyle1.Font = new System.Drawing.Font("Segoe UI Symbol", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText; dataGridViewCellStyle1.SelectionBackColor = System.Drawing.Color.Blue; dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText; @@ -222,6 +245,24 @@ private void InitializeComponent() this.checkDataGridViewCheckBoxColumn.ReadOnly = true; this.checkDataGridViewCheckBoxColumn.Resizable = System.Windows.Forms.DataGridViewTriState.False; // + // PeakColor + // + this.PeakColor.DataPropertyName = "PeakColor"; + resources.ApplyResources(this.PeakColor, "PeakColor"); + this.PeakColor.Name = "PeakColor"; + this.PeakColor.ReadOnly = true; + this.PeakColor.Resizable = System.Windows.Forms.DataGridViewTriState.True; + this.PeakColor.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic; + // + // crystalDataGridViewTextBoxColumn + // + this.crystalDataGridViewTextBoxColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; + this.crystalDataGridViewTextBoxColumn.DataPropertyName = "Crystal"; + resources.ApplyResources(this.crystalDataGridViewTextBoxColumn, "crystalDataGridViewTextBoxColumn"); + this.crystalDataGridViewTextBoxColumn.Name = "crystalDataGridViewTextBoxColumn"; + this.crystalDataGridViewTextBoxColumn.ReadOnly = true; + this.crystalDataGridViewTextBoxColumn.Resizable = System.Windows.Forms.DataGridViewTriState.False; + // // bindingSource // this.bindingSource.AllowNew = true; @@ -505,6 +546,13 @@ private void InitializeComponent() this.groupBox4.Name = "groupBox4"; this.groupBox4.TabStop = false; // + // crystalDatabaseControl + // + resources.ApplyResources(this.crystalDatabaseControl, "crystalDatabaseControl"); + this.crystalDatabaseControl.Filter = null; + this.crystalDatabaseControl.FontSize = 9.75F; + this.crystalDatabaseControl.Name = "crystalDatabaseControl"; + // // panel1 // this.panel1.Controls.Add(this.searchCrystalControl); @@ -512,6 +560,12 @@ private void InitializeComponent() resources.ApplyResources(this.panel1, "panel1"); this.panel1.Name = "panel1"; // + // searchCrystalControl + // + resources.ApplyResources(this.searchCrystalControl, "searchCrystalControl"); + this.searchCrystalControl.Name = "searchCrystalControl"; + this.searchCrystalControl.FilterChanged += new System.EventHandler(this.searchCrystalControl_FilterChanged); + // // buttonSearch // resources.ApplyResources(this.buttonSearch, "buttonSearch"); @@ -585,60 +639,6 @@ private void InitializeComponent() this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4"; this.dataGridViewTextBoxColumn4.Resizable = System.Windows.Forms.DataGridViewTriState.False; // - // crystalControl - // - this.crystalControl.AllowDrop = true; - resources.ApplyResources(this.crystalControl, "crystalControl"); - this.crystalControl.CellConstants = ((System.ValueTuple)(resources.GetObject("crystalControl.CellConstants"))); - this.crystalControl.Crystal = ((Crystallography.Crystal)(resources.GetObject("crystalControl.Crystal"))); - this.crystalControl.DefaultTabNumber = 0; - this.crystalControl.Name = "crystalControl"; - this.crystalControl.ScatteringFactorVisible = false; - this.crystalControl.SkipEvent = false; - this.crystalControl.SymmetryInformationVisible = false; - this.crystalControl.SymmetrySeriesNumber = 0; - this.crystalControl.VisibleAtomTab = true; - this.crystalControl.VisibleBasicInfoTab = true; - this.crystalControl.VisibleBondsPolyhedraTab = false; - this.crystalControl.VisibleBoundTab = false; - this.crystalControl.VisibleElasticityTab = false; - this.crystalControl.VisibleEOSTab = true; - this.crystalControl.VisibleLatticePlaneTab = false; - this.crystalControl.VisiblePolycrystallineTab = false; - this.crystalControl.VisibleReferenceTab = true; - this.crystalControl.VisibleStressStrainTab = false; - // - // PeakColor - // - this.PeakColor.DataPropertyName = "PeakColor"; - resources.ApplyResources(this.PeakColor, "PeakColor"); - this.PeakColor.Name = "PeakColor"; - this.PeakColor.ReadOnly = true; - this.PeakColor.Resizable = System.Windows.Forms.DataGridViewTriState.True; - this.PeakColor.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic; - // - // crystalDataGridViewTextBoxColumn - // - this.crystalDataGridViewTextBoxColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; - this.crystalDataGridViewTextBoxColumn.DataPropertyName = "Crystal"; - resources.ApplyResources(this.crystalDataGridViewTextBoxColumn, "crystalDataGridViewTextBoxColumn"); - this.crystalDataGridViewTextBoxColumn.Name = "crystalDataGridViewTextBoxColumn"; - this.crystalDataGridViewTextBoxColumn.ReadOnly = true; - this.crystalDataGridViewTextBoxColumn.Resizable = System.Windows.Forms.DataGridViewTriState.False; - // - // crystalDatabaseControl - // - resources.ApplyResources(this.crystalDatabaseControl, "crystalDatabaseControl"); - this.crystalDatabaseControl.Filter = null; - this.crystalDatabaseControl.FontSize = 9.75F; - this.crystalDatabaseControl.Name = "crystalDatabaseControl"; - // - // searchCrystalControl - // - resources.ApplyResources(this.searchCrystalControl, "searchCrystalControl"); - this.searchCrystalControl.Name = "searchCrystalControl"; - this.searchCrystalControl.FilterChanged += new System.EventHandler(this.searchCrystalControl_FilterChanged); - // // FormCrystal // resources.ApplyResources(this, "$this"); diff --git a/PDIndexer/FormCrystal.resx b/PDIndexer/FormCrystal.resx index 5cfd9be..fb1ebe3 100644 --- a/PDIndexer/FormCrystal.resx +++ b/PDIndexer/FormCrystal.resx @@ -151,81 +151,88 @@ - AAEAAAD/////AQAAAAAAAAAMAgAAAEtDcnlzdGFsbG9ncmFwaHksIFZlcnNpb249MjAyMC45LjQuMTIz - LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPW51bGwFAQAAABdDcnlzdGFsbG9ncmFwaHku - Q3J5c3RhbCwAAAAIUmVzaWR1YWwGQm91bmRzDUxhdHRpY2VQbGFuZXMBQQFCAUMFQWxwaGEEQmV0YQVH - YW1tYQVBX2VycgVCX2VycgVDX2VycglBbHBoYV9lcnIIQmV0YV9lcnIJR2FtbWFfZXJyDlJvdGF0aW9u - TWF0cml4BEFyZ2IIUmVzZXJ2ZWQETmFtZQROb3RlDlB1YmxBdXRob3JOYW1lEFB1YmxTZWN0aW9uVGl0 - bGUUU3ltbWV0cnlTZXJpZXNOdW1iZXIHSm91cm5hbAtKb3VybmFsTmFtZQ1Kb3VybmFsVm9sdW1lDEpv - dXJuYWxJc3N1ZQtKb3VybmFsWWVhchBKb3VybmFsUGFnZUZpcnN0D0pvdXJuYWxQYWdlTGFzdAhTeW1t - ZXRyeQVBdG9tcwVCb25kcwZTdHJhaW4GU3RyZXNzD0hpbGxDb2VmZmljaWVudBVFbGFzdGljU3RpZmZu - ZXNzQXJyYXkMRU9TQ29uZGl0aW9uCkRvZXNVc2VFT1MMQ3J5c3RhbGxpdGVzD0FuZ2xlUmVzb2x1dGlv - bgtTdWJEaXZpc2lvbglHcmFpblNpemUCaWQABAQAAAAAAAAAAAAAAAAEAAABAQEBAAEBAQEBAQEEBAQE - BAAHBAAEAAAAAAYXQ3J5c3RhbGxvZ3JhcGh5LkJvdW5kW10CAAAAHkNyeXN0YWxsb2dyYXBoeS5MYXR0 - aWNlUGxhbmVbXQIAAAAGBgYGBgYGBgYGBgYYQ3J5c3RhbGxvZ3JhcGh5Lk1hdHJpeDNEAgAAAAgBCBhD - cnlzdGFsbG9ncmFwaHkuU3ltbWV0cnkCAAAAF0NyeXN0YWxsb2dyYXBoeS5BdG9tc1tdAgAAABdDcnlz - dGFsbG9ncmFwaHkuQm9uZHNbXQIAAAAYQ3J5c3RhbGxvZ3JhcGh5Lk1hdHJpeDNEAgAAABhDcnlzdGFs - bG9ncmFwaHkuTWF0cml4M0QCAAAABgYTQ3J5c3RhbGxvZ3JhcGh5LkVPUwIAAAABG0NyeXN0YWxsb2dy - YXBoeS5DcnlzdGFsbGl0ZQIAAAAGCAYIAgAAAAAAAAAAAAAACQMAAAAJBAAAAAAAAAAAAAAAAAAAAAAA + AAEAAAD/////AQAAAAAAAAAMAgAAAE1DcnlzdGFsbG9ncmFwaHksIFZlcnNpb249MjAyMC4xMC4xNi44 + MjQsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49bnVsbAUBAAAAF0NyeXN0YWxsb2dyYXBo + eS5DcnlzdGFsLAAAAAhSZXNpZHVhbAZCb3VuZHMNTGF0dGljZVBsYW5lcwFBAUIBQwVBbHBoYQRCZXRh + BUdhbW1hBUFfZXJyBUJfZXJyBUNfZXJyCUFscGhhX2VycghCZXRhX2VycglHYW1tYV9lcnIOUm90YXRp + b25NYXRyaXgEQXJnYghSZXNlcnZlZAROYW1lBE5vdGUOUHVibEF1dGhvck5hbWUQUHVibFNlY3Rpb25U + aXRsZRRTeW1tZXRyeVNlcmllc051bWJlcgdKb3VybmFsC0pvdXJuYWxOYW1lDUpvdXJuYWxWb2x1bWUM + Sm91cm5hbElzc3VlC0pvdXJuYWxZZWFyEEpvdXJuYWxQYWdlRmlyc3QPSm91cm5hbFBhZ2VMYXN0CFN5 + bW1ldHJ5BUF0b21zBUJvbmRzBlN0cmFpbgZTdHJlc3MPSGlsbENvZWZmaWNpZW50FUVsYXN0aWNTdGlm + Zm5lc3NBcnJheQxFT1NDb25kaXRpb24KRG9lc1VzZUVPUwxDcnlzdGFsbGl0ZXMPQW5nbGVSZXNvbHV0 + aW9uC1N1YkRpdmlzaW9uCUdyYWluU2l6ZQJpZAAEBAAAAAAAAAAAAAAAAAQAAAEBAQEAAQEBAQEBAQQE + BAQEAAcEAAQAAAAABhdDcnlzdGFsbG9ncmFwaHkuQm91bmRbXQIAAAAeQ3J5c3RhbGxvZ3JhcGh5Lkxh + dHRpY2VQbGFuZVtdAgAAAAYGBgYGBgYGBgYGBhhDcnlzdGFsbG9ncmFwaHkuTWF0cml4M0QCAAAACAEI + GENyeXN0YWxsb2dyYXBoeS5TeW1tZXRyeQIAAAAXQ3J5c3RhbGxvZ3JhcGh5LkF0b21zW10CAAAAF0Ny + eXN0YWxsb2dyYXBoeS5Cb25kc1tdAgAAABhDcnlzdGFsbG9ncmFwaHkuTWF0cml4M0QCAAAAGENyeXN0 + YWxsb2dyYXBoeS5NYXRyaXgzRAIAAAAGBhNDcnlzdGFsbG9ncmFwaHkuRU9TAgAAAAEbQ3J5c3RhbGxv + Z3JhcGh5LkNyeXN0YWxsaXRlAgAAAAYIBggCAAAAAAAAAAAAAAAJAwAAAAkEAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkFAAAA8PDw/wAGBgAAAAAJBgAAAAkGAAAACQYAAAAAAAAACQYA - AAAJBgAAAAkGAAAACQYAAAAJBgAAAAkGAAAACQYAAAAJBwAAAAkIAAAACQkAAAAJCgAAAAkLAAAAAAAA - AAAAAAAJDAAAAAkNAAAAAAoAAAAAAAAAQAQAAAAAAAAAAABZQAAAAAAHAwAAAAABAAAAAAAAAAQVQ3J5 - c3RhbGxvZ3JhcGh5LkJvdW5kAgAAAAcEAAAAAAEAAAAAAAAABBxDcnlzdGFsbG9ncmFwaHkuTGF0dGlj - ZVBsYW5lAgAAAAUFAAAAGENyeXN0YWxsb2dyYXBoeS5NYXRyaXgzRAkAAAADRTExA0UxMgNFMTMDRTIx - A0UyMgNFMjMDRTMxA0UzMgNFMzMAAAAAAAAAAAAGBgYGBgYGBgYCAAAAAAAAAAAA8D8AAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAADwPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPA/DA4AAAD+ - A21zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49 - Yjc3YTVjNTYxOTM0ZTA4OV0sW1N5c3RlbS5JbnQzMiwgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwg - Q3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XSxbU3lzdGVtLklu - dDMyLCBtc2NvcmxpYiwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRv - a2VuPWI3N2E1YzU2MTkzNGUwODldLFtTeXN0ZW0uU3RyaW5nLCBtc2NvcmxpYiwgVmVyc2lvbj00LjAu - MC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldXSwgbXNj - b3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdh - NWM1NjE5MzRlMDg5XV0sIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwg - UHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OQUHAAAAGENyeXN0YWxsb2dyYXBoeS5TeW1tZXRy - eRkAAAASU3BhY2VHcm91cEhNc3ViU3RyD1NwYWNlR3JvdXBTRlN0chFTcGFjZUdyb3VwSGFsbFN0cg9T - cGFjZUdyb3VwSE1TdHITU3BhY2VHcm91cEhNZnVsbFN0cghNYWluQXhpcw5MYXR0aWNlVHlwZVN0cgdT - dHJTRTFwB1N0clNFMXYHU3RyU0UycAdTdHJTRTJ2B1N0clNFM3AHU3RyU0Uzdg9Qb2ludEdyb3VwSE1T - dHIPUG9pbnRHcm91cFNGU3RyDExhdWVHcm91cFN0chBDcnlzdGFsU3lzdGVtU3RyDFNlcmllc051bWJl - chBTcGFjZUdyb3VwTnVtYmVyE1NwYWNlR3JvdXBTdWJOdW1iZXIQUG9pbnRHcm91cE51bWJlcg9MYXVl - R3JvdXBOdW1iZXITQ3J5c3RhbFN5c3RlbU51bWJlchFFeHRpbmN0aW9uUnVsZVN0chNDaGVja0V4dGlu - Y3Rpb25GdW5jAQEBAQEBAQEBAQEBAQEBAQEAAAAAAAAGBAgICAgICD5TeXN0ZW0uQ29sbGVjdGlvbnMu - R2VuZXJpYy5MaXN0YDFbW1N5c3RlbS5GdW5jYDRbW1N5c3RlbS5JbnQzMg4AAAACAAAACQYAAAAGEAAA - AAdVbmtub3duCRAAAAAJEAAAAAkQAAAACQYAAAAJEAAAAAkQAAAACRAAAAAJEAAAAAkQAAAACRAAAAAJ - EAAAAAkQAAAACRAAAAAJEAAAAAkQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACRMAAAAJFAAAAAcI - AAAAAAEAAAAAAAAABBVDcnlzdGFsbG9ncmFwaHkuQXRvbXMCAAAABwkAAAAAAQAAAAAAAAAEFUNyeXN0 - YWxsb2dyYXBoeS5Cb25kcwIAAAABCgAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABCwAAAAUAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQUAAADw8PD/AAYGAAAAAAkGAAAACQYAAAAJBgAAAAAAAAAJ + BgAAAAkGAAAACQYAAAAJBgAAAAkGAAAACQYAAAAJBgAAAAkHAAAACQgAAAAJCQAAAAkKAAAACQsAAAAA + AAAAAAAAAAkMAAAACQ0AAAAACgAAAAAAAABABAAAAAAAAAAAAFlAAAAAAAcDAAAAAAEAAAAAAAAABBVD + cnlzdGFsbG9ncmFwaHkuQm91bmQCAAAABwQAAAAAAQAAAAAAAAAEHENyeXN0YWxsb2dyYXBoeS5MYXR0 + aWNlUGxhbmUCAAAABQUAAAAYQ3J5c3RhbGxvZ3JhcGh5Lk1hdHJpeDNECQAAAANFMTEDRTEyA0UxMwNF + MjEDRTIyA0UyMwNFMzEDRTMyA0UzMwAAAAAAAAAAAAYGBgYGBgYGBgIAAAAAAAAAAADwPwAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAPA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8D8MDgAA + AP4DbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tl + bj1iNzdhNWM1NjE5MzRlMDg5XSxbU3lzdGVtLkludDMyLCBtc2NvcmxpYiwgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldLFtTeXN0ZW0u + SW50MzIsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5 + VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OV0sW1N5c3RlbS5TdHJpbmcsIG1zY29ybGliLCBWZXJzaW9uPTQu + MC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OV1dLCBt + c2NvcmxpYiwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3 + N2E1YzU2MTkzNGUwODldXSwgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFs + LCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5BQcAAAAYQ3J5c3RhbGxvZ3JhcGh5LlN5bW1l + dHJ5GQAAABJTcGFjZUdyb3VwSE1zdWJTdHIPU3BhY2VHcm91cFNGU3RyEVNwYWNlR3JvdXBIYWxsU3Ry + D1NwYWNlR3JvdXBITVN0chNTcGFjZUdyb3VwSE1mdWxsU3RyCE1haW5BeGlzDkxhdHRpY2VUeXBlU3Ry + B1N0clNFMXAHU3RyU0UxdgdTdHJTRTJwB1N0clNFMnYHU3RyU0UzcAdTdHJTRTN2D1BvaW50R3JvdXBI + TVN0cg9Qb2ludEdyb3VwU0ZTdHIMTGF1ZUdyb3VwU3RyEENyeXN0YWxTeXN0ZW1TdHIMU2VyaWVzTnVt + YmVyEFNwYWNlR3JvdXBOdW1iZXITU3BhY2VHcm91cFN1Yk51bWJlchBQb2ludEdyb3VwTnVtYmVyD0xh + dWVHcm91cE51bWJlchNDcnlzdGFsU3lzdGVtTnVtYmVyEUV4dGluY3Rpb25SdWxlU3RyE0NoZWNrRXh0 + aW5jdGlvbkZ1bmMBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAYECAgICAgIPlN5c3RlbS5Db2xsZWN0aW9u + cy5HZW5lcmljLkxpc3RgMVtbU3lzdGVtLkZ1bmNgNFtbU3lzdGVtLkludDMyDgAAAAIAAAAJBgAAAAYQ + AAAAB1Vua25vd24JEAAAAAkQAAAACRAAAAAJBgAAAAkQAAAACRAAAAAJEAAAAAkQAAAACRAAAAAJEAAA + AAkQAAAACRAAAAAJEAAAAAkQAAAACRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJEwAAAAkUAAAA + BwgAAAAAAQAAAAAAAAAEFUNyeXN0YWxsb2dyYXBoeS5BdG9tcwIAAAAHCQAAAAABAAAAAAAAAAQVQ3J5 + c3RhbGxvZ3JhcGh5LkJvbmRzAgAAAAEKAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAELAAAABQAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAPDAAAABUAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAA8MAAAAFQAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - BQ0AAAATQ3J5c3RhbGxvZ3JhcGh5LkVPUxEAAAALQ2VsbFZvbHVtZTACVDACSzAHS3ByaW1lMAZHYW1t - YTAGVGhldGEwAVEFS3BlclQBQQFCAUMXVGhlcm1hbFByZXNzdXJlQXBwcm9hY2gaSXNvdGhlcm1hbFBy - ZXNzdXJlQXBwcm9hY2gBWgFOBE5vdGULVGVtcGVyYXR1cmUAAAAAAAAAAAAAAAQEAAABAAYGBgYGBgYG - BgYGH0NyeXN0YWxsb2dyYXBoeS5UaGVybWFsUHJlc3N1cmUCAAAAIkNyeXN0YWxsb2dyYXBoeS5Jc290 - aGVybWFsUHJlc3N1cmUCAAAABggGAgAAAAAAAAAAwHJAAAAAAADAckAAAAAAAAAAAAAAAAAAABBAAAAA - AAAAAAAAAAAAAMByQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF6////x9D - cnlzdGFsbG9ncmFwaHkuVGhlcm1hbFByZXNzdXJlAQAAAAd2YWx1ZV9fAAgCAAAAAAAAAAXq////IkNy - eXN0YWxsb2dyYXBoeS5Jc290aGVybWFsUHJlc3N1cmUBAAAAB3ZhbHVlX18ACAIAAAAAAAAAAAAAAAAA - AAAAAAAACQYAAAAAAAAAAMByQBETAAAAAAAAAAUUAAAAPlN5c3RlbS5Db2xsZWN0aW9ucy5HZW5lcmlj - Lkxpc3RgMVtbU3lzdGVtLkZ1bmNgNFtbU3lzdGVtLkludDMyAwAAAAZfaXRlbXMFX3NpemUIX3ZlcnNp - b24DAACBA1N5c3RlbS5GdW5jYDRbW1N5c3RlbS5JbnQzMiwgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAu - MCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XSxbU3lzdGVt - LkludDMyLCBtc2NvcmxpYiwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tl - eVRva2VuPWI3N2E1YzU2MTkzNGUwODldLFtTeXN0ZW0uSW50MzIsIG1zY29ybGliLCBWZXJzaW9uPTQu - MC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OV0sW1N5 - c3RlbS5TdHJpbmcsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVi - bGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OV1dW10ICA4AAAAJGAAAAAAAAAAAAAAADBkAAACvA21z - Y29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3 - YTVjNTYxOTM0ZTA4OV0sW1N5c3RlbS5JbnQzMiwgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3Vs - dHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XSxbU3lzdGVtLkludDMy - LCBtc2NvcmxpYiwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2Vu - PWI3N2E1YzU2MTkzNGUwODldLFtTeXN0ZW0uU3RyaW5nLCBtc2NvcmxpYiwgVmVyc2lvbj00LjAuMC4w - LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldXSwgbXNjb3Js - aWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1 - NjE5MzRlMDg5BxgAAAAAAQAAAAAAAAAEG1N5c3RlbS5GdW5jYDRbW1N5c3RlbS5JbnQzMhkAAAAL + AAAFDQAAABNDcnlzdGFsbG9ncmFwaHkuRU9TFQAAABg8RW5hYmxlZD5rX19CYWNraW5nRmllbGQcPENl + bGxWb2x1bWUwPmtfX0JhY2tpbmdGaWVsZBM8VDA+a19fQmFja2luZ0ZpZWxkEzxLMD5rX19CYWNraW5n + RmllbGQUPEtwMD5rX19CYWNraW5nRmllbGQbPEtwSW5maW5pdHk+a19fQmFja2luZ0ZpZWxkFTxLcHAw + PmtfX0JhY2tpbmdGaWVsZBc8R2FtbWEwPmtfX0JhY2tpbmdGaWVsZBc8VGhldGEwPmtfX0JhY2tpbmdG + aWVsZBI8UT5rX19CYWNraW5nRmllbGQWPEtwZXJUPmtfX0JhY2tpbmdGaWVsZBI8QT5rX19CYWNraW5n + RmllbGQSPEI+a19fQmFja2luZ0ZpZWxkEjxDPmtfX0JhY2tpbmdGaWVsZCg8VGhlcm1hbFByZXNzdXJl + QXBwcm9hY2g+a19fQmFja2luZ0ZpZWxkKzxJc290aGVybWFsUHJlc3N1cmVBcHByb2FjaD5rX19CYWNr + aW5nRmllbGQSPFo+a19fQmFja2luZ0ZpZWxkEzxaZT5rX19CYWNraW5nRmllbGQSPE4+a19fQmFja2lu + Z0ZpZWxkFTxOb3RlPmtfX0JhY2tpbmdGaWVsZBw8VGVtcGVyYXR1cmU+a19fQmFja2luZ0ZpZWxkAAAA + AAAAAAAAAAAAAAAEBAAAAAEAAQYGBgYGBgYGBgYGBgYfQ3J5c3RhbGxvZ3JhcGh5LlRoZXJtYWxQcmVz + c3VyZQIAAAAiQ3J5c3RhbGxvZ3JhcGh5Lklzb3RoZXJtYWxQcmVzc3VyZQIAAAAGBggGAgAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXr////H0NyeXN0YWxsb2dyYXBo + eS5UaGVybWFsUHJlc3N1cmUBAAAAB3ZhbHVlX18ACAIAAAAAAAAABer///8iQ3J5c3RhbGxvZ3JhcGh5 + Lklzb3RoZXJtYWxQcmVzc3VyZQEAAAAHdmFsdWVfXwAIAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAkGAAAAAAAAAAAAAAAREwAAAAAAAAAFFAAAAD5TeXN0ZW0uQ29sbGVjdGlvbnMuR2VuZXJpYy5MaXN0 + YDFbW1N5c3RlbS5GdW5jYDRbW1N5c3RlbS5JbnQzMgMAAAAGX2l0ZW1zBV9zaXplCF92ZXJzaW9uAwAA + gQNTeXN0ZW0uRnVuY2A0W1tTeXN0ZW0uSW50MzIsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1 + bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OV0sW1N5c3RlbS5JbnQz + MiwgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tl + bj1iNzdhNWM1NjE5MzRlMDg5XSxbU3lzdGVtLkludDMyLCBtc2NvcmxpYiwgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldLFtTeXN0ZW0u + U3RyaW5nLCBtc2NvcmxpYiwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tl + eVRva2VuPWI3N2E1YzU2MTkzNGUwODldXVtdCAgOAAAACRgAAAAAAAAAAAAAAAwZAAAArwNtc2Nvcmxp + YiwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2 + MTkzNGUwODldLFtTeXN0ZW0uSW50MzIsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9 + bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OV0sW1N5c3RlbS5JbnQzMiwgbXNj + b3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdh + NWM1NjE5MzRlMDg5XSxbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3Vs + dHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0sIG1zY29ybGliLCBW + ZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0 + ZTA4OQcYAAAAAAEAAAAAAAAABBtTeXN0ZW0uRnVuY2A0W1tTeXN0ZW0uSW50MzIZAAAACw== @@ -251,7 +258,7 @@ crystalControl - Crystallography.Controls.CrystalControl, Crystallography.Controls, Version=2020.9.4.138, Culture=neutral, PublicKeyToken=null + Crystallography.Controls.CrystalControl, Crystallography.Controls, Version=2020.10.16.824, Culture=neutral, PublicKeyToken=null groupBox3 @@ -1444,7 +1451,7 @@ of diffraction peaks based on crystal structures crystalDatabaseControl - Crystallography.Controls.CrystalDatabaseControl, Crystallography.Controls, Version=2020.9.4.138, Culture=neutral, PublicKeyToken=null + Crystallography.Controls.CrystalDatabaseControl, Crystallography.Controls, Version=2020.10.16.824, Culture=neutral, PublicKeyToken=null groupBox4 @@ -1474,7 +1481,7 @@ of diffraction peaks based on crystal structures searchCrystalControl - Crystallography.Controls.SearchCrystalControl, Crystallography.Controls, Version=2020.9.4.138, Culture=neutral, PublicKeyToken=null + Crystallography.Controls.SearchCrystalControl, Crystallography.Controls, Version=2020.10.16.824, Culture=neutral, PublicKeyToken=null panel1 @@ -1733,9 +1740,6 @@ of diffraction peaks based on crystal structures AAD+HwAA//8AAA== - - NoControl - 968, 704 @@ -1751,6 +1755,18 @@ of diffraction peaks based on crystal structures System.Windows.Forms.DataGridViewCheckBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + PeakColor + + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + crystalDataGridViewTextBoxColumn + + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + bindingSource @@ -1817,18 +1833,6 @@ of diffraction peaks based on crystal structures System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - PeakColor - - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - crystalDataGridViewTextBoxColumn - - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - FormCrystal diff --git a/PDIndexer/FormFitting.Designer.cs b/PDIndexer/FormFitting.Designer.cs index 003142d..4293fe4 100644 --- a/PDIndexer/FormFitting.Designer.cs +++ b/PDIndexer/FormFitting.Designer.cs @@ -706,7 +706,7 @@ private void InitializeComponent() this.dataGridViewPlaneList.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing; this.dataGridViewPlaneList.RowTemplate.Height = 21; this.dataGridViewPlaneList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; - this.dataGridViewPlaneList.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentClick); + this.dataGridViewPlaneList.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridViewPlanes_CellContentClick); this.dataGridViewPlaneList.SelectionChanged += new System.EventHandler(this.dataGridViewPlaneList_SelectionChanged); // // checkDataGridViewCheckBoxColumn diff --git a/PDIndexer/FormFitting.cs b/PDIndexer/FormFitting.cs index 9c7afd0..b5eae51 100644 --- a/PDIndexer/FormFitting.cs +++ b/PDIndexer/FormFitting.cs @@ -21,6 +21,7 @@ namespace PDIndexer /// public partial class FormFitting : System.Windows.Forms.Form { + #region tB[hAvpeB public Crystal TargetCrystal = new Crystal(); public Profile TargetProfile = new Profile(); @@ -41,22 +42,20 @@ public int SelectedPlaneIndex if (selectedPlaneIndex >= 0 && selectedPlaneIndex != bindingSourcePlanes.Position) bindingSourcePlanes.Position = selectedPlaneIndex; } - get { return selectedPlaneIndex; } - + get => selectedPlaneIndex; } - public string RemovedProfileName - { - set { textBoxRemovedProfileName.Text = value; } - get { return textBoxRemovedProfileName.Text; } - - } + public string RemovedProfileName { set => textBoxRemovedProfileName.Text = value; get => textBoxRemovedProfileName.Text; } /// /// Angle[hAEnergy[hAdl[ĥƂɂꂼSearchRangeɂW (Angle:1, Energy:500, d:0.2) /// public double SerchRangeFactor = 1; - + + #endregion + + + #region RXgN^A[hAN[Y public FormFitting() { InitializeComponent(); @@ -74,6 +73,7 @@ private void FormFitting_FormClosing(object sender, FormClosingEventArgs e) formMain.toolStripButtonFittingParameter.Checked = false; } + #endregion //CtH[FormCrystalŌ̊iq萔ȂǂύXꂽƂĂ΂BI`FbNԂύXꂽł͂΂Ȃ public void ChangeCrystalFromMainForm() @@ -131,6 +131,7 @@ public void SetPlanes(bool IsTargetCrystalChanged) IsCheckedListBoxSelectIndexChangeEventSkip = false; } + #region ʃXg̕ۑARs[ private string generateTableText() { if (TargetCrystal == null) @@ -197,6 +198,10 @@ private void ButtonSaveTableAsCSV_Click(object sender, EventArgs e) sw.Write(text.Replace("\t", ",")); } } + #endregion + + + #region Drag & DropCxg /// /// Rg[CSVt@ChbvꂽƂ /// @@ -246,19 +251,12 @@ private void FormFitting_DragDrop(object sender, DragEventArgs e) } } } - - - private void FormFitting_DragEnter(object sender, DragEventArgs e) - { - if (e.Data.GetDataPresent(DataFormats.FileDrop)) - e.Effect = DragDropEffects.Copy; //hbOꂽf[^`𒲂ׁAt@ĈƂ̓Rs[Ƃ - else - e.Effect = DragDropEffects.None;//t@CȊO͎󂯕tȂ - } - - + //hbOꂽf[^`𒲂ׁAt@ĈƂ̓Rs[Ƃ + private void FormFitting_DragEnter(object sender, DragEventArgs e) + => e.Effect = e.Data.GetDataPresent(DataFormats.FileDrop) ? DragDropEffects.Copy : DragDropEffects.None; + #endregion public void Fitting() { @@ -267,10 +265,10 @@ public void Fitting() if (!(formMain.bindingSourceProfile.Position >= 0 && (dp = (DiffractionProfile)((DataRowView)formMain.bindingSourceProfile.Current).Row[1]) != null)) return; TargetProfile = dp.Profile; - System.Diagnostics.Stopwatch sw = new Stopwatch(); + var sw = new Stopwatch(); sw.Start(); - List listCrystal = formMain.dataSet.DataTableCrystal.CheckedItems; + var listCrystal = formMain.dataSet.DataTableCrystal.CheckedItems; int groupIndex = 0; @@ -312,7 +310,7 @@ public void Fitting() listCrystal[h].Plane[i].peakFunction.GroupIndex = groupIndex++; } } - + if (!checkBoxPatternDecomposition.Checked) @@ -449,19 +447,19 @@ public void Fitting() #endregion { #region ׂĂ܂Ƃ߂ătBbeBO - /* for (int h = 0; h < listCrystal.Count; h++) - { - for (int i = 0; i < listCrystal[h].Plane.Count; i++) - { - //Simple[h͂ŏ - if (listCrystal[h].Plane[i].IsFittingChecked && listCrystal[h].Plane[i].SerchOption == PeakFunctionForm.Simple) - { - listCrystal[h].Plane[i].simpleParameter = FittingPeak.FitPeakAsSimple(listCrystal[h].Plane[i].XCalc, targetCrystal.Plane[i].SerchRange, targetProfile.Pt.ToArray()); - listCrystal[h].Plane[i].XObs = listCrystal[h].Plane[i].simpleParameter.X; - listCrystal[h].Plane[i].peakFunction.Xerr = targetProfile.Pt[1].X - targetProfile.Pt[0].X; - } - } - }*/ + /* for (int h = 0; h < listCrystal.Count; h++) + { + for (int i = 0; i < listCrystal[h].Plane.Count; i++) + { + //Simple[h͂ŏ + if (listCrystal[h].Plane[i].IsFittingChecked && listCrystal[h].Plane[i].SerchOption == PeakFunctionForm.Simple) + { + listCrystal[h].Plane[i].simpleParameter = FittingPeak.FitPeakAsSimple(listCrystal[h].Plane[i].XCalc, targetCrystal.Plane[i].SerchRange, targetProfile.Pt.ToArray()); + listCrystal[h].Plane[i].XObs = listCrystal[h].Plane[i].simpleParameter.X; + listCrystal[h].Plane[i].peakFunction.Xerr = targetProfile.Pt[1].X - targetProfile.Pt[0].X; + } + } + }*/ //SẴtBbeBOΏۃs[Ni[ List pvpTemp2 = new List(); @@ -530,7 +528,7 @@ public void Fitting() } else if (formMain.AxisMode == HorizontalAxis.WaveNumber) { - listCrystal[h].Plane[i].dObs = HorizontalAxisConverter.WaveNumberToD(listCrystal[h].Plane[i].XObs*10); + listCrystal[h].Plane[i].dObs = HorizontalAxisConverter.WaveNumberToD(listCrystal[h].Plane[i].XObs * 10); listCrystal[h].Plane[i].Weight = 1; } } @@ -538,15 +536,12 @@ public void Fitting() listCrystal[h].Plane[i].dObs = double.NaN; } - + formMain.toolStripStatusLabelCalcTime.Text = "Calculating Time (Peak Fitting) : " + sw.ElapsedMilliseconds.ToString() + "ms"; //tBbeBOʂ - try - { - FittingDiffraction(); - } + try { FittingDiffraction(); } catch { } refleshTable(); @@ -555,11 +550,10 @@ public void Fitting() } - //݂̃`FbN󋵂ƋԌQŏQ@ɂtBbeBO - #region + #region ݂̃`FbN󋵂ƋԌQŏQ@ɂiq萔tBbeBO public void FittingDiffraction() { - List p = new List(); + var p = new List(); for (int i = 0; i < TargetCrystal.Plane.Count; i++) if (TargetCrystal.Plane[i].IsFittingChecked && TargetCrystal.Plane[i].SerchOption == PeakFunctionForm.Simple || TargetCrystal.Plane[i].observedIntensity > 0) p.Add(TargetCrystal.Plane[i]); @@ -628,7 +622,7 @@ public void FittingDiffraction() V_err = Math.Sqrt(3) * a * a_err; } break; - #endregion + #endregion case "tetragonal": #region tetragonal Q = new DenseMatrix(column, 2); @@ -671,7 +665,7 @@ public void FittingDiffraction() V_err = Math.Sqrt(2 * a * c * a_err * a_err + a * a * c_err * c_err); } break; - #endregion + #endregion case "hexagonal": #region hexagonal Q = new DenseMatrix(column, 2); @@ -716,7 +710,7 @@ public void FittingDiffraction() } break; - #endregion + #endregion case "trigonal": #region trigonal Q = new DenseMatrix(column, 2); @@ -761,7 +755,7 @@ public void FittingDiffraction() } break; - #endregion + #endregion case "orthorhombic": #region orthorhombic Q = new DenseMatrix(column, 3); @@ -807,7 +801,7 @@ public void FittingDiffraction() V_err = Math.Sqrt(b * c * a_err * a_err + c * a * b_err * b_err + a * b * c_err * c_err); } break; - #endregion + #endregion case "monoclinic": #region monoclinic Q = new DenseMatrix(column, 4); @@ -997,7 +991,7 @@ public void FittingDiffraction() break; } break; - #endregion + #endregion case "triclinic": #region triclinic @@ -1227,14 +1221,25 @@ public void FittingDiffraction() alfa = Math.PI - alfa; beta = Math.PI - beta; gamma = Math.PI - gamma; }*/ break; -#endregion + #endregion + } + + //Ȃꍇ́Aiq萔萔{̂߂ 2020/10/16 + if(a==0 && p.Count>0) + { + + double coeff = p.Sum(e => e.Weight * e.d * e.dObs) / p.Sum(e => e.Weight * e.d * e.d); + a = coeff * TargetCrystal.A; + b = coeff * TargetCrystal.B; + c = coeff * TargetCrystal.C; + alfa = TargetCrystal.Alpha; + beta = TargetCrystal.Beta; + gamma = TargetCrystal.Gamma; + } - temp_crystal = new Crystal( - (a, b, c, alfa, beta, gamma), - (a_err, b_err, c_err, alpha_err, beta_err, gamma_err), - - 0, "", Color.Black); - temp_crystal.Volume = V; + + temp_crystal = new Crystal((a, b, c, alfa, beta, gamma), (a_err, b_err, c_err, alpha_err, beta_err, gamma_err), 0, "", Color.Black); + //temp_crystal.Volume = V; temp_crystal.Volume_err = V_err; SetTextBox(temp_crystal); } @@ -1274,7 +1279,7 @@ public void buttonCopyClipboard_Click(object sender, System.EventArgs e) } - private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e) + private void dataGridViewPlanes_CellContentClick(object sender, DataGridViewCellEventArgs e) { if (e.ColumnIndex == 0 && e.RowIndex >= 0) { @@ -1285,7 +1290,7 @@ private void dataGridView1_CellContentClick(object sender, DataGridViewCellEvent dataGridViewPlaneList_SelectionChanged(new object(), new EventArgs()); } - private void dataGridViewPlaneList_SelectionChanged(object sender, EventArgs e) + public void dataGridViewPlaneList_SelectionChanged(object sender, EventArgs e) { if (IsCheckedListBoxSelectIndexChangeEventSkip || TargetCrystal==null) return; if (bindingSourcePlanes.Position >= 0) @@ -1323,40 +1328,15 @@ private void SetTextBox(Crystal c) textBoxBeta.Text = (c.Beta * 180 / Math.PI).ToString("f5"); textBoxGamma.Text = (c.Gamma * 180 / Math.PI).ToString("f5"); - textBoxV.Text = (c.Volume * 1000).ToString("f6"); - - if (c.A_err > -1) - textBoxA_err.Text = (c.A_err * 10).ToString("f6"); - else - textBoxA_err.Text = ""; - if (c.B_err > -1) - textBoxB_err.Text = (c.B_err * 10).ToString("f6"); - else - textBoxB_err.Text = ""; - if (c.C_err > -1) - textBoxC_err.Text = (c.C_err * 10).ToString("f6"); - else - textBoxC_err.Text = ""; - - if (c.Alpha_err > -1) - textBoxAlpha_err.Text = (c.Alpha_err * 180 / Math.PI).ToString("f5"); - else - textBoxAlpha_err.Text = ""; - - if (c.Beta_err > -1) - textBoxBeta_err.Text = (c.Beta_err * 180 / Math.PI).ToString("f5"); - else - textBoxBeta_err.Text = ""; + textBoxA_err.Text = (c.A_err > -1) ? (c.A_err * 10).ToString("f6") : "NA"; + textBoxB_err.Text = (c.B_err > -1) ? (c.B_err * 10).ToString("f6") : "NA"; + textBoxC_err.Text = (c.C_err > -1) ? (c.C_err * 10).ToString("f6") : "NA"; + textBoxAlpha_err.Text = (c.Alpha_err > -1) ? (c.Alpha_err * 180 / Math.PI).ToString("f5") : "NA"; + textBoxBeta_err.Text = (c.Beta_err > -1) ? (c.Beta_err * 180 / Math.PI).ToString("f5") : "NA"; + textBoxGamma_err.Text = (c.Gamma_err > -1) ? (c.Gamma_err * 180 / Math.PI).ToString("f5") : "NA"; - if (c.Gamma_err > -1) - textBoxGamma_err.Text = (c.Gamma_err * 180 / Math.PI).ToString("f5"); - else - textBoxGamma_err.Text = ""; - - if (c.Volume_err > -1) - textBoxV_err.Text = (c.Volume_err * 1000).ToString("f6"); - else - textBoxV_err.Text = ""; + textBoxV.Text = (c.Volume * 1000).ToString("f6"); + textBoxV_err.Text = (c.Volume_err > -1) ? (c.Volume_err * 1000).ToString("f6") : "NA"; } private void textBoxA_TextChanged(object sender, System.EventArgs e) @@ -1517,7 +1497,7 @@ private void buttonRemovePeaks_Click(object sender, EventArgs e) { if (TargetCrystal == null || TargetProfile == null) return; - Profile p = new Profile(); + var p = new Profile(); p.Pt.AddRange(TargetProfile.Pt.ToArray()); if (TargetCrystal.Plane != null) foreach (Plane plane in TargetCrystal.Plane) @@ -1535,20 +1515,21 @@ private void buttonRemovePeaks_Click(object sender, EventArgs e) } - DiffractionProfile output = new DiffractionProfile(); - output.OriginalProfile = p; - output.Name = RemovedProfileName; - output.ColorARGB = formMain.generateRandomColor().ToArgb(); - - output.WaveSource = formMain.WaveSource; - output.WaveColor = formMain.WaveColor; - output.SrcAxisMode = formMain.AxisMode; - output.XrayElementNumber = formMain.XraySourceElementNumber; - output.XrayLine = formMain.XraySourceLine; - output.SrcWaveLength = formMain.WaveLength; - output.SrcTakeoffAngle = formMain.TakeoffAngle; - output.SrcTofAngle = formMain.TakeoffAngle; - output.SrcTofLength = formMain.TofLength; + var output = new DiffractionProfile + { + OriginalProfile = p, + Name = RemovedProfileName, + ColorARGB = formMain.generateRandomColor().ToArgb(), + WaveSource = formMain.WaveSource, + WaveColor = formMain.WaveColor, + SrcAxisMode = formMain.AxisMode, + XrayElementNumber = formMain.XraySourceElementNumber, + XrayLine = formMain.XraySourceLine, + SrcWaveLength = formMain.WaveLength, + SrcTakeoffAngle = formMain.TakeoffAngle, + SrcTofAngle = formMain.TakeoffAngle, + SrcTofLength = formMain.TofLength + }; formMain.AddProfileToCheckedListBox(output, true, true); } @@ -1568,18 +1549,8 @@ private void buttonResetTakeoffAngle_Click(object sender, EventArgs e) if (formMain.AxisMode == HorizontalAxis.EnergyXray) { DiffractionProfile dp = (DiffractionProfile)((DataRowView)formMain.bindingSourceProfile.Current).Row[1]; - - - //dp.SrcTakeoffAngle = xAxisUserControl.TakeoffAngle; - - - - formMain.horizontalAxisUserControl_AxisPropertyChanged(); - - - } } } diff --git a/PDIndexer/FormMain.Designer.cs b/PDIndexer/FormMain.Designer.cs index be83a0d..64427c0 100644 --- a/PDIndexer/FormMain.Designer.cs +++ b/PDIndexer/FormMain.Designer.cs @@ -204,6 +204,22 @@ private void InitializeComponent() this.Crystal = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.bindingSourceCrystal = new System.Windows.Forms.BindingSource(this.components); this.checkBoxCrystalParameter = new System.Windows.Forms.CheckBox(); + this.toolStrip2 = new System.Windows.Forms.ToolStrip(); + this.toolStripButtonCrystalParameter = new System.Windows.Forms.ToolStripButton(); + this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator(); + this.toolStripButtonProfileParameter = new System.Windows.Forms.ToolStripButton(); + this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator(); + this.toolStripButtonEquationOfState = new System.Windows.Forms.ToolStripButton(); + this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator(); + this.toolStripButtonFittingParameter = new System.Windows.Forms.ToolStripButton(); + this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator(); + this.toolStripButtonCellFinder = new System.Windows.Forms.ToolStripButton(); + this.toolStripSeparator11 = new System.Windows.Forms.ToolStripSeparator(); + this.toolStripButtonStressAnalysis = new System.Windows.Forms.ToolStripButton(); + this.toolStripSeparator10 = new System.Windows.Forms.ToolStripSeparator(); + this.toolStripButtonAtomicPositonFinder = new System.Windows.Forms.ToolStripButton(); + this.toolStripSeparator12 = new System.Windows.Forms.ToolStripSeparator(); + this.toolStripButtonLPO = new System.Windows.Forms.ToolStripButton(); this.menuStrip = new System.Windows.Forms.MenuStrip(); this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.readPatternProfileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); @@ -247,22 +263,6 @@ private void InitializeComponent() this.languageToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.englishToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.japaneseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStrip2 = new System.Windows.Forms.ToolStrip(); - this.toolStripButtonCrystalParameter = new System.Windows.Forms.ToolStripButton(); - this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator(); - this.toolStripButtonProfileParameter = new System.Windows.Forms.ToolStripButton(); - this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator(); - this.toolStripButtonEquationOfState = new System.Windows.Forms.ToolStripButton(); - this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator(); - this.toolStripButtonFittingParameter = new System.Windows.Forms.ToolStripButton(); - this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator(); - this.toolStripButtonCellFinder = new System.Windows.Forms.ToolStripButton(); - this.toolStripSeparator11 = new System.Windows.Forms.ToolStripSeparator(); - this.toolStripButtonStressAnalysis = new System.Windows.Forms.ToolStripButton(); - this.toolStripSeparator10 = new System.Windows.Forms.ToolStripSeparator(); - this.toolStripButtonAtomicPositonFinder = new System.Windows.Forms.ToolStripButton(); - this.toolStripSeparator12 = new System.Windows.Forms.ToolStripSeparator(); - this.toolStripButtonLPO = new System.Windows.Forms.ToolStripButton(); this.button2 = new System.Windows.Forms.Button(); this.button3 = new System.Windows.Forms.Button(); this.buttonAu = new System.Windows.Forms.Button(); @@ -508,44 +508,29 @@ private void InitializeComponent() this.groupBoxCrystalData.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dataGridViewCrystals)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.bindingSourceCrystal)).BeginInit(); - this.menuStrip.SuspendLayout(); this.toolStrip2.SuspendLayout(); + this.menuStrip.SuspendLayout(); this.SuspendLayout(); // // toolStripContainer1 // - resources.ApplyResources(this.toolStripContainer1, "toolStripContainer1"); // // toolStripContainer1.BottomToolStripPanel // - resources.ApplyResources(this.toolStripContainer1.BottomToolStripPanel, "toolStripContainer1.BottomToolStripPanel"); this.toolStripContainer1.BottomToolStripPanel.Controls.Add(this.statusStrip1); - this.toolTip.SetToolTip(this.toolStripContainer1.BottomToolStripPanel, resources.GetString("toolStripContainer1.BottomToolStripPanel.ToolTip")); // // toolStripContainer1.ContentPanel // resources.ApplyResources(this.toolStripContainer1.ContentPanel, "toolStripContainer1.ContentPanel"); this.toolStripContainer1.ContentPanel.Controls.Add(this.splitContainer1); - this.toolTip.SetToolTip(this.toolStripContainer1.ContentPanel, resources.GetString("toolStripContainer1.ContentPanel.ToolTip")); - // - // toolStripContainer1.LeftToolStripPanel - // - resources.ApplyResources(this.toolStripContainer1.LeftToolStripPanel, "toolStripContainer1.LeftToolStripPanel"); - this.toolTip.SetToolTip(this.toolStripContainer1.LeftToolStripPanel, resources.GetString("toolStripContainer1.LeftToolStripPanel.ToolTip")); + resources.ApplyResources(this.toolStripContainer1, "toolStripContainer1"); this.toolStripContainer1.Name = "toolStripContainer1"; // - // toolStripContainer1.RightToolStripPanel - // - resources.ApplyResources(this.toolStripContainer1.RightToolStripPanel, "toolStripContainer1.RightToolStripPanel"); - this.toolTip.SetToolTip(this.toolStripContainer1.RightToolStripPanel, resources.GetString("toolStripContainer1.RightToolStripPanel.ToolTip")); - this.toolTip.SetToolTip(this.toolStripContainer1, resources.GetString("toolStripContainer1.ToolTip")); - // // toolStripContainer1.TopToolStripPanel // - resources.ApplyResources(this.toolStripContainer1.TopToolStripPanel, "toolStripContainer1.TopToolStripPanel"); this.toolStripContainer1.TopToolStripPanel.Controls.Add(this.toolStrip2); this.toolStripContainer1.TopToolStripPanel.Controls.Add(this.menuStrip); - this.toolTip.SetToolTip(this.toolStripContainer1.TopToolStripPanel, resources.GetString("toolStripContainer1.TopToolStripPanel.ToolTip")); + resources.ApplyResources(this.toolStripContainer1.TopToolStripPanel, "toolStripContainer1.TopToolStripPanel"); // // statusStrip1 // @@ -558,17 +543,16 @@ private void InitializeComponent() this.toolStripStatusLabel2}); this.statusStrip1.Name = "statusStrip1"; this.statusStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional; - this.toolTip.SetToolTip(this.statusStrip1, resources.GetString("statusStrip1.ToolTip")); // // toolStripProgressBar // - resources.ApplyResources(this.toolStripProgressBar, "toolStripProgressBar"); this.toolStripProgressBar.Name = "toolStripProgressBar"; + resources.ApplyResources(this.toolStripProgressBar, "toolStripProgressBar"); // // toolStripStatusLabelCalcTime // - resources.ApplyResources(this.toolStripStatusLabelCalcTime, "toolStripStatusLabelCalcTime"); this.toolStripStatusLabelCalcTime.Name = "toolStripStatusLabelCalcTime"; + resources.ApplyResources(this.toolStripStatusLabelCalcTime, "toolStripStatusLabelCalcTime"); // // toolStripStatusLabel1 // @@ -587,38 +571,31 @@ private void InitializeComponent() // // splitContainer1.Panel1 // - resources.ApplyResources(this.splitContainer1.Panel1, "splitContainer1.Panel1"); this.splitContainer1.Panel1.Controls.Add(this.tabControl); this.splitContainer1.Panel1.Controls.Add(this.tabControl1); this.splitContainer1.Panel1.Controls.Add(this.pictureBoxMain); this.splitContainer1.Panel1.Controls.Add(this.panel1); - this.toolTip.SetToolTip(this.splitContainer1.Panel1, resources.GetString("splitContainer1.Panel1.ToolTip")); // // splitContainer1.Panel2 // - resources.ApplyResources(this.splitContainer1.Panel2, "splitContainer1.Panel2"); this.splitContainer1.Panel2.Controls.Add(this.splitContainer2); - this.toolTip.SetToolTip(this.splitContainer1.Panel2, resources.GetString("splitContainer1.Panel2.ToolTip")); - this.toolTip.SetToolTip(this.splitContainer1, resources.GetString("splitContainer1.ToolTip")); // // tabControl // - resources.ApplyResources(this.tabControl, "tabControl"); this.tabControl.Controls.Add(this.tabPage1); this.tabControl.Controls.Add(this.tabPage2); + resources.ApplyResources(this.tabControl, "tabControl"); this.tabControl.HotTrack = true; this.tabControl.Name = "tabControl"; this.tabControl.SelectedIndex = 0; - this.toolTip.SetToolTip(this.tabControl, resources.GetString("tabControl.ToolTip")); this.tabControl.Click += new System.EventHandler(this.tabControl_Click); // // tabPage1 // - resources.ApplyResources(this.tabPage1, "tabPage1"); this.tabPage1.Controls.Add(this.horizontalAxisUserControl); this.tabPage1.Controls.Add(this.flowLayoutPanel4); + resources.ApplyResources(this.tabPage1, "tabPage1"); this.tabPage1.Name = "tabPage1"; - this.toolTip.SetToolTip(this.tabPage1, resources.GetString("tabPage1.ToolTip")); this.tabPage1.UseVisualStyleBackColor = true; // // horizontalAxisUserControl @@ -634,7 +611,6 @@ private void InitializeComponent() this.horizontalAxisUserControl.TofAngle = 1.5707963267948966D; this.horizontalAxisUserControl.TofAngleText = "90"; this.horizontalAxisUserControl.TofLength = 90D; - this.toolTip.SetToolTip(this.horizontalAxisUserControl, resources.GetString("horizontalAxisUserControl.ToolTip")); this.horizontalAxisUserControl.WaveColor = Crystallography.WaveColor.Monochrome; this.horizontalAxisUserControl.WaveLength = 0.15418710666666666D; this.horizontalAxisUserControl.WaveLengthText = "1.54187106666667"; @@ -648,7 +624,6 @@ private void InitializeComponent() resources.ApplyResources(this.flowLayoutPanel4, "flowLayoutPanel4"); this.flowLayoutPanel4.Controls.Add(this.checkBoxChangeHorizontalAppearance); this.flowLayoutPanel4.Name = "flowLayoutPanel4"; - this.toolTip.SetToolTip(this.flowLayoutPanel4, resources.GetString("flowLayoutPanel4.ToolTip")); // // checkBoxChangeHorizontalAppearance // @@ -661,21 +636,20 @@ private void InitializeComponent() // // tabPage2 // - resources.ApplyResources(this.tabPage2, "tabPage2"); this.tabPage2.Controls.Add(this.groupBox4); this.tabPage2.Controls.Add(this.groupBox3); this.tabPage2.Controls.Add(this.groupBox2); this.tabPage2.Controls.Add(this.checkBoxErrorBar); this.tabPage2.Controls.Add(this.checkBoxShowScaleLine); + resources.ApplyResources(this.tabPage2, "tabPage2"); this.tabPage2.Name = "tabPage2"; - this.toolTip.SetToolTip(this.tabPage2, resources.GetString("tabPage2.ToolTip")); this.tabPage2.UseVisualStyleBackColor = true; // // groupBox4 // - resources.ApplyResources(this.groupBox4, "groupBox4"); this.groupBox4.Controls.Add(this.flowLayoutPanel2); this.groupBox4.Controls.Add(this.flowLayoutPanel1); + resources.ApplyResources(this.groupBox4, "groupBox4"); this.groupBox4.Name = "groupBox4"; this.groupBox4.TabStop = false; this.toolTip.SetToolTip(this.groupBox4, resources.GetString("groupBox4.ToolTip")); @@ -686,7 +660,6 @@ private void InitializeComponent() this.flowLayoutPanel2.Controls.Add(this.radioButtonLinearity); this.flowLayoutPanel2.Controls.Add(this.radioButtonLogarithm); this.flowLayoutPanel2.Name = "flowLayoutPanel2"; - this.toolTip.SetToolTip(this.flowLayoutPanel2, resources.GetString("flowLayoutPanel2.ToolTip")); // // radioButtonLinearity // @@ -711,7 +684,6 @@ private void InitializeComponent() this.flowLayoutPanel1.Controls.Add(this.radioButtonRawCounts); this.flowLayoutPanel1.Controls.Add(this.radioButtonCountsPerStep); this.flowLayoutPanel1.Name = "flowLayoutPanel1"; - this.toolTip.SetToolTip(this.flowLayoutPanel1, resources.GetString("flowLayoutPanel1.ToolTip")); // // radioButtonRawCounts // @@ -732,7 +704,6 @@ private void InitializeComponent() // // groupBox3 // - resources.ApplyResources(this.groupBox3, "groupBox3"); this.groupBox3.Controls.Add(this.numericalTextBoxIncreasingPixels); this.groupBox3.Controls.Add(this.numericUpDownIncreasingPixels); this.groupBox3.Controls.Add(this.radioButtonMultiProfileMode); @@ -740,9 +711,9 @@ private void InitializeComponent() this.groupBox3.Controls.Add(this.radioButtonSingleProfileMode); this.groupBox3.Controls.Add(this.label6); this.groupBox3.Controls.Add(this.label1); + resources.ApplyResources(this.groupBox3, "groupBox3"); this.groupBox3.Name = "groupBox3"; this.groupBox3.TabStop = false; - this.toolTip.SetToolTip(this.groupBox3, resources.GetString("groupBox3.ToolTip")); // // numericalTextBoxIncreasingPixels // @@ -755,7 +726,6 @@ private void InitializeComponent() this.numericalTextBoxIncreasingPixels.RestrictLimitValue = false; this.numericalTextBoxIncreasingPixels.SkipEventDuringInput = false; this.numericalTextBoxIncreasingPixels.TextFont = new System.Drawing.Font("Segoe UI Symbol", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.toolTip.SetToolTip(this.numericalTextBoxIncreasingPixels, resources.GetString("numericalTextBoxIncreasingPixels.ToolTip")); this.numericalTextBoxIncreasingPixels.Value = 1024D; this.numericalTextBoxIncreasingPixels.ValueChanged += new Crystallography.Controls.NumericBox.MyEventHandler(this.radioButtonMultiProfileMode_CheckChanged); // @@ -773,7 +743,6 @@ private void InitializeComponent() 0, -2147483648}); this.numericUpDownIncreasingPixels.Name = "numericUpDownIncreasingPixels"; - this.toolTip.SetToolTip(this.numericUpDownIncreasingPixels, resources.GetString("numericUpDownIncreasingPixels.ToolTip")); this.numericUpDownIncreasingPixels.Value = new decimal(new int[] { 10, 0, @@ -787,7 +756,6 @@ private void InitializeComponent() this.radioButtonMultiProfileMode.Checked = true; this.radioButtonMultiProfileMode.Name = "radioButtonMultiProfileMode"; this.radioButtonMultiProfileMode.TabStop = true; - this.toolTip.SetToolTip(this.radioButtonMultiProfileMode, resources.GetString("radioButtonMultiProfileMode.ToolTip")); this.radioButtonMultiProfileMode.UseVisualStyleBackColor = true; // // checkBoxChangeColor @@ -804,7 +772,6 @@ private void InitializeComponent() // resources.ApplyResources(this.radioButtonSingleProfileMode, "radioButtonSingleProfileMode"); this.radioButtonSingleProfileMode.Name = "radioButtonSingleProfileMode"; - this.toolTip.SetToolTip(this.radioButtonSingleProfileMode, resources.GetString("radioButtonSingleProfileMode.ToolTip")); this.radioButtonSingleProfileMode.UseVisualStyleBackColor = true; this.radioButtonSingleProfileMode.CheckedChanged += new System.EventHandler(this.radioButtonMultiProfileMode_CheckChanged); // @@ -812,31 +779,28 @@ private void InitializeComponent() // resources.ApplyResources(this.label6, "label6"); this.label6.Name = "label6"; - this.toolTip.SetToolTip(this.label6, resources.GetString("label6.ToolTip")); // // label1 // resources.ApplyResources(this.label1, "label1"); this.label1.Name = "label1"; - this.toolTip.SetToolTip(this.label1, resources.GetString("label1.ToolTip")); // // groupBox2 // - resources.ApplyResources(this.groupBox2, "groupBox2"); this.groupBox2.Controls.Add(this.colorControlScaleText); this.groupBox2.Controls.Add(this.colorControlScaleLine); this.groupBox2.Controls.Add(this.colorControlBack); this.groupBox2.Controls.Add(this.label5); this.groupBox2.Controls.Add(this.label2); this.groupBox2.Controls.Add(this.label4); + resources.ApplyResources(this.groupBox2, "groupBox2"); this.groupBox2.Name = "groupBox2"; this.groupBox2.TabStop = false; - this.toolTip.SetToolTip(this.groupBox2, resources.GetString("groupBox2.ToolTip")); // // colorControlScaleText // - resources.ApplyResources(this.colorControlScaleText, "colorControlScaleText"); this.colorControlScaleText.Argb = -16777216; + resources.ApplyResources(this.colorControlScaleText, "colorControlScaleText"); this.colorControlScaleText.Blue = 0; this.colorControlScaleText.BlueF = 0F; this.colorControlScaleText.BoxSize = new System.Drawing.Size(20, 20); @@ -852,8 +816,8 @@ private void InitializeComponent() // // colorControlScaleLine // - resources.ApplyResources(this.colorControlScaleLine, "colorControlScaleLine"); this.colorControlScaleLine.Argb = -2894893; + resources.ApplyResources(this.colorControlScaleLine, "colorControlScaleLine"); this.colorControlScaleLine.Blue = 211; this.colorControlScaleLine.BlueF = 0.827451F; this.colorControlScaleLine.BoxSize = new System.Drawing.Size(20, 20); @@ -869,8 +833,8 @@ private void InitializeComponent() // // colorControlBack // - resources.ApplyResources(this.colorControlBack, "colorControlBack"); this.colorControlBack.Argb = -1; + resources.ApplyResources(this.colorControlBack, "colorControlBack"); this.colorControlBack.Blue = 255; this.colorControlBack.BlueF = 1F; this.colorControlBack.BoxSize = new System.Drawing.Size(20, 20); @@ -920,18 +884,16 @@ private void InitializeComponent() // // tabControl1 // - resources.ApplyResources(this.tabControl1, "tabControl1"); this.tabControl1.Controls.Add(this.tabPage3); this.tabControl1.HotTrack = true; + resources.ApplyResources(this.tabControl1, "tabControl1"); this.tabControl1.Multiline = true; this.tabControl1.Name = "tabControl1"; this.tabControl1.SelectedIndex = 0; - this.toolTip.SetToolTip(this.tabControl1, resources.GetString("tabControl1.ToolTip")); this.tabControl1.Click += new System.EventHandler(this.tabControl1_Click); // // tabPage3 // - resources.ApplyResources(this.tabPage3, "tabPage3"); this.tabPage3.Controls.Add(this.numericUpDownMaxInt); this.tabPage3.Controls.Add(this.label7); this.tabPage3.Controls.Add(this.label21); @@ -944,8 +906,8 @@ private void InitializeComponent() this.tabPage3.Controls.Add(this.comboBoxScale2); this.tabPage3.Controls.Add(this.comboBoxScale1); this.tabPage3.Controls.Add(this.graphControlFrequency); + resources.ApplyResources(this.tabPage3, "tabPage3"); this.tabPage3.Name = "tabPage3"; - this.toolTip.SetToolTip(this.tabPage3, resources.GetString("tabPage3.ToolTip")); this.tabPage3.UseVisualStyleBackColor = true; // // numericUpDownMaxInt @@ -967,7 +929,6 @@ private void InitializeComponent() 0, 0}); this.numericUpDownMaxInt.Name = "numericUpDownMaxInt"; - this.toolTip.SetToolTip(this.numericUpDownMaxInt, resources.GetString("numericUpDownMaxInt.ToolTip")); this.numericUpDownMaxInt.Value = new decimal(new int[] { 65535, 0, @@ -979,13 +940,11 @@ private void InitializeComponent() // resources.ApplyResources(this.label7, "label7"); this.label7.Name = "label7"; - this.toolTip.SetToolTip(this.label7, resources.GetString("label7.ToolTip")); // // label21 // resources.ApplyResources(this.label21, "label21"); this.label21.Name = "label21"; - this.toolTip.SetToolTip(this.label21, resources.GetString("label21.ToolTip")); // // numericUpDownMinInt // @@ -1001,7 +960,6 @@ private void InitializeComponent() 0, 0}); this.numericUpDownMinInt.Name = "numericUpDownMinInt"; - this.toolTip.SetToolTip(this.numericUpDownMinInt, resources.GetString("numericUpDownMinInt.ToolTip")); this.numericUpDownMinInt.ValueChanged += new System.EventHandler(this.numericUpDownMinInt_ValueChanged); // // checkBoxShowUnrolledImage @@ -1010,7 +968,6 @@ private void InitializeComponent() this.checkBoxShowUnrolledImage.Checked = true; this.checkBoxShowUnrolledImage.CheckState = System.Windows.Forms.CheckState.Checked; this.checkBoxShowUnrolledImage.Name = "checkBoxShowUnrolledImage"; - this.toolTip.SetToolTip(this.checkBoxShowUnrolledImage, resources.GetString("checkBoxShowUnrolledImage.ToolTip")); this.checkBoxShowUnrolledImage.UseVisualStyleBackColor = true; this.checkBoxShowUnrolledImage.CheckedChanged += new System.EventHandler(this.checkBoxShowUnrolledImage_CheckedChanged); // @@ -1018,60 +975,54 @@ private void InitializeComponent() // resources.ApplyResources(this.label24, "label24"); this.label24.Name = "label24"; - this.toolTip.SetToolTip(this.label24, resources.GetString("label24.ToolTip")); // // label23 // resources.ApplyResources(this.label23, "label23"); this.label23.Name = "label23"; - this.toolTip.SetToolTip(this.label23, resources.GetString("label23.ToolTip")); // // label22 // resources.ApplyResources(this.label22, "label22"); this.label22.Name = "label22"; - this.toolTip.SetToolTip(this.label22, resources.GetString("label22.ToolTip")); // // comboBoxGradient // - resources.ApplyResources(this.comboBoxGradient, "comboBoxGradient"); this.comboBoxGradient.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + resources.ApplyResources(this.comboBoxGradient, "comboBoxGradient"); this.comboBoxGradient.FormattingEnabled = true; this.comboBoxGradient.Items.AddRange(new object[] { resources.GetString("comboBoxGradient.Items"), resources.GetString("comboBoxGradient.Items1")}); this.comboBoxGradient.Name = "comboBoxGradient"; - this.toolTip.SetToolTip(this.comboBoxGradient, resources.GetString("comboBoxGradient.ToolTip")); this.comboBoxGradient.SelectedIndexChanged += new System.EventHandler(this.toolStripComboBoxGradient_SelectedIndexChanged); // // comboBoxScale2 // - resources.ApplyResources(this.comboBoxScale2, "comboBoxScale2"); this.comboBoxScale2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + resources.ApplyResources(this.comboBoxScale2, "comboBoxScale2"); this.comboBoxScale2.FormattingEnabled = true; this.comboBoxScale2.Items.AddRange(new object[] { resources.GetString("comboBoxScale2.Items"), resources.GetString("comboBoxScale2.Items1")}); this.comboBoxScale2.Name = "comboBoxScale2"; - this.toolTip.SetToolTip(this.comboBoxScale2, resources.GetString("comboBoxScale2.ToolTip")); this.comboBoxScale2.SelectedIndexChanged += new System.EventHandler(this.toolStripComboBoxScale2_SelectedIndexChanged); // // comboBoxScale1 // - resources.ApplyResources(this.comboBoxScale1, "comboBoxScale1"); this.comboBoxScale1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + resources.ApplyResources(this.comboBoxScale1, "comboBoxScale1"); this.comboBoxScale1.FormattingEnabled = true; this.comboBoxScale1.Items.AddRange(new object[] { resources.GetString("comboBoxScale1.Items"), resources.GetString("comboBoxScale1.Items1")}); this.comboBoxScale1.Name = "comboBoxScale1"; - this.toolTip.SetToolTip(this.comboBoxScale1, resources.GetString("comboBoxScale1.ToolTip")); this.comboBoxScale1.SelectedIndexChanged += new System.EventHandler(this.toolStripComboBoxScale_SelectedIndexChanged); // // graphControlFrequency // - resources.ApplyResources(this.graphControlFrequency, "graphControlFrequency"); this.graphControlFrequency.AllowMouseOperation = true; + resources.ApplyResources(this.graphControlFrequency, "graphControlFrequency"); this.graphControlFrequency.BackgroundColor = System.Drawing.Color.White; this.graphControlFrequency.BottomMargin = 0D; this.graphControlFrequency.DivisionLineColor = System.Drawing.Color.Gray; @@ -1100,7 +1051,6 @@ private void InitializeComponent() this.graphControlFrequency.OriginPosition = new System.Drawing.Point(40, 20); this.graphControlFrequency.Smoothing = false; this.graphControlFrequency.TextFont = new System.Drawing.Font("Arial", 9F); - this.toolTip.SetToolTip(this.graphControlFrequency, resources.GetString("graphControlFrequency.ToolTip")); this.graphControlFrequency.UnitX = ""; this.graphControlFrequency.UnitY = ""; this.graphControlFrequency.UpperText = ""; @@ -1117,9 +1067,9 @@ private void InitializeComponent() // // pictureBoxMain // - resources.ApplyResources(this.pictureBoxMain, "pictureBoxMain"); this.pictureBoxMain.BackColor = System.Drawing.Color.White; this.pictureBoxMain.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; + resources.ApplyResources(this.pictureBoxMain, "pictureBoxMain"); this.pictureBoxMain.Name = "pictureBoxMain"; this.pictureBoxMain.TabStop = false; this.toolTip.SetToolTip(this.pictureBoxMain, resources.GetString("pictureBoxMain.ToolTip")); @@ -1130,10 +1080,9 @@ private void InitializeComponent() // // panel1 // - resources.ApplyResources(this.panel1, "panel1"); this.panel1.Controls.Add(this.tableLayoutPanel2); + resources.ApplyResources(this.panel1, "panel1"); this.panel1.Name = "panel1"; - this.toolTip.SetToolTip(this.panel1, resources.GetString("panel1.ToolTip")); // // tableLayoutPanel2 // @@ -1150,14 +1099,13 @@ private void InitializeComponent() this.tableLayoutPanel2.Controls.Add(this.labelX, 0, 0); this.tableLayoutPanel2.Controls.Add(this.label9, 4, 0); this.tableLayoutPanel2.Name = "tableLayoutPanel2"; - this.toolTip.SetToolTip(this.tableLayoutPanel2, resources.GetString("tableLayoutPanel2.ToolTip")); // // numericBoxUpperX // - resources.ApplyResources(this.numericBoxUpperX, "numericBoxUpperX"); this.numericBoxUpperX.AllowMouseControl = false; this.numericBoxUpperX.BackColor = System.Drawing.Color.Transparent; this.numericBoxUpperX.DecimalPlaces = 2; + resources.ApplyResources(this.numericBoxUpperX, "numericBoxUpperX"); this.numericBoxUpperX.Maximum = 30D; this.numericBoxUpperX.Minimum = 0D; this.numericBoxUpperX.MouseDirection = Crystallography.VH_DirectionEnum.Vertical; @@ -1194,10 +1142,10 @@ private void InitializeComponent() // // numericBoxLowerX // - resources.ApplyResources(this.numericBoxLowerX, "numericBoxLowerX"); this.numericBoxLowerX.AllowMouseControl = false; this.numericBoxLowerX.BackColor = System.Drawing.Color.Transparent; this.numericBoxLowerX.DecimalPlaces = 2; + resources.ApplyResources(this.numericBoxLowerX, "numericBoxLowerX"); this.numericBoxLowerX.Maximum = 30D; this.numericBoxLowerX.Minimum = 0D; this.numericBoxLowerX.MouseDirection = Crystallography.VH_DirectionEnum.Vertical; @@ -1215,7 +1163,6 @@ private void InitializeComponent() // resources.ApplyResources(this.labelIntensity, "labelIntensity"); this.labelIntensity.Name = "labelIntensity"; - this.toolTip.SetToolTip(this.labelIntensity, resources.GetString("labelIntensity.ToolTip")); // // numericBoxLowerY // @@ -1238,37 +1185,31 @@ private void InitializeComponent() // resources.ApplyResources(this.labelD, "labelD"); this.labelD.Name = "labelD"; - this.toolTip.SetToolTip(this.labelD, resources.GetString("labelD.ToolTip")); // // labelTwoTheta // resources.ApplyResources(this.labelTwoTheta, "labelTwoTheta"); this.labelTwoTheta.Name = "labelTwoTheta"; - this.toolTip.SetToolTip(this.labelTwoTheta, resources.GetString("labelTwoTheta.ToolTip")); // // label11 // resources.ApplyResources(this.label11, "label11"); this.label11.Name = "label11"; - this.toolTip.SetToolTip(this.label11, resources.GetString("label11.ToolTip")); // // label10 // resources.ApplyResources(this.label10, "label10"); this.label10.Name = "label10"; - this.toolTip.SetToolTip(this.label10, resources.GetString("label10.ToolTip")); // // labelX // resources.ApplyResources(this.labelX, "labelX"); this.labelX.Name = "labelX"; - this.toolTip.SetToolTip(this.labelX, resources.GetString("labelX.ToolTip")); // // label9 // resources.ApplyResources(this.label9, "label9"); this.label9.Name = "label9"; - this.toolTip.SetToolTip(this.label9, resources.GetString("label9.ToolTip")); // // splitContainer2 // @@ -1277,30 +1218,23 @@ private void InitializeComponent() // // splitContainer2.Panel1 // - resources.ApplyResources(this.splitContainer2.Panel1, "splitContainer2.Panel1"); this.splitContainer2.Panel1.Controls.Add(this.groupBox1); - this.toolTip.SetToolTip(this.splitContainer2.Panel1, resources.GetString("splitContainer2.Panel1.ToolTip")); // // splitContainer2.Panel2 // - resources.ApplyResources(this.splitContainer2.Panel2, "splitContainer2.Panel2"); this.splitContainer2.Panel2.Controls.Add(this.groupBoxCrystalData); - this.toolTip.SetToolTip(this.splitContainer2.Panel2, resources.GetString("splitContainer2.Panel2.ToolTip")); - this.toolTip.SetToolTip(this.splitContainer2, resources.GetString("splitContainer2.ToolTip")); // // groupBox1 // - resources.ApplyResources(this.groupBox1, "groupBox1"); this.groupBox1.Controls.Add(this.dataGridViewProfiles); this.groupBox1.Controls.Add(this.checkBoxProfileParameter); this.groupBox1.Controls.Add(this.checkBoxAll); + resources.ApplyResources(this.groupBox1, "groupBox1"); this.groupBox1.Name = "groupBox1"; this.groupBox1.TabStop = false; - this.toolTip.SetToolTip(this.groupBox1, resources.GetString("groupBox1.ToolTip")); // // dataGridViewProfiles // - resources.ApplyResources(this.dataGridViewProfiles, "dataGridViewProfiles"); this.dataGridViewProfiles.AllowUserToAddRows = false; this.dataGridViewProfiles.AllowUserToDeleteRows = false; this.dataGridViewProfiles.AllowUserToResizeColumns = false; @@ -1313,12 +1247,13 @@ private void InitializeComponent() this.dataGridViewProfiles.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None; dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control; - dataGridViewCellStyle2.Font = new System.Drawing.Font("メイリオ", 9F); + dataGridViewCellStyle2.Font = new System.Drawing.Font("Segoe UI Symbol", 9.75F); dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText; dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.Blue; dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText; dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True; this.dataGridViewProfiles.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2; + resources.ApplyResources(this.dataGridViewProfiles, "dataGridViewProfiles"); this.dataGridViewProfiles.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; this.dataGridViewProfiles.ColumnHeadersVisible = false; this.dataGridViewProfiles.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { @@ -1328,7 +1263,7 @@ private void InitializeComponent() this.dataGridViewProfiles.DataSource = this.bindingSourceProfile; dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; dataGridViewCellStyle3.BackColor = System.Drawing.Color.White; - dataGridViewCellStyle3.Font = new System.Drawing.Font("メイリオ", 9F); + dataGridViewCellStyle3.Font = new System.Drawing.Font("Segoe UI Symbol", 9.75F); dataGridViewCellStyle3.ForeColor = System.Drawing.SystemColors.ControlText; dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.MidnightBlue; dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.HighlightText; @@ -1391,9 +1326,9 @@ private void InitializeComponent() // // checkBoxAll // - resources.ApplyResources(this.checkBoxAll, "checkBoxAll"); this.checkBoxAll.Checked = true; this.checkBoxAll.CheckState = System.Windows.Forms.CheckState.Indeterminate; + resources.ApplyResources(this.checkBoxAll, "checkBoxAll"); this.checkBoxAll.Name = "checkBoxAll"; this.toolTip.SetToolTip(this.checkBoxAll, resources.GetString("checkBoxAll.ToolTip")); this.checkBoxAll.UseVisualStyleBackColor = true; @@ -1401,16 +1336,14 @@ private void InitializeComponent() // // groupBoxCrystalData // - resources.ApplyResources(this.groupBoxCrystalData, "groupBoxCrystalData"); this.groupBoxCrystalData.Controls.Add(this.dataGridViewCrystals); this.groupBoxCrystalData.Controls.Add(this.checkBoxCrystalParameter); + resources.ApplyResources(this.groupBoxCrystalData, "groupBoxCrystalData"); this.groupBoxCrystalData.Name = "groupBoxCrystalData"; this.groupBoxCrystalData.TabStop = false; - this.toolTip.SetToolTip(this.groupBoxCrystalData, resources.GetString("groupBoxCrystalData.ToolTip")); // // dataGridViewCrystals // - resources.ApplyResources(this.dataGridViewCrystals, "dataGridViewCrystals"); this.dataGridViewCrystals.AllowUserToAddRows = false; this.dataGridViewCrystals.AllowUserToDeleteRows = false; this.dataGridViewCrystals.AllowUserToResizeColumns = false; @@ -1423,12 +1356,13 @@ private void InitializeComponent() this.dataGridViewCrystals.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None; dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; dataGridViewCellStyle5.BackColor = System.Drawing.SystemColors.Control; - dataGridViewCellStyle5.Font = new System.Drawing.Font("メイリオ", 9F); + dataGridViewCellStyle5.Font = new System.Drawing.Font("Segoe UI Symbol", 9.75F); dataGridViewCellStyle5.ForeColor = System.Drawing.SystemColors.WindowText; dataGridViewCellStyle5.SelectionBackColor = System.Drawing.Color.Blue; dataGridViewCellStyle5.SelectionForeColor = System.Drawing.SystemColors.HighlightText; dataGridViewCellStyle5.WrapMode = System.Windows.Forms.DataGridViewTriState.True; this.dataGridViewCrystals.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle5; + resources.ApplyResources(this.dataGridViewCrystals, "dataGridViewCrystals"); this.dataGridViewCrystals.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; this.dataGridViewCrystals.ColumnHeadersVisible = false; this.dataGridViewCrystals.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { @@ -1438,7 +1372,7 @@ private void InitializeComponent() this.dataGridViewCrystals.DataSource = this.bindingSourceCrystal; dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; dataGridViewCellStyle7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192))))); - dataGridViewCellStyle7.Font = new System.Drawing.Font("メイリオ", 9F); + dataGridViewCellStyle7.Font = new System.Drawing.Font("Segoe UI Symbol", 9.75F); dataGridViewCellStyle7.ForeColor = System.Drawing.SystemColors.ControlText; dataGridViewCellStyle7.SelectionBackColor = System.Drawing.Color.Blue; dataGridViewCellStyle7.SelectionForeColor = System.Drawing.SystemColors.HighlightText; @@ -1497,6 +1431,121 @@ private void InitializeComponent() this.toolTip.SetToolTip(this.checkBoxCrystalParameter, resources.GetString("checkBoxCrystalParameter.ToolTip")); this.checkBoxCrystalParameter.CheckedChanged += new System.EventHandler(this.checkBoxCrystalParameter_CheckedChanged); // + // toolStrip2 + // + resources.ApplyResources(this.toolStrip2, "toolStrip2"); + this.toolStrip2.ImageScalingSize = new System.Drawing.Size(32, 32); + this.toolStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.toolStripButtonCrystalParameter, + this.toolStripSeparator4, + this.toolStripButtonProfileParameter, + this.toolStripSeparator6, + this.toolStripButtonEquationOfState, + this.toolStripSeparator8, + this.toolStripButtonFittingParameter, + this.toolStripSeparator5, + this.toolStripButtonCellFinder, + this.toolStripSeparator11, + this.toolStripButtonStressAnalysis, + this.toolStripSeparator10, + this.toolStripButtonAtomicPositonFinder, + this.toolStripSeparator12, + this.toolStripButtonLPO}); + this.toolStrip2.Name = "toolStrip2"; + // + // toolStripButtonCrystalParameter + // + resources.ApplyResources(this.toolStripButtonCrystalParameter, "toolStripButtonCrystalParameter"); + this.toolStripButtonCrystalParameter.Name = "toolStripButtonCrystalParameter"; + this.toolStripButtonCrystalParameter.Click += new System.EventHandler(this.toolStripButtonCrystalParameter_Click); + // + // toolStripSeparator4 + // + this.toolStripSeparator4.Name = "toolStripSeparator4"; + resources.ApplyResources(this.toolStripSeparator4, "toolStripSeparator4"); + // + // toolStripButtonProfileParameter + // + resources.ApplyResources(this.toolStripButtonProfileParameter, "toolStripButtonProfileParameter"); + this.toolStripButtonProfileParameter.Name = "toolStripButtonProfileParameter"; + this.toolStripButtonProfileParameter.Click += new System.EventHandler(this.toolStripButtonProfileParameter_Click); + // + // toolStripSeparator6 + // + this.toolStripSeparator6.Name = "toolStripSeparator6"; + resources.ApplyResources(this.toolStripSeparator6, "toolStripSeparator6"); + // + // toolStripButtonEquationOfState + // + this.toolStripButtonEquationOfState.CheckOnClick = true; + resources.ApplyResources(this.toolStripButtonEquationOfState, "toolStripButtonEquationOfState"); + this.toolStripButtonEquationOfState.Name = "toolStripButtonEquationOfState"; + this.toolStripButtonEquationOfState.CheckedChanged += new System.EventHandler(this.toolStripButtonEquationOfState_CheckedChanged); + // + // toolStripSeparator8 + // + this.toolStripSeparator8.Name = "toolStripSeparator8"; + resources.ApplyResources(this.toolStripSeparator8, "toolStripSeparator8"); + // + // toolStripButtonFittingParameter + // + this.toolStripButtonFittingParameter.CheckOnClick = true; + resources.ApplyResources(this.toolStripButtonFittingParameter, "toolStripButtonFittingParameter"); + this.toolStripButtonFittingParameter.Name = "toolStripButtonFittingParameter"; + this.toolStripButtonFittingParameter.CheckedChanged += new System.EventHandler(this.toolStripButtonFittingParameter_CheckedChanged); + // + // toolStripSeparator5 + // + this.toolStripSeparator5.Name = "toolStripSeparator5"; + resources.ApplyResources(this.toolStripSeparator5, "toolStripSeparator5"); + // + // toolStripButtonCellFinder + // + this.toolStripButtonCellFinder.CheckOnClick = true; + this.toolStripButtonCellFinder.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; + resources.ApplyResources(this.toolStripButtonCellFinder, "toolStripButtonCellFinder"); + this.toolStripButtonCellFinder.Name = "toolStripButtonCellFinder"; + this.toolStripButtonCellFinder.CheckedChanged += new System.EventHandler(this.toolStripButtonCellFinder_CheckedChanged); + // + // toolStripSeparator11 + // + this.toolStripSeparator11.Name = "toolStripSeparator11"; + resources.ApplyResources(this.toolStripSeparator11, "toolStripSeparator11"); + // + // toolStripButtonStressAnalysis + // + this.toolStripButtonStressAnalysis.CheckOnClick = true; + this.toolStripButtonStressAnalysis.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; + resources.ApplyResources(this.toolStripButtonStressAnalysis, "toolStripButtonStressAnalysis"); + this.toolStripButtonStressAnalysis.Name = "toolStripButtonStressAnalysis"; + this.toolStripButtonStressAnalysis.CheckedChanged += new System.EventHandler(this.toolStripButtonStressAnalysis_CheckedChanged); + // + // toolStripSeparator10 + // + this.toolStripSeparator10.Name = "toolStripSeparator10"; + resources.ApplyResources(this.toolStripSeparator10, "toolStripSeparator10"); + // + // toolStripButtonAtomicPositonFinder + // + this.toolStripButtonAtomicPositonFinder.CheckOnClick = true; + this.toolStripButtonAtomicPositonFinder.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; + resources.ApplyResources(this.toolStripButtonAtomicPositonFinder, "toolStripButtonAtomicPositonFinder"); + this.toolStripButtonAtomicPositonFinder.Name = "toolStripButtonAtomicPositonFinder"; + this.toolStripButtonAtomicPositonFinder.CheckedChanged += new System.EventHandler(this.toolStripButtonAtomicPositonFinder_CheckedChanged); + // + // toolStripSeparator12 + // + this.toolStripSeparator12.Name = "toolStripSeparator12"; + resources.ApplyResources(this.toolStripSeparator12, "toolStripSeparator12"); + // + // toolStripButtonLPO + // + this.toolStripButtonLPO.CheckOnClick = true; + this.toolStripButtonLPO.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; + resources.ApplyResources(this.toolStripButtonLPO, "toolStripButtonLPO"); + this.toolStripButtonLPO.Name = "toolStripButtonLPO"; + this.toolStripButtonLPO.CheckedChanged += new System.EventHandler(this.toolStripButtonLPO_CheckedChanged); + // // menuStrip // resources.ApplyResources(this.menuStrip, "menuStrip"); @@ -1508,11 +1557,9 @@ private void InitializeComponent() this.helpToolStripMenuItem, this.languageToolStripMenuItem}); this.menuStrip.Name = "menuStrip"; - this.toolTip.SetToolTip(this.menuStrip, resources.GetString("menuStrip.ToolTip")); // // fileToolStripMenuItem // - resources.ApplyResources(this.fileToolStripMenuItem, "fileToolStripMenuItem"); this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.readPatternProfileToolStripMenuItem, this.savePatternProfileToolStripMenuItem, @@ -1533,123 +1580,124 @@ private void InitializeComponent() this.toolStripMenuItemSaveMetafile, this.toolStripSeparator2, this.closeToolStripMenuItem}); + resources.ApplyResources(this.fileToolStripMenuItem, "fileToolStripMenuItem"); this.fileToolStripMenuItem.Name = "fileToolStripMenuItem"; // // readPatternProfileToolStripMenuItem // - resources.ApplyResources(this.readPatternProfileToolStripMenuItem, "readPatternProfileToolStripMenuItem"); this.readPatternProfileToolStripMenuItem.Name = "readPatternProfileToolStripMenuItem"; + resources.ApplyResources(this.readPatternProfileToolStripMenuItem, "readPatternProfileToolStripMenuItem"); this.readPatternProfileToolStripMenuItem.Click += new System.EventHandler(this.menuItemFileRead_Click); // // savePatternProfileToolStripMenuItem // - resources.ApplyResources(this.savePatternProfileToolStripMenuItem, "savePatternProfileToolStripMenuItem"); this.savePatternProfileToolStripMenuItem.Name = "savePatternProfileToolStripMenuItem"; + resources.ApplyResources(this.savePatternProfileToolStripMenuItem, "savePatternProfileToolStripMenuItem"); this.savePatternProfileToolStripMenuItem.Click += new System.EventHandler(this.savePatternProfileToolStripMenuItem_Click); // // toolStripMenuItemExportExcelFile // - resources.ApplyResources(this.toolStripMenuItemExportExcelFile, "toolStripMenuItemExportExcelFile"); this.toolStripMenuItemExportExcelFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.asCSVcommaSeperatedFileToolStripMenuItem, this.asTSVtabSeparatedValuesFileToolStripMenuItem, this.asGSASFileToolStripMenuItem}); this.toolStripMenuItemExportExcelFile.Name = "toolStripMenuItemExportExcelFile"; + resources.ApplyResources(this.toolStripMenuItemExportExcelFile, "toolStripMenuItemExportExcelFile"); // // asCSVcommaSeperatedFileToolStripMenuItem // - resources.ApplyResources(this.asCSVcommaSeperatedFileToolStripMenuItem, "asCSVcommaSeperatedFileToolStripMenuItem"); this.asCSVcommaSeperatedFileToolStripMenuItem.Name = "asCSVcommaSeperatedFileToolStripMenuItem"; + resources.ApplyResources(this.asCSVcommaSeperatedFileToolStripMenuItem, "asCSVcommaSeperatedFileToolStripMenuItem"); this.asCSVcommaSeperatedFileToolStripMenuItem.Click += new System.EventHandler(this.toolStripMenuItemExportCSVFile_Click); // // asTSVtabSeparatedValuesFileToolStripMenuItem // - resources.ApplyResources(this.asTSVtabSeparatedValuesFileToolStripMenuItem, "asTSVtabSeparatedValuesFileToolStripMenuItem"); this.asTSVtabSeparatedValuesFileToolStripMenuItem.Name = "asTSVtabSeparatedValuesFileToolStripMenuItem"; + resources.ApplyResources(this.asTSVtabSeparatedValuesFileToolStripMenuItem, "asTSVtabSeparatedValuesFileToolStripMenuItem"); this.asTSVtabSeparatedValuesFileToolStripMenuItem.Click += new System.EventHandler(this.toolStripMenuItemExportCSVFile_Click); // // asGSASFileToolStripMenuItem // - resources.ApplyResources(this.asGSASFileToolStripMenuItem, "asGSASFileToolStripMenuItem"); this.asGSASFileToolStripMenuItem.Name = "asGSASFileToolStripMenuItem"; + resources.ApplyResources(this.asGSASFileToolStripMenuItem, "asGSASFileToolStripMenuItem"); this.asGSASFileToolStripMenuItem.Click += new System.EventHandler(this.exportGSASFormatToolStripMenuItem_Click); // // toolStripSeparator1 // - resources.ApplyResources(this.toolStripSeparator1, "toolStripSeparator1"); this.toolStripSeparator1.Name = "toolStripSeparator1"; + resources.ApplyResources(this.toolStripSeparator1, "toolStripSeparator1"); // // readCrystalDataToolStripMenuItem // - resources.ApplyResources(this.readCrystalDataToolStripMenuItem, "readCrystalDataToolStripMenuItem"); this.readCrystalDataToolStripMenuItem.Name = "readCrystalDataToolStripMenuItem"; + resources.ApplyResources(this.readCrystalDataToolStripMenuItem, "readCrystalDataToolStripMenuItem"); this.readCrystalDataToolStripMenuItem.Click += new System.EventHandler(this.menuItemReadCrystalData_Click); // // readAndAddToolStripMenuItem // - resources.ApplyResources(this.readAndAddToolStripMenuItem, "readAndAddToolStripMenuItem"); this.readAndAddToolStripMenuItem.Name = "readAndAddToolStripMenuItem"; + resources.ApplyResources(this.readAndAddToolStripMenuItem, "readAndAddToolStripMenuItem"); this.readAndAddToolStripMenuItem.Click += new System.EventHandler(this.readAndAddToolStripMenuItem_Click); // // saveCrystalDataToolStripMenuItem // - resources.ApplyResources(this.saveCrystalDataToolStripMenuItem, "saveCrystalDataToolStripMenuItem"); this.saveCrystalDataToolStripMenuItem.Name = "saveCrystalDataToolStripMenuItem"; + resources.ApplyResources(this.saveCrystalDataToolStripMenuItem, "saveCrystalDataToolStripMenuItem"); this.saveCrystalDataToolStripMenuItem.Click += new System.EventHandler(this.menuItemSaveCrystalData_Click); // // toolStripMenuItemImport // - resources.ApplyResources(this.toolStripMenuItemImport, "toolStripMenuItemImport"); this.toolStripMenuItemImport.Name = "toolStripMenuItemImport"; + resources.ApplyResources(this.toolStripMenuItemImport, "toolStripMenuItemImport"); this.toolStripMenuItemImport.Click += new System.EventHandler(this.toolStripMenuItemImport_Click); // // toolStripMenuItemExportCIF // - resources.ApplyResources(this.toolStripMenuItemExportCIF, "toolStripMenuItemExportCIF"); this.toolStripMenuItemExportCIF.Name = "toolStripMenuItemExportCIF"; + resources.ApplyResources(this.toolStripMenuItemExportCIF, "toolStripMenuItemExportCIF"); this.toolStripMenuItemExportCIF.Click += new System.EventHandler(this.toolStripMenuItemExportCIF_Click); // // resetInitialCrystalDataToolStripMenuItem // - resources.ApplyResources(this.resetInitialCrystalDataToolStripMenuItem, "resetInitialCrystalDataToolStripMenuItem"); this.resetInitialCrystalDataToolStripMenuItem.Name = "resetInitialCrystalDataToolStripMenuItem"; + resources.ApplyResources(this.resetInitialCrystalDataToolStripMenuItem, "resetInitialCrystalDataToolStripMenuItem"); this.resetInitialCrystalDataToolStripMenuItem.Click += new System.EventHandler(this.resetInitialCrystalDataToolStripMenuItem_Click); // // toolStripSeparator3 // - resources.ApplyResources(this.toolStripSeparator3, "toolStripSeparator3"); this.toolStripSeparator3.Name = "toolStripSeparator3"; + resources.ApplyResources(this.toolStripSeparator3, "toolStripSeparator3"); // // toolStripMenuItemPageSetup // - resources.ApplyResources(this.toolStripMenuItemPageSetup, "toolStripMenuItemPageSetup"); this.toolStripMenuItemPageSetup.Name = "toolStripMenuItemPageSetup"; + resources.ApplyResources(this.toolStripMenuItemPageSetup, "toolStripMenuItemPageSetup"); this.toolStripMenuItemPageSetup.Click += new System.EventHandler(this.menuItemPrintPageSetup_Click); // // toolStripMenuItemPrintPreview // - resources.ApplyResources(this.toolStripMenuItemPrintPreview, "toolStripMenuItemPrintPreview"); this.toolStripMenuItemPrintPreview.Name = "toolStripMenuItemPrintPreview"; + resources.ApplyResources(this.toolStripMenuItemPrintPreview, "toolStripMenuItemPrintPreview"); this.toolStripMenuItemPrintPreview.Click += new System.EventHandler(this.menuItemPrintPreview_Click); // // printToolStripMenuItem // - resources.ApplyResources(this.printToolStripMenuItem, "printToolStripMenuItem"); this.printToolStripMenuItem.Name = "printToolStripMenuItem"; + resources.ApplyResources(this.printToolStripMenuItem, "printToolStripMenuItem"); this.printToolStripMenuItem.Click += new System.EventHandler(this.menuItemPrint_Click); // // toolStripSeparator9 // - resources.ApplyResources(this.toolStripSeparator9, "toolStripSeparator9"); this.toolStripSeparator9.Name = "toolStripSeparator9"; + resources.ApplyResources(this.toolStripSeparator9, "toolStripSeparator9"); // // コピーToolStripMenuItem // - resources.ApplyResources(this.コピーToolStripMenuItem, "コピーToolStripMenuItem"); this.コピーToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.BitmapToolStripMenuItem, this.copyAsMetafileToolStripMenuItem}); this.コピーToolStripMenuItem.Name = "コピーToolStripMenuItem"; + resources.ApplyResources(this.コピーToolStripMenuItem, "コピーToolStripMenuItem"); // // BitmapToolStripMenuItem // @@ -1658,69 +1706,69 @@ private void InitializeComponent() // // copyAsMetafileToolStripMenuItem // - resources.ApplyResources(this.copyAsMetafileToolStripMenuItem, "copyAsMetafileToolStripMenuItem"); this.copyAsMetafileToolStripMenuItem.Name = "copyAsMetafileToolStripMenuItem"; + resources.ApplyResources(this.copyAsMetafileToolStripMenuItem, "copyAsMetafileToolStripMenuItem"); this.copyAsMetafileToolStripMenuItem.Click += new System.EventHandler(this.copyAsMetafileToolStripMenuItem_Click); // // toolStripMenuItemSaveMetafile // - resources.ApplyResources(this.toolStripMenuItemSaveMetafile, "toolStripMenuItemSaveMetafile"); this.toolStripMenuItemSaveMetafile.Name = "toolStripMenuItemSaveMetafile"; + resources.ApplyResources(this.toolStripMenuItemSaveMetafile, "toolStripMenuItemSaveMetafile"); this.toolStripMenuItemSaveMetafile.Click += new System.EventHandler(this.toolStripMenuItemSaveMetafile_Click); // // toolStripSeparator2 // - resources.ApplyResources(this.toolStripSeparator2, "toolStripSeparator2"); this.toolStripSeparator2.Name = "toolStripSeparator2"; + resources.ApplyResources(this.toolStripSeparator2, "toolStripSeparator2"); // // closeToolStripMenuItem // - resources.ApplyResources(this.closeToolStripMenuItem, "closeToolStripMenuItem"); this.closeToolStripMenuItem.Name = "closeToolStripMenuItem"; + resources.ApplyResources(this.closeToolStripMenuItem, "closeToolStripMenuItem"); this.closeToolStripMenuItem.Click += new System.EventHandler(this.menuItemClose_Click); // // optionToolStripMenuItem // - resources.ApplyResources(this.optionToolStripMenuItem, "optionToolStripMenuItem"); this.optionToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolTipToolStripMenuItem, this.watchReadClipboardToolStripMenuItem, this.watchReadANewProfileToolStripMenuItem, this.clearRegistryToolStripMenuItem}); + resources.ApplyResources(this.optionToolStripMenuItem, "optionToolStripMenuItem"); this.optionToolStripMenuItem.Name = "optionToolStripMenuItem"; // // toolTipToolStripMenuItem // - resources.ApplyResources(this.toolTipToolStripMenuItem, "toolTipToolStripMenuItem"); this.toolTipToolStripMenuItem.Checked = true; this.toolTipToolStripMenuItem.CheckOnClick = true; this.toolTipToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked; this.toolTipToolStripMenuItem.Name = "toolTipToolStripMenuItem"; + resources.ApplyResources(this.toolTipToolStripMenuItem, "toolTipToolStripMenuItem"); this.toolTipToolStripMenuItem.Click += new System.EventHandler(this.toolTipToolStripMenuItem_Click); // // watchReadClipboardToolStripMenuItem // - resources.ApplyResources(this.watchReadClipboardToolStripMenuItem, "watchReadClipboardToolStripMenuItem"); this.watchReadClipboardToolStripMenuItem.Checked = true; this.watchReadClipboardToolStripMenuItem.CheckOnClick = true; this.watchReadClipboardToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked; this.watchReadClipboardToolStripMenuItem.Name = "watchReadClipboardToolStripMenuItem"; + resources.ApplyResources(this.watchReadClipboardToolStripMenuItem, "watchReadClipboardToolStripMenuItem"); this.watchReadClipboardToolStripMenuItem.CheckedChanged += new System.EventHandler(this.watchReadClipboardToolStripMenuItem_CheckedChanged); // // watchReadANewProfileToolStripMenuItem // - resources.ApplyResources(this.watchReadANewProfileToolStripMenuItem, "watchReadANewProfileToolStripMenuItem"); this.watchReadANewProfileToolStripMenuItem.CheckOnClick = true; this.watchReadANewProfileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.setDirectoryToTheWatchToolStripMenuItem, this.toolStripTextBoxDirectoryToWatch}); this.watchReadANewProfileToolStripMenuItem.Name = "watchReadANewProfileToolStripMenuItem"; + resources.ApplyResources(this.watchReadANewProfileToolStripMenuItem, "watchReadANewProfileToolStripMenuItem"); this.watchReadANewProfileToolStripMenuItem.CheckedChanged += new System.EventHandler(this.watchReadANewProfileToolStripMenuItem_CheckedChanged); // // setDirectoryToTheWatchToolStripMenuItem // - resources.ApplyResources(this.setDirectoryToTheWatchToolStripMenuItem, "setDirectoryToTheWatchToolStripMenuItem"); this.setDirectoryToTheWatchToolStripMenuItem.Name = "setDirectoryToTheWatchToolStripMenuItem"; + resources.ApplyResources(this.setDirectoryToTheWatchToolStripMenuItem, "setDirectoryToTheWatchToolStripMenuItem"); this.setDirectoryToTheWatchToolStripMenuItem.Click += new System.EventHandler(this.setDirectoryToTheWatchToolStripMenuItem_Click); // // toolStripTextBoxDirectoryToWatch @@ -1731,65 +1779,65 @@ private void InitializeComponent() // // clearRegistryToolStripMenuItem // - resources.ApplyResources(this.clearRegistryToolStripMenuItem, "clearRegistryToolStripMenuItem"); this.clearRegistryToolStripMenuItem.Name = "clearRegistryToolStripMenuItem"; + resources.ApplyResources(this.clearRegistryToolStripMenuItem, "clearRegistryToolStripMenuItem"); this.clearRegistryToolStripMenuItem.Click += new System.EventHandler(this.clearRegistryToolStripMenuItem_Click_1); // // macroToolStripMenuItem // - resources.ApplyResources(this.macroToolStripMenuItem, "macroToolStripMenuItem"); this.macroToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.editorToolStripMenuItem}); this.macroToolStripMenuItem.Name = "macroToolStripMenuItem"; + resources.ApplyResources(this.macroToolStripMenuItem, "macroToolStripMenuItem"); // // editorToolStripMenuItem // - resources.ApplyResources(this.editorToolStripMenuItem, "editorToolStripMenuItem"); this.editorToolStripMenuItem.Name = "editorToolStripMenuItem"; + resources.ApplyResources(this.editorToolStripMenuItem, "editorToolStripMenuItem"); this.editorToolStripMenuItem.Click += new System.EventHandler(this.editorToolStripMenuItem_Click); // // helpToolStripMenuItem // - resources.ApplyResources(this.helpToolStripMenuItem, "helpToolStripMenuItem"); this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.aboutMeToolStripMenuItem, this.programUpdatesToolStripMenuItem, this.hintToolStripMenuItem, this.helpwebToolStripMenuItem}); + resources.ApplyResources(this.helpToolStripMenuItem, "helpToolStripMenuItem"); this.helpToolStripMenuItem.Name = "helpToolStripMenuItem"; // // aboutMeToolStripMenuItem // - resources.ApplyResources(this.aboutMeToolStripMenuItem, "aboutMeToolStripMenuItem"); this.aboutMeToolStripMenuItem.Name = "aboutMeToolStripMenuItem"; + resources.ApplyResources(this.aboutMeToolStripMenuItem, "aboutMeToolStripMenuItem"); this.aboutMeToolStripMenuItem.Click += new System.EventHandler(this.aboutMeToolStripMenuItem_Click); // // programUpdatesToolStripMenuItem // - resources.ApplyResources(this.programUpdatesToolStripMenuItem, "programUpdatesToolStripMenuItem"); this.programUpdatesToolStripMenuItem.Name = "programUpdatesToolStripMenuItem"; + resources.ApplyResources(this.programUpdatesToolStripMenuItem, "programUpdatesToolStripMenuItem"); this.programUpdatesToolStripMenuItem.Click += new System.EventHandler(this.programUpdatesToolStripMenuItem_Click); // // hintToolStripMenuItem // - resources.ApplyResources(this.hintToolStripMenuItem, "hintToolStripMenuItem"); this.hintToolStripMenuItem.Name = "hintToolStripMenuItem"; + resources.ApplyResources(this.hintToolStripMenuItem, "hintToolStripMenuItem"); this.hintToolStripMenuItem.Click += new System.EventHandler(this.hintToolStripMenuItem_Click); // // helpwebToolStripMenuItem // - resources.ApplyResources(this.helpwebToolStripMenuItem, "helpwebToolStripMenuItem"); this.helpwebToolStripMenuItem.Name = "helpwebToolStripMenuItem"; + resources.ApplyResources(this.helpwebToolStripMenuItem, "helpwebToolStripMenuItem"); this.helpwebToolStripMenuItem.Click += new System.EventHandler(this.helpwebToolStripMenuItem_Click); // // languageToolStripMenuItem // - resources.ApplyResources(this.languageToolStripMenuItem, "languageToolStripMenuItem"); this.languageToolStripMenuItem.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; this.languageToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.englishToolStripMenuItem, this.japaneseToolStripMenuItem}); this.languageToolStripMenuItem.Name = "languageToolStripMenuItem"; + resources.ApplyResources(this.languageToolStripMenuItem, "languageToolStripMenuItem"); // // englishToolStripMenuItem // @@ -1803,139 +1851,20 @@ private void InitializeComponent() this.japaneseToolStripMenuItem.Name = "japaneseToolStripMenuItem"; this.japaneseToolStripMenuItem.Click += new System.EventHandler(this.languageToolStripMenuItem_Click); // - // toolStrip2 - // - resources.ApplyResources(this.toolStrip2, "toolStrip2"); - this.toolStrip2.ImageScalingSize = new System.Drawing.Size(32, 32); - this.toolStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.toolStripButtonCrystalParameter, - this.toolStripSeparator4, - this.toolStripButtonProfileParameter, - this.toolStripSeparator6, - this.toolStripButtonEquationOfState, - this.toolStripSeparator8, - this.toolStripButtonFittingParameter, - this.toolStripSeparator5, - this.toolStripButtonCellFinder, - this.toolStripSeparator11, - this.toolStripButtonStressAnalysis, - this.toolStripSeparator10, - this.toolStripButtonAtomicPositonFinder, - this.toolStripSeparator12, - this.toolStripButtonLPO}); - this.toolStrip2.Name = "toolStrip2"; - this.toolTip.SetToolTip(this.toolStrip2, resources.GetString("toolStrip2.ToolTip")); - // - // toolStripButtonCrystalParameter - // - resources.ApplyResources(this.toolStripButtonCrystalParameter, "toolStripButtonCrystalParameter"); - this.toolStripButtonCrystalParameter.Name = "toolStripButtonCrystalParameter"; - this.toolStripButtonCrystalParameter.Click += new System.EventHandler(this.toolStripButtonCrystalParameter_Click); - // - // toolStripSeparator4 - // - resources.ApplyResources(this.toolStripSeparator4, "toolStripSeparator4"); - this.toolStripSeparator4.Name = "toolStripSeparator4"; - // - // toolStripButtonProfileParameter - // - resources.ApplyResources(this.toolStripButtonProfileParameter, "toolStripButtonProfileParameter"); - this.toolStripButtonProfileParameter.Name = "toolStripButtonProfileParameter"; - this.toolStripButtonProfileParameter.Click += new System.EventHandler(this.toolStripButtonProfileParameter_Click); - // - // toolStripSeparator6 - // - resources.ApplyResources(this.toolStripSeparator6, "toolStripSeparator6"); - this.toolStripSeparator6.Name = "toolStripSeparator6"; - // - // toolStripButtonEquationOfState - // - resources.ApplyResources(this.toolStripButtonEquationOfState, "toolStripButtonEquationOfState"); - this.toolStripButtonEquationOfState.CheckOnClick = true; - this.toolStripButtonEquationOfState.Name = "toolStripButtonEquationOfState"; - this.toolStripButtonEquationOfState.CheckedChanged += new System.EventHandler(this.toolStripButtonEquationOfState_CheckedChanged); - // - // toolStripSeparator8 - // - resources.ApplyResources(this.toolStripSeparator8, "toolStripSeparator8"); - this.toolStripSeparator8.Name = "toolStripSeparator8"; - // - // toolStripButtonFittingParameter - // - resources.ApplyResources(this.toolStripButtonFittingParameter, "toolStripButtonFittingParameter"); - this.toolStripButtonFittingParameter.CheckOnClick = true; - this.toolStripButtonFittingParameter.Name = "toolStripButtonFittingParameter"; - this.toolStripButtonFittingParameter.CheckedChanged += new System.EventHandler(this.toolStripButtonFittingParameter_CheckedChanged); - // - // toolStripSeparator5 - // - resources.ApplyResources(this.toolStripSeparator5, "toolStripSeparator5"); - this.toolStripSeparator5.Name = "toolStripSeparator5"; - // - // toolStripButtonCellFinder - // - resources.ApplyResources(this.toolStripButtonCellFinder, "toolStripButtonCellFinder"); - this.toolStripButtonCellFinder.CheckOnClick = true; - this.toolStripButtonCellFinder.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; - this.toolStripButtonCellFinder.Name = "toolStripButtonCellFinder"; - this.toolStripButtonCellFinder.CheckedChanged += new System.EventHandler(this.toolStripButtonCellFinder_CheckedChanged); - // - // toolStripSeparator11 - // - resources.ApplyResources(this.toolStripSeparator11, "toolStripSeparator11"); - this.toolStripSeparator11.Name = "toolStripSeparator11"; - // - // toolStripButtonStressAnalysis - // - resources.ApplyResources(this.toolStripButtonStressAnalysis, "toolStripButtonStressAnalysis"); - this.toolStripButtonStressAnalysis.CheckOnClick = true; - this.toolStripButtonStressAnalysis.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; - this.toolStripButtonStressAnalysis.Name = "toolStripButtonStressAnalysis"; - this.toolStripButtonStressAnalysis.CheckedChanged += new System.EventHandler(this.toolStripButtonStressAnalysis_CheckedChanged); - // - // toolStripSeparator10 - // - resources.ApplyResources(this.toolStripSeparator10, "toolStripSeparator10"); - this.toolStripSeparator10.Name = "toolStripSeparator10"; - // - // toolStripButtonAtomicPositonFinder - // - resources.ApplyResources(this.toolStripButtonAtomicPositonFinder, "toolStripButtonAtomicPositonFinder"); - this.toolStripButtonAtomicPositonFinder.CheckOnClick = true; - this.toolStripButtonAtomicPositonFinder.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; - this.toolStripButtonAtomicPositonFinder.Name = "toolStripButtonAtomicPositonFinder"; - this.toolStripButtonAtomicPositonFinder.CheckedChanged += new System.EventHandler(this.toolStripButtonAtomicPositonFinder_CheckedChanged); - // - // toolStripSeparator12 - // - resources.ApplyResources(this.toolStripSeparator12, "toolStripSeparator12"); - this.toolStripSeparator12.Name = "toolStripSeparator12"; - // - // toolStripButtonLPO - // - resources.ApplyResources(this.toolStripButtonLPO, "toolStripButtonLPO"); - this.toolStripButtonLPO.CheckOnClick = true; - this.toolStripButtonLPO.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; - this.toolStripButtonLPO.Name = "toolStripButtonLPO"; - this.toolStripButtonLPO.CheckedChanged += new System.EventHandler(this.toolStripButtonLPO_CheckedChanged); - // // button2 // resources.ApplyResources(this.button2, "button2"); this.button2.Name = "button2"; - this.toolTip.SetToolTip(this.button2, resources.GetString("button2.ToolTip")); // // button3 // resources.ApplyResources(this.button3, "button3"); this.button3.Name = "button3"; - this.toolTip.SetToolTip(this.button3, resources.GetString("button3.ToolTip")); // // buttonAu // resources.ApplyResources(this.buttonAu, "buttonAu"); this.buttonAu.Name = "buttonAu"; - this.toolTip.SetToolTip(this.buttonAu, resources.GetString("buttonAu.ToolTip")); // // toolTip // @@ -3757,13 +3686,12 @@ private void InitializeComponent() // // FormMain // - resources.ApplyResources(this, "$this"); this.AllowDrop = true; + resources.ApplyResources(this, "$this"); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.Controls.Add(this.toolStripContainer1); this.KeyPreview = true; this.Name = "FormMain"; - this.toolTip.SetToolTip(this, resources.GetString("$this.ToolTip")); this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormMain_FormClosing); this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FormMain_FormClosed); this.Load += new System.EventHandler(this.FormMain_Load); @@ -3815,17 +3743,16 @@ private void InitializeComponent() ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit(); this.splitContainer2.ResumeLayout(false); this.groupBox1.ResumeLayout(false); - this.groupBox1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.dataGridViewProfiles)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.bindingSourceProfile)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dataSet)).EndInit(); this.groupBoxCrystalData.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.dataGridViewCrystals)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.bindingSourceCrystal)).EndInit(); - this.menuStrip.ResumeLayout(false); - this.menuStrip.PerformLayout(); this.toolStrip2.ResumeLayout(false); this.toolStrip2.PerformLayout(); + this.menuStrip.ResumeLayout(false); + this.menuStrip.PerformLayout(); this.ResumeLayout(false); } diff --git a/PDIndexer/FormMain.cs b/PDIndexer/FormMain.cs index b98cf86..d2e6121 100644 --- a/PDIndexer/FormMain.cs +++ b/PDIndexer/FormMain.cs @@ -21,6 +21,7 @@ using System.Linq; using IronPython.Hosting; using System.Net; +using System.Threading.Tasks; #endregion @@ -1398,41 +1399,52 @@ private void DrawMaskedRange() } + + object lockObj=new object(); //プロファイルの描画 private void DrawProfile() { var rect = new RectangleD(LowerX, LowerY, UpperX - LowerX, UpperY - LowerY); - for (int j = 0; j < dataSet.DataTableProfile.CheckedItems.Count; j++) - { - DiffractionProfile dp = dataSet.DataTableProfile.CheckedItems[j]; - PointD[] pt = dp.Profile.Pt.Select(p=> new PointD(p.X,p.Y + IntervalOfProfiles * j)).ToArray(); - if (pt.Length > 2) - { - Pen pen = new Pen(Color.FromArgb(((DiffractionProfile)dataSet.DataTableProfile.CheckedItems[j]).ColorARGB.Value), ((DiffractionProfile)dataSet.DataTableProfile.CheckedItems[j]).LineWidth); - pen.LineJoin = LineJoin.Round; - foreach(var pts in Geometriy.GetPointsWithinRectangle(pt, rect)) - if(pts.Count() > 1) - gMain.DrawLines(pen, pts.Select(p => ConvToPicBoxCoord(p)).ToArray()); - - //エラーバー描画 - if (checkBoxErrorBar.Checked && dp.OriginalProfile.Err != null && dp.OriginalProfile.Err.Count == dp.Profile.Pt.Count) - { - Pen penErr = new Pen(Color.FromArgb((int)(pen.Color.R * 0.5), (int)(pen.Color.G * 0.5), (int)(pen.Color.B * 0.5)), pen.Width); - float errbarWidth = Math.Abs(ConvToPicBoxCoord(pt[0]).X - ConvToPicBoxCoord(pt[1]).X) / 4; - for (int i = 0; i < pt.Length; i++) - if (!double.IsNaN(dp.OriginalProfile.Err[i].Y) && rect.IsInsde(pt[i])) - { - PointF maxErr = ConvToPicBoxCoord(pt[i].X, pt[i].Y + dp.OriginalProfile.Err[i].Y); - PointF minErr = ConvToPicBoxCoord(pt[i].X, pt[i].Y - dp.OriginalProfile.Err[i].Y); - gMain.DrawLine(penErr, maxErr, minErr); - gMain.DrawLine(penErr, new PointF(maxErr.X + errbarWidth, maxErr.Y), new PointF(maxErr.X - errbarWidth, maxErr.Y)); - gMain.DrawLine(penErr, new PointF(minErr.X + errbarWidth, minErr.Y), new PointF(minErr.X - errbarWidth, minErr.Y)); - } - } - - - } - } + var profiles = new List<(Pen pen, PointF[] points)>(); + + Parallel.For(0, dataSet.DataTableProfile.CheckedItems.Count, j => + { + var dp = dataSet.DataTableProfile.CheckedItems[j]; + var srcPts = dp.Profile.Pt.Select(p => new PointD(p.X, p.Y + IntervalOfProfiles * j)).ToArray(); + if (srcPts.Length > 2) + { + var pen = new Pen(Color.FromArgb(dp.ColorARGB.Value), dp.LineWidth) { LineJoin = LineJoin.Round }; + + foreach (var trimmedPts in Geometriy.GetPointsWithinRectangle(srcPts, rect).Where(pts => pts.Length > 1)) + { + var finalPts = ConvToPicBoxCoord(trimmedPts); + lock (lockObj) + profiles.Add((pen, finalPts)); + } + + //エラーバー描画 + if (checkBoxErrorBar.Checked && dp.OriginalProfile.Err != null && dp.OriginalProfile.Err.Count == dp.Profile.Pt.Count) + { + var penErr = new Pen(Color.FromArgb((int)(pen.Color.R * 0.5), (int)(pen.Color.G * 0.5), (int)(pen.Color.B * 0.5)), pen.Width); + var errbarWidth = Math.Abs(ConvToPicBoxCoord(srcPts[0]).X - ConvToPicBoxCoord(srcPts[1]).X) / 4; + for (int i = 0; i < srcPts.Length; i++) + if (!double.IsNaN(dp.OriginalProfile.Err[i].Y) && rect.IsInsde(srcPts[i])) + { + var maxErr = ConvToPicBoxCoord(srcPts[i].X, srcPts[i].Y + dp.OriginalProfile.Err[i].Y); + var minErr = ConvToPicBoxCoord(srcPts[i].X, srcPts[i].Y - dp.OriginalProfile.Err[i].Y); + lock (lockObj) + { + profiles.Add((penErr, new[] { maxErr, minErr })); + profiles.Add((penErr, new[] { new PointF(maxErr.X + errbarWidth, maxErr.Y), new PointF(maxErr.X - errbarWidth, maxErr.Y) })); + profiles.Add((penErr, new[] { new PointF(minErr.X + errbarWidth, minErr.Y), new PointF(minErr.X - errbarWidth, minErr.Y) })); + } + } + } + } + }); + + for (int j = 0; j < profiles.Count; j++) + gMain.DrawLines(profiles[j].pen, profiles[j].points); } @@ -1860,13 +1872,30 @@ private PointF ConvToPicBoxCoord(double x, double y) {//プロファイル座標をピクチャーボックスの座標系に変換 return new PointF( (float)((pictureBoxMain.Width - OriginPos.X) / (UpperX - LowerX) * (x - LowerX)) + OriginPos.X, - (float)(pictureBoxMain.Height - OriginPos.Y - BottomMargin - (pictureBoxMain.Height - OriginPos.Y - BottomMargin) / (UpperY - LowerY) * (y - LowerY))); + (float)(pictureBoxMain.Height - OriginPos.Y - BottomMargin - (pictureBoxMain.Height - OriginPos.Y - BottomMargin) * (y - LowerY) / (UpperY - LowerY) )); } private PointF ConvToPicBoxCoord(PointD p) {//プロファイル座標をピクチャーボックスの座標系に変換 - return new PointF((float)((pictureBoxMain.Width - OriginPos.X) / (UpperX - LowerX) * (p.X - LowerX)) + OriginPos.X, - (float)(pictureBoxMain.Height - OriginPos.Y - BottomMargin - (pictureBoxMain.Height - OriginPos.Y - BottomMargin) / (UpperY - LowerY) * (p.Y - LowerY))); + return new PointF( + (float)((pictureBoxMain.Width - OriginPos.X) / (UpperX - LowerX) * (p.X - LowerX)) + OriginPos.X, + (float)((pictureBoxMain.Height - OriginPos.Y - BottomMargin) * (1 - (p.Y - LowerY) / (UpperY - LowerY)))); } + private PointF[] ConvToPicBoxCoord(PointD[] p) + {//プロファイル座標をピクチャーボックスの座標系に変換 (配列から配列へ) + + var result = new PointF[p.Length]; + var coeffX1 = (pictureBoxMain.Width - OriginPos.X) / (UpperX - LowerX); + var coeffX2 = - coeffX1 * LowerX + OriginPos.X; + var coeffY1 = pictureBoxMain.Height - OriginPos.Y - BottomMargin; + var coeffY2 = - coeffY1 / (UpperY - LowerY); + var coeffY3 = coeffY1 + coeffY2 * LowerY; + for (int i= 0; i< result.Length; i++) + result[i] = new PointF((float)(coeffX1 * p[i].X + coeffX2), (float)(coeffY3 + coeffY2 * p[i].Y)); + + return result; + } + + private PointD ConvToRealCoord(int x, int y) {//ピクチャーボックスの座標系をプロファイル座標に変換 return new PointD( @@ -4330,6 +4359,8 @@ public void FormMain_KeyDown(object sender, KeyEventArgs e) } #endregion + + /// /// PDIのマクロ操作を提供する /// @@ -4338,28 +4369,28 @@ public class Macro : MacroBase private FormMain main; public DrawingClass Drawing; - public ProfileClass Profile; + public ProfileListClass ProfileList; public ProfileOperatorClass ProfileOperator; public FileClass File; + public CrystalListClass CrystalList; public CrystalClass Crystal; + public FittingClass Fitting; - public Macro(FormMain _main) - : base(_main, "PDI") + public Macro(FormMain _main) : base(_main, "PDI") { main = _main; Drawing = new DrawingClass(this); - Profile = new ProfileClass(this); + ProfileList = new ProfileListClass(this); ProfileOperator = new ProfileOperatorClass(this); File = new FileClass(this); + CrystalList = new CrystalListClass(this); Crystal = new CrystalClass(this); + Fitting = new FittingClass(this); help.Add("PDI.Obj[] # Get object sent from other program."); } - public void Sleep(int millisec) - { - Thread.Sleep(millisec); - } + public void Sleep(int millisec) => Thread.Sleep(millisec); public object[] Obj { get; set; } @@ -4381,7 +4412,7 @@ public FileClass(Macro _p) p.help.Add("PDI.File.SaveMetafile(string filename) # Save metafile object. \r\n If filename is omitted, selection dialog will open."); } - public string GetDirectoryPath(string filename = "") { return Execute(new Func(() => getDirectoryPath(filename))); } + public string GetDirectoryPath(string filename = "") => Execute(new Func(() => getDirectoryPath(filename))); private string getDirectoryPath(string filename = "") { string path = ""; @@ -4396,22 +4427,21 @@ private string getDirectoryPath(string filename = "") } - public string GetFileName() { return Execute(() => getFileName()); } + public string GetFileName() => Execute(() => getFileName()); private string getFileName() { var dlg = new OpenFileDialog(); return dlg.ShowDialog() == DialogResult.OK ? dlg.FileName : ""; } - public string[] GetFileNames() { return Execute(new Func(() => getFileNames())); } + public string[] GetFileNames() => Execute(new Func(() => getFileNames())); private string[] getFileNames() { - var dlg = new OpenFileDialog(); - dlg.Multiselect = true; + var dlg = new OpenFileDialog() { Multiselect = true }; return dlg.ShowDialog() == DialogResult.OK ? dlg.FileNames : new string[0]; } - public void ReadProfiles(string fileName = "") { Execute(() => readProfiles(fileName)); } + public void ReadProfiles(string fileName = "") => Execute(() => readProfiles(fileName)); private void readProfiles(string fileName = "") { if (!System.IO.File.Exists(fileName)) @@ -4421,7 +4451,7 @@ private void readProfiles(string fileName = "") } - public void SaveProfiles(string filename = "") { Execute(new Action(() => saveProfiles(filename))); } + public void SaveProfiles(string filename = "") => Execute(new Action(() => saveProfiles(filename))); private void saveProfiles(string filename = "") { if (filename == "") @@ -4430,7 +4460,7 @@ private void saveProfiles(string filename = "") p.main.SaveProfile(filename); } - public void ReadCrystals(string filename = "") { Execute(new Action(() => readCrystals(filename))); } + public void ReadCrystals(string filename = "") => Execute(new Action(() => readCrystals(filename))); private void readCrystals(string filename = "") { if (!System.IO.File.Exists(filename)) @@ -4439,7 +4469,7 @@ private void readCrystals(string filename = "") p.main.readCrystal(filename, false, true); } - public void SaveCrystals(string filename = "") { Execute(new Action(() => saveCrystals(filename))); } + public void SaveCrystals(string filename = "") => Execute(new Action(() => saveCrystals(filename))); private void saveCrystals(string filename = "") { if (filename == "") @@ -4495,22 +4525,22 @@ public void SetBounds(double xStart, double xEnd, double yStart, double yEnd) } } - public class CrystalClass:MacroSub + public class CrystalListClass:MacroSub { - private Macro p; - public CrystalClass(Macro _p):base(_p.main) + private readonly Macro p; + public CrystalListClass(Macro _p):base(_p.main) { p = _p; - p.help.Add("PDI.Crystal.Count # Get total count of crystals."); - p.help.Add("PDI.Crystal.SelectedName # Get name of a selected crystal."); - p.help.Add("PDI.Crystal.SelectedIndex # Set/get index of a selected crystal."); - p.help.Add("PDI.Crystal.Select(int index) # Set index of a selected crystal."); - p.help.Add("PDI.Crystal.Check(int index) # Check a crystal assigned by 'index'."); - p.help.Add("PDI.Crystal.Uncheck(int index) # Uncheck a crystal assigned by 'index'."); + p.help.Add("PDI.CrystalList.Count # Get total count of crystals."); + p.help.Add("PDI.CrystalList.SelectedName # Get name of the selected crystal."); + p.help.Add("PDI.CrystalList.SelectedIndex # Set/get index of the selected crystal."); + p.help.Add("PDI.CrystalList.Select(int index) # Set index of a selected crystal."); + p.help.Add("PDI.CrystalList.Check(int index) # Check a crystal assigned by 'index'."); + p.help.Add("PDI.CrystalList.Uncheck(int index) # Uncheck a crystal assigned by 'index'."); + } public int Count => Execute(() => p.main.bindingSourceCrystal.Count); public string SelectedName => Execute(() => (SelectedIndex >= 0) ? ((Crystal)((DataRowView)p.main.bindingSourceCrystal.Current).Row[1]).Name : ""); - public int SelectedIndex { set @@ -4531,11 +4561,10 @@ private void select(int n) p.main.bindingSourceCrystal.Position = n; } - - public void Check(int n) { Check(n, true); } - public void Uncheck(int n) { Check(n, false); } + public void Check(int n) => Check(n, true); + public void Uncheck(int n) => Check(n, false); - public void Check(int n, bool checkState) { Execute(() => check(n, checkState)); } + public void Check(int n, bool checkState) => Execute(() => check(n, checkState)); private void check(int n, bool checkState) { if (n >= 0 && n < p.main.bindingSourceCrystal.Count) @@ -4544,11 +4573,28 @@ private void check(int n, bool checkState) p.main.dataGridViewCrystals_CellMouseClick(new object(), new DataGridViewCellMouseEventArgs(-1, -1, 0, 0, new MouseEventArgs(System.Windows.Forms.MouseButtons.None, 0, 0, 0, 0))); } } + + public double GetCellVolume=> Execute(() => p.main.bindingSourceCrystal.Count); } + public class CrystalClass : MacroSub + { + private readonly Macro p; + public CrystalClass(Macro _p) : base(_p.main) + { + p = _p; + p.help.Add("PDI.Crystal.CellVolume # Get the cell volume (Å^3) of the selected crystal."); + p.help.Add("PDI.Crystal.Pressure # Get the pressure (GPa) of the selected crystal by EOS."); + + } + public double CellVolume => Execute(() => ((Crystal)((DataRowView)p.main.bindingSourceCrystal.Current).Row[1]).Volume * 1000); + + } + + public class ProfileOperatorClass: MacroSub { - private Macro p; + private readonly Macro p; public ProfileOperatorClass(Macro _p): base(_p.main) { p = _p; @@ -4613,39 +4659,33 @@ private void Arithmetic(int index1, int index2,string outputName="") p.main.formProfile.buttonCalculate_Click(new object(), new EventArgs()); } } - } - public class ProfileClass : MacroSub + public class ProfileListClass : MacroSub { - private Macro p; - public ProfileClass(Macro _p) : base(_p.main) + private readonly Macro p; + public ProfileListClass(Macro _p) : base(_p.main) { p = _p; - p.help.Add("PDI.Profile.Conut # Get total count of profiles."); - p.help.Add("PDI.Profile.SelectedName # Get name of a selected profile."); - p.help.Add("PDI.Profile.SelectedIndex # Set/get index of a selected profile."); - p.help.Add("PDI.Profile.Select(int index) # Set index of a selected profile."); - p.help.Add("PDI.Profile.Check(int index) # Check a profile assigned by index."); - p.help.Add("PDI.Profile.Uncheck(int index) # Uncheck a profile assigned by index."); - p.help.Add("PDI.Profile.CheckAll() # Check all profiles."); - p.help.Add("PDI.Profile.UncheckAll() # Uncheck all profiles."); - p.help.Add("PDI.Profile.DeleteAll() # Delete all profiles."); - p.help.Add("PDI.Profile.Delete(int index) # Delete a profile assigned by index."); + p.help.Add("PDI.ProfileList.Conut # Get total count of profiles."); + p.help.Add("PDI.ProfileList.SelectedName # Get name of a selected profile."); + p.help.Add("PDI.ProfileList.SelectedIndex # Set/get index of a selected profile."); + p.help.Add("PDI.ProfileList.Select(int index) # Set index of a selected profile."); + p.help.Add("PDI.ProfileList.Check(int index) # Check a profile assigned by index."); + p.help.Add("PDI.ProfileList.Uncheck(int index) # Uncheck a profile assigned by index."); + p.help.Add("PDI.ProfileList.CheckAll() # Check all profiles."); + p.help.Add("PDI.ProfileList.UncheckAll() # Uncheck all profiles."); + p.help.Add("PDI.ProfileList.DeleteAll() # Delete all profiles."); + p.help.Add("PDI.ProfileList.Delete(int index) # Delete a profile assigned by index."); } - public void DeleteAll() - { - Execute(() => p.main.formProfile.DeleteAllProfiles(false)); - } + public void DeleteAll() => Execute(() => p.main.formProfile.DeleteAllProfiles(false)); public void Delete(int n) - { - Execute(new Action(() => - { - Select(n); - p.main.formProfile.DeleteProfiles(n); - })); - } + => Execute(new Action(() => + { + Select(n); + p.main.formProfile.DeleteProfiles(n); + })); public int Count => Execute(() => p.main.bindingSourceProfile.Count); @@ -4687,13 +4727,42 @@ private void check(int n, bool checkState) } } - - public void CheckAll() => Execute(new Action(() => p.main.checkBoxAll.Checked = true)); public void UncheckAll() => Execute(new Action(() => p.main.checkBoxAll.Checked = false)); } + + public class FittingClass : MacroSub + { + private readonly Macro p; + public FittingClass(Macro _p) : base(_p.main) + { + p = _p; + p.help.Add("PDI.Fitting.Apply() # Apply the optimized cell constants to the selected crystal."); + p.help.Add("PDI.Fitting.Check(int index) # Check a crystal plane assigned by index."); + p.help.Add("PDI.Fitting.Uncheck(int index) # Uncheck a crystal plane assigned by index."); + } + + public void Apply() => Execute(() => p.main.formFitting.buttonConfirm_Click(new object(), new EventArgs())); + + + + public void Check(int n) { Check(n, true); } + public void Uncheck(int n) { Check(n, false); } + + public void Check(int n, bool checkState) { Execute(() => check(n, checkState)); } + private void check(int n, bool checkState) + { + if (n >= 0 && n < p.main.formFitting.bindingSourcePlanes.Count) + { + ((DataRowView)p.main.formFitting.bindingSourcePlanes[n]).Row[0] = checkState; + p.main.formFitting.dataGridViewPlaneList_SelectionChanged(new object(), new EventArgs()); + } + } + } + + } diff --git a/PDIndexer/FormMain.ja.resx b/PDIndexer/FormMain.ja.resx index a5faac9..1c96c46 100644 --- a/PDIndexer/FormMain.ja.resx +++ b/PDIndexer/FormMain.ja.resx @@ -118,42 +118,48 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 88, 26 + + + 22, 26 + メイリオ, 8.25pt - 946, 21 + 749, 26 Ctrl+Shift+E: 状態方程式; Ctrl+Shift+F: ピークフィッティング; Ctrl+Shift+C: 回折線/結晶詳細情報; Ctrl+Shift+D: ピーク描画モードを変更 - 1187, 33 - - - - - - + 1012, 31 None - 3, 48 + 2, 38 - - 451, 375 + + 3, 4, 3, 4 + + + 360, 300 - - + + 360, 300 メイリオ, 9pt + + 3, 3 + - 407, 27 + 327, 22 横軸を最後に読み込んだプロファイルのものにそろえる @@ -162,24 +168,24 @@ プロファイルを読み込み後、横軸モードを変更します。 - - 346, 35 + + 3, 3 - - + + 359, 28 - 4, 32 + 4, 27 + + + 3, 3, 3, 3 - 354, 311 + 365, 247 横軸 - - - 0, 0 @@ -187,28 +193,28 @@ 0, 0, 0, 0 - 136, 27 + 110, 22 リニアスケール - 0, 27 + 0, 22 0, 0, 0, 0 - 121, 27 + 98, 22 対数スケール - - 136, 54 + + 170, 20 - - + + 110, 44 0, 0 @@ -217,147 +223,165 @@ 0, 0, 0, 0 - 91, 27 + 74, 22 カウント - 0, 27 + 0, 22 0, 0, 0, 0 - 161, 27 + 128, 22 カウント/秒 (CPS) - - 161, 54 + + 15, 20 - - + + 128, 44 - 12, 159 + 10, 127 - 287, 66 + 230, 53 縦軸 - 13, 82 + 10, 66 + + + 3, 4, 3, 4 - 1000, 31 + 800, 22 - - 82, 31 + + 1, 20 - - + + 66, 25 - 95, 82 + 76, 66 - 16, 30 + 13, 25 - - + + 6, 46 - 196, 27 + 158, 22 複数プロファイルを表示 - - - - 14, 112 + 11, 90 - 137, 27 + 111, 22 色を自動で変更 + + 6, 20 + - 211, 27 + 170, 22 単一プロファイルのみ表示 - - - True - 111, 87 + 89, 70 - 70, 23 + 56, 18 カウント - - - True - 10, 66 + 8, 53 - 145, 23 + 116, 18 プロファイル間の差 - - - メイリオ, 9pt - 150, 10 + 120, 8 - 178, 143 + 142, 114 単/複数プロファイル設定 - - + + 76, 68 + + + 76, 44 + + + 76, 20 メイリオ, 9pt + + 3, 69 + + + 73, 17 + 目盛文字色 メイリオ, 9pt + + 3, 46 + + + 73, 17 + 目盛り線 メイリオ, 9pt + + 2, 22 + + + 74, 17 + 背景色 @@ -365,19 +389,19 @@ メイリオ, 9pt - 12, 57 + 10, 46 + + + 100, 95 色設定 - - - - 15, 31 + 12, 25 - 152, 27 + 123, 22 エラーバーを表示 @@ -386,118 +410,139 @@ メイリオ, 9pt - 15, 6 + 12, 5 - 137, 27 + 111, 22 目盛り線を表示 - 4, 32 + 4, 27 + + + 3, 3, 3, 3 - 354, 311 + 282, 247 色設定 + 複数プロファイル表示設定 - - - メイリオ, 9pt - 2, 27 + 2, 22 - 362, 347 + 373, 278 - - + + 55, 51 - - + + 3, 4, 3, 4 - - + + 90, 25 - - + + -1, 26 - - + + 50, 17 - - + + 4, 53 + + + 53, 17 + + + 55, 25 + + + 3, 4, 3, 4 + + + 90, 25 + + + 150, 21 - 138, 5 + 110, 4 - - + + 58, 17 - 142, 31 + 114, 25 - - + + 49, 17 - 142, 53 + 114, 42 - - + + 49, 17 - 191, 2 + 153, 2 + + + 3, 4, 3, 4 - - + + 86, 25 - 191, 50 + 153, 40 - - + + 3, 4, 3, 4 + + + 86, 25 - 191, 29 + 153, 23 + + + 3, 4, 3, 4 - - + + 86, 25 - 0, 78 + 0, 62 + + + 3, 4, 3, 4 - 282, 102 + 226, 82 - - + + 3, 3, 3, 3 - 283, 174 - - - + 225, 134 - 369, 33 + 381, 24 - 291, 202 - - - + 233, 162 - 0, 54 + 0, 43 - 932, 495 + 794, 482 プロファイルを表示します @@ -508,106 +553,124 @@ - 139, 0 + 117, 0 + + + 1000, 25 + + + 1, 25 - 95, 29 + 82, 25 - 402, 0 + 341, 0 + + + 1000, 25 + + + 1, 25 - 95, 29 + 82, 25 + + + 23, 0 + + + 1000, 25 + + + 1, 25 - 95, 29 + 82, 25 - 787, 0 + 672, 0 - - 141, 17 + + 5, 0, 0, 0 - - + + 119, 14 - 292, 0 + 247, 0 + + + 1000, 25 + + + 1, 25 - 95, 29 + 82, 25 - 644, 0 + 549, 0 - - 135, 25 + + 5, 0, 0, 0 - - + + 117, 20 - 501, 0 + 426, 0 + + + 5, 0, 0, 0 - 135, 25 + 117, 20 2θ: - - - - 387, 2 + 329, 2 - - + + 12, 16 - 124, 2 + 105, 2 - - + + 12, 20 - - + + 23, 17 メイリオ, 10pt - 246, 2 + 209, 2 + + + 10, 2, 0, 0 - 46, 25 + 38, 20 強度 - - - - 932, 28 - - - + 794, 22 - 932, 54 - - - - - - + 794, 43 - 4, 54 + 3, 43 - 242, 111 + 208, 118 プロファイルのリストを表示します。 @@ -619,10 +682,10 @@ メイリオ, 9pt - 4, 165 + 3, 161 - 242, 21 + 208, 17 プロファイル情報 @@ -641,10 +704,10 @@ メイリオ, 9pt - 4, 27 + 3, 21 - 242, 27 + 208, 22 すべてチェック/解除 @@ -653,22 +716,16 @@ メイリオ, 9pt - 250, 190 + 214, 181 プロファイルリスト - - - - - - - 4, 27 + 3, 21 - 242, 304 + 208, 301 Crystal のリストを表示します。 @@ -680,10 +737,10 @@ メイリオ, 9pt - 4, 331 + 3, 322 - 242, 19 + 208, 15 回折線/結晶情報 (C) @@ -695,55 +752,291 @@ メイリオ, 9pt - 250, 354 + 214, 340 結晶リスト - - - - - - - 250, 549 + 214, 525 - 190 + 181 - - - - - + + 4 - 1187, 549 + 1012, 525 - 932 + 794 - - + + 4 - 1187, 549 + 1012, 525 + + + 1012, 634 - - + + メイリオ, 9pt - - + + 360, 26 - - + + プロファイルを読込 - - 1187, 672 + + 360, 26 - - + + プロファイルを書き込み + + + 341, 26 + + + 341, 26 + + + 341, 26 + + + 360, 26 + + + プロファイルをエクスポート(csv) + + + 357, 6 + + + 360, 26 + + + 結晶リストを読込 (現在のリストを消去) + + + 360, 26 + + + 結晶リストを読込 (現在のリストに追加) + + + 360, 26 + + + 結晶リストを保存 + + + 360, 26 + + + 結晶情報をCIF, AMC ファイルから読込 + + + 360, 26 + + + 選択結晶をCIF フォーマットで出力 + + + 360, 26 + + + 結晶リストをインストール直後の状態に戻す + + + 357, 6 + + + 360, 26 + + + ページ設定 + + + 360, 26 + + + 印刷プレビュー + + + 360, 26 + + + 印刷 + + + 357, 6 + + + 188, 26 + + + as Bitmap + + + 188, 26 + + + 360, 26 + + + コピー + + + 360, 26 + + + メタファイルとして保存 + + + 357, 6 + + + 360, 26 + + + 閉じる + + + メイリオ, 10pt + + + F + + + 78, 25 + + + ファイル + + + 220, 26 + + + ツールチップ + + + 220, 26 + + + クリップボードを監視 + + + 260, 26 + + + Yu Gothic UI, 9pt + + + 100, 23 + + + 220, 26 + + + ファイルを監視 + + + 220, 26 + + + レジストリを消去 + + + メイリオ, 10pt + + + 92, 25 + + + オプション + + + 110, 22 + + + 55, 25 + + + 234, 26 + + + PDIndexerについて + + + 234, 26 + + + アップデートをチェック + + + 234, 26 + + + ヒント + + + 234, 26 + + + ヘルプ (web) + + + メイリオ, 10pt + + + 64, 25 + + + ヘルプ + + + + iVBORw0KGgoAAAANSUhEUgAAABMAAAASCAYAAAC5DOVpAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAA + wAAAAMABMHffXgAAAUpJREFUOE9jYAhq+Y8Lg8A1Bk04BgFs6uAYpMCmeiFWSf+OVf+fxlcSZRhYDkxC + AboCYgwDOeT7+WtgeQaYIhjQzp8JV0jIMBCAyf39+u0/w00RKzDn/fx1YEkYwGeYf/uq/z/vPUYRBwGG + ltWH///79w9DAgSSpmzGMAwEYPxfD59CRSAAHpsgcFvBBazoTddcMB8E0A0Dsxm1wGwYUMmaCvE6lI8T + YHMZLgCOAGph6hr2af2e//jwA8cEuGJs8sgYJTshg+vs+v8f2MfhjU0QQMk9IAIkAAN/v/9AUYwrAp5E + lYDFHjjEg/lgw8AsKLjGpA1WAMoeIIAt0Ub1rwfTMIAsBzbs358/KILGpXPANuHLTsjgoWsyWJ7hBr8Z + mPFx1XawBEwxIcNAGJR7kAE8o8NTMRImZBgMwwDYm9gUgDCxhoFw/tyd/wHjpZDiF9mN8AAAAABJRU5E + rkJggg== + + + + 244, 26 + + + メイリオ, 10pt + + + + iVBORw0KGgoAAAANSUhEUgAAABMAAAASCAYAAAC5DOVpAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAA + wAAAAMABMHffXgAAAG5JREFUOE/tjLsNwCAMRFNQMAyDMQMjMDSOIxHJsc9YSOmSJ11zv4Ne5D/bZ32W + Eje4IrXAT/WJlANOarUHWgDHVUMkgOOqIRLAcdUQCYDdMexYqvdZfMKJQ2v25FLOs2DhNKCU8OQmPtvg + E2dEJ41V0r+pZPOtAAAAAElFTkSuQmCC + + + + 244, 26 + + + メイリオ, 10pt + + + 88, 25 + + + 0, 0 + + + 1012, 29 メイリオ, 9pt @@ -754,7 +1047,7 @@ iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 - YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAWDSURBVFhH1VdrTFRHFJ69d9+LRqUWVLQqaGOiIo3+QCNR + YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAWDSURBVFhH1VdrTFRHFJ69d9+LRqUWVLQqaGOiIo3+QCNR qG/QNjFREB9BYkxAgeVhJRJSUEkkpLWPxAbCDxQBgcUHlEeLSllZXRWRkgYLIlopbEVFDMqrfD132BIs NLqLNek3mczee+d+55sz55y5y/7XOMIYrD/fLXp7enCZjFtkMtTQ2NXRgdqMDJRv3YqWmhr7RLXW1eH2 iRN40dmJ/v5+5Ds6opzIqw4fHkF4t7wc9+gZdu/GfZUO6StX4g5dP5XLUUVjz8uXtok4uWQJaunFVlpR @@ -782,7 +1075,7 @@ - 155, 54 + 134, 46 回折線 @@ -792,7 +1085,7 @@ 結晶の詳しい情報を表示/設定します - 6, 57 + 6, 49 メイリオ, 10pt @@ -800,7 +1093,7 @@ iVBORw0KGgoAAAANSUhEUgAAACAAAAAhCAYAAAC4JqlRAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 - YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAPzSURBVFhHxVdtS5RBFPWH9B8EP0h96IPhh8APQVGEYFAQ + YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAPzSURBVFhHxVdtS5RBFPWH9B8EP0h96IPhh8APQVGEYFAQ CEkREkaBICQhRRgFQYVg9IK90AvRkhaWvRpIlkaBRJEkFRhGLxhIp3POzO4+Prubu0V64LLP3Jm598yd OzN3q4oBr14BNTWIzcUHuruBZcuATGZpSKCpCTh4EGhvXyICdXXA5CTQ0PBPBPD9O3DiRHk2tFpcuuTB 2f1P5gFmZ8syhOFhYM+eMJ+/qK4GRkbydj59KrSD8XF41bW1wPS0f62vr89PlDHmRmyWhKKmeXj2zImM @@ -821,7 +1114,7 @@ - 150, 54 + 130, 46 プロファイル @@ -831,7 +1124,7 @@ プロファイルの詳しい情報を表示/設定します。 - 6, 57 + 6, 49 メイリオ, 10pt @@ -839,7 +1132,7 @@ iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 - YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAANTSURBVFhH7ZfvS1NRGMf9Q4KQCEUkYxBzP+6VCkYq3EHI + YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAANTSURBVFhH7ZfvS1NRGMf9Q4KQCEUkYxBzP+6VCkYq3EHI tIRctDcVSIUQYU4QAimiyMTKoMgfhVPJ7YVRuRJfiF4IRJCFSoFNUBNxWIRBT8957jlnu+6mOXVv6oEv 3t3LzudznnPuUXN2UpBIAIyPU/it7BbBi4sp/FZ2698WgNZWCZfp6MieCG1Aj8ckwB/tbR07eh/6+oFg qUsAQ0N7K7C+DmALPoO86EdQ1NsyutMLCYcKKl6nRvM+hfrrEzA6ugrsu3yYzEpR68AeuAP7ACi58RVw @@ -857,7 +1150,7 @@ - 130, 54 + 114, 46 状態 @@ -867,7 +1160,7 @@ 状態方程式から圧力を算出します - 6, 57 + 6, 49 メイリオ, 10pt @@ -875,7 +1168,7 @@ iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 - YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAALDSURBVFhHvVe/ixNBGBX8AyR9sIjNIRGLK1MJB0rAwmKL + YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAALDSURBVFhHvVe/ixNBGBX8AyR9sIjNIRGLK1MJB0rAwmKL YOlxpLCw2/8gBBHsAkEtVySNCCmEFBZb2KRa1EZSLAhndSwWHofFc963803G5WJuk0zeELIzs7n3/Xjf N3PXtkGCBCMz7HS/KFCgbUbfDru8P9BzEmdm0BC7vD900UVuBp+baO7fAN9r35jgiGNgMIDxeen1AOWw 03BIU0PcBA7af4zPXUc4xRQ9M+w0HNT7h/FX3B98coQpUnTMsNNw6HQgJPeSV3jUO/+HMLgQi6IMP58P @@ -891,19 +1184,19 @@ - 197, 54 + 169, 46 ピーク フィッティング (F) - 6, 57 + 6, 49 iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 - YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG + YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc @@ -916,15 +1209,15 @@ - 94, 54 + 73, 46 - 6, 57 + 6, 49 iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 - YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG + YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc @@ -937,15 +1230,15 @@ - 123, 54 + 97, 46 - 6, 57 + 6, 49 iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 - YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG + YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc @@ -958,15 +1251,15 @@ - 186, 54 + 142, 46 - 6, 57 + 6, 49 iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 - YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG + YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc @@ -979,285 +1272,19 @@ - 287, 54 + 230, 46 - 4, 33 + 3, 29 - 898, 57 - - - - - - メイリオ, 9pt - - - 438, 30 - - - プロファイルを読込 - - - 438, 30 - - - プロファイルを書き込み - - - 413, 30 - - - 413, 30 - - - 413, 30 - - - 438, 30 - - - プロファイルをエクスポート(csv) - - - 435, 6 - - - 438, 30 - - - 結晶リストを読込 (現在のリストを消去) - - - 438, 30 - - - 結晶リストを読込 (現在のリストに追加) - - - 438, 30 - - - 結晶リストを保存 - - - 438, 30 - - - 結晶情報をCIF, AMC ファイルから読込 - - - 438, 30 - - - 選択結晶をCIF フォーマットで出力 - - - 438, 30 - - - 結晶リストをインストール直後の状態に戻す - - - 435, 6 - - - 438, 30 - - - ページ設定 - - - 438, 30 - - - 印刷プレビュー - - - 438, 30 - - - 印刷 - - - 435, 6 - - - 228, 30 - - - as Bitmap - - - 228, 30 - - - 438, 30 - - - コピー - - - 438, 30 - - - メタファイルとして保存 - - - 435, 6 - - - 438, 30 - - - 閉じる - - - メイリオ, 10pt - - - F - - - 94, 29 - - - ファイル - - - 268, 30 - - - ツールチップ - - - 268, 30 - - - クリップボードを監視 - - - 318, 30 - - - 268, 30 - - - ファイルを監視 - - - 268, 30 - - - レジストリを消去 - - - メイリオ, 10pt - - - 111, 29 - - - オプション - - - 137, 28 - - - 68, 29 - - - 285, 30 - - - PDIndexerについて - - - 285, 30 - - - アップデートをチェック - - - 285, 30 - - - ヒント - - - 285, 30 - - - ヘルプ (web) - - - メイリオ, 10pt - - - 77, 29 - - - ヘルプ - - - - iVBORw0KGgoAAAANSUhEUgAAABMAAAASCAYAAAC5DOVpAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAA - wAAAAMABMHffXgAAAUpJREFUOE9jYAhq+Y8Lg8A1Bk04BgFs6uAYpMCmeiFWSf+OVf+fxlcSZRhYDkxC - AboCYgwDOeT7+WtgeQaYIhjQzp8JV0jIMBCAyf39+u0/w00RKzDn/fx1YEkYwGeYf/uq/z/vPUYRBwGG - ltWH///79w9DAgSSpmzGMAwEYPxfD59CRSAAHpsgcFvBBazoTddcMB8E0A0Dsxm1wGwYUMmaCvE6lI8T - YHMZLgCOAGph6hr2af2e//jwA8cEuGJs8sgYJTshg+vs+v8f2MfhjU0QQMk9IAIkAAN/v/9AUYwrAp5E - lYDFHjjEg/lgw8AsKLjGpA1WAMoeIIAt0Ub1rwfTMIAsBzbs358/KILGpXPANuHLTsjgoWsyWJ7hBr8Z - mPFx1XawBEwxIcNAGJR7kAE8o8NTMRImZBgMwwDYm9gUgDCxhoFw/tyd/wHjpZDiF9mN8AAAAABJRU5E - rkJggg== - - - - 296, 30 - - - メイリオ, 10pt - - - - iVBORw0KGgoAAAANSUhEUgAAABMAAAASCAYAAAC5DOVpAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAA - wAAAAMABMHffXgAAAG5JREFUOE/tjLsNwCAMRFNQMAyDMQMjMDSOIxHJsc9YSOmSJ11zv4Ne5D/bZ32W - Eje4IrXAT/WJlANOarUHWgDHVUMkgOOqIRLAcdUQCYDdMexYqvdZfMKJQ2v25FLOs2DhNKCU8OQmPtvg - E2dEJ41V0r+pZPOtAAAAAElFTkSuQmCC - - - - 296, 30 - - - メイリオ, 10pt - - - 107, 29 - - - 0, 0 - - - 1187, 33 - - - - - - - - - - - - + 765, 49 - - + + 96, 96 - 1187, 672 + 1012, 634 @@ -1281,7 +1308,7 @@ AABtbQAAq20AAKurAACrqwAAx6sAAMerAADvqwAA76sAAP/HAAD/xwAA/8cAAP/HAAD/7wAA/+8AAA== - - + + 794, 481 \ No newline at end of file diff --git a/PDIndexer/FormMain.resx b/PDIndexer/FormMain.resx index eee112e..f8f3447 100644 --- a/PDIndexer/FormMain.resx +++ b/PDIndexer/FormMain.resx @@ -117,6768 +117,6417 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Scale Text - - - PeakColor + + 116, 10 + + + + False - - Calculate the pressure using equation of state + + + None - - 425, 0 + + Tahoma, 8.25pt - - dataGridViewTextBoxColumn38 + + 100, 25 - - dataGridViewImageColumn76 + + 88, 26 - - - 10 + + Calculating Time: - - PeakColor + + False - - Profile + + 22, 26 - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + - - - None + + False - - 22 + + Tahoma, 8.25pt - - tabPage3 + + 660, 26 - - Japanese (need restart) + + Ctrl+Shift+E: Equation of States; Ctrl+Shift+F: Fitting Parameter; Ctrl+Shift+C: Crystal Parameter; Ctrl+Shift+D: change peak mode - - 409, 28 + + 0, 0 - - + + 969, 31 - - 22 + + 24 - - Profile + + statusStrip1 - - label22 + + statusStrip1 - - 92, 21 + + System.Windows.Forms.StatusStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - toolStripMenuItemSaveMetafile + + toolStripContainer1.BottomToolStripPanel - - Crystal + + 0 - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + toolStripContainer1.BottomToolStripPanel - - System.Windows.Forms.DataGridViewCheckBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ToolStripPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Segoe UI Symbol, 9.75pt + + toolStripContainer1 - - 89 + + 4 - - Crystal - Parameter (C) + + True - - 0, 0, 0, 0 + + Fill - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0, 0 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - 10 + + GrowAndShrink - - 99, 27 + + Fill - - tabPage3 + + Segoe UI Symbol, 9pt - - 15, 81 + + 3, 27 - - 20 + + 3, 4, 3, 4 - - 10 + + 360, 300 - - 10 + + 360, 300 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3 - - 2Θ: + + horizontalAxisUserControl - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Crystallography.Controls.HorizontalAxisUserControl, Crystallography.Controls, Version=2020.10.16.338, Culture=neutral, PublicKeyToken=null - - 0, 0, 0, 0 + + tabPage1 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - label23 + + True - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - dataGridViewImageColumn69 + + Arial, 8.25pt - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - dataGridViewTextBoxColumn12 + + 3, 3 - - 4, 0, 4, 0 + + 244, 18 - - dataGridViewImageColumn60 + + 2 - - dataGridViewTextBoxColumn33 + + After reading profile, change horizontanl axis - - dataGridViewImageColumn74 + + 379, 10 + + + プロファイルを読み込み後、横軸モードを変更します。 + - - 4 + + checkBoxChangeHorizontalAppearance - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Int.: + + flowLayoutPanel4 - - Color + + 0 - - dataGridViewImageColumn56 + + Top - - Intensity are linealy plotted + + 3, 3 - - 3 + + 352, 24 - - + + 4 - - Check + + flowLayoutPanel4 - - dataGridViewImageColumn8 + + System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewTextBoxColumn13 + + tabPage1 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - dataGridViewImageColumn32 + + 4, 26 - - + + 3, 3, 3, 3 - - Segoe UI Symbol, 9.75pt + + 358, 285 - - NoControl + + 0 - - Crystal - - - 10 + + Horizontal Axis - - 10 + + tabPage1 - - 22 + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Crystal + + tabControl - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - PeakColor + + True - - 22 + + GrowAndShrink - - 10 + + True - - 10 + + NoControl - - dataGridViewTextBoxColumn55 + + 3, 3 - - dataGridViewTextBoxColumn10 + + 74, 21 - - 123, 50 + + 0 - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Linearity - - Profile list. - Checked profiles are visible on the main profile viewer. - To display multiple profiles, check "Multiple Profiles" radio button in "Appearance & Single/Multi Profiles" + + Intensity are linealy plotted - - Scale Line + + radioButtonLinearity - - 10 + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Fill + + flowLayoutPanel2 - - 131, 31 + + 0 - - 20 + + True - - 20 + + NoControl - - File + + 3, 30 - - checkBoxErrorBar + + 85, 21 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - dataGridViewTextBoxColumn16 + + Logarithm - - 10 + + Intensity are logarithmically plotted - - 10 + + radioButtonLogarithm - - Segoe UI Symbol, 9.75pt + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + flowLayoutPanel2 - - Revert crystals to the initial state + + 1 - - 139, 28 + + TopDown - - 2 + + 170, 20 - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 91, 54 - - Crystal + + 1 - - 265, 62 + + flowLayoutPanel2 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 5, 4, 5 + + groupBox4 - - 22 + + 0 - - 19 + + True - + GrowAndShrink - - 937, 35 + + True - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3, 3 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 94, 21 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - dataGridViewImageColumn3 + + Raw Counts - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Raw count mode - - tabPage3 + + radioButtonRawCounts - - 22 + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + flowLayoutPanel1 - - System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - 1 + + True - - 4 + + NoControl + + + 3, 30 + + + 148, 21 + + + 0 + + + Count per Step (CPS) Count per step mode - - dataGridViewProfiles + + radioButtonCountsPerStep - - 3 + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewImageColumn28 + + flowLayoutPanel1 - - 10 + + 1 - - 107, 27 + + TopDown - - Page Setup + + 15, 20 - - Color + + 154, 54 - - dataGridViewImageColumn46 + + 1 - - 20 + + flowLayoutPanel1 - - Profile - Parameter (P) + + System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewImageColumn42 + + groupBox4 - - dataGridViewTextBoxColumn73 + + 1 - - Segoe UI Symbol, 9.75pt + + 3, 162 - - English (need restart) - - - Horizontal Axis - - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 310, 83 - - System.Windows.Forms.ToolStripStatusLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Vertical Axis - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Choose vertical axis mode. - - 22 + + groupBox4 - - 10 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 409, 28 + + tabPage2 - - 4, 0, 4, 0 + + 0 - - checkDataGridViewCheckBoxColumn1 + + GrowAndShrink - - Crystallography.Controls.GraphControl, Crystallography.Controls, Version=2020.10.15.835, Culture=neutral, PublicKeyToken=null + + Arial, 9pt - - 0 + + 13, 84 - - Bottom + + 3, 4, 3, 4 - - 10 + + 1000, 27 - - dataGridViewImageColumn58 + + 1, 25 - - Pt EOS + + 1, 1, 1, 1 - - 4, 4, 4, 4 + + 74, 27 - - 20 + + 4 - - 19, 25 + + numericalTextBoxIncreasingPixels - - 19, 144 + + Crystallography.Controls.NumericBox, Crystallography.Controls, Version=2020.10.16.338, Culture=neutral, PublicKeyToken=null - - PeakColor + + groupBox3 - - PeakColor + + 0 - - Lattice Preferred Orientation Analysis + + 84, 86 - - Crystal + + 20, 25 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - Profile + + numericUpDownIncreasingPixels - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 126 + + groupBox3 - - 10 + + 1 - + True - - Profile + + NoControl - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 6, 46 - - Print Preview + + 102, 21 - - 261, 24 + + 0 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Multi Profiles - - System.Windows.Forms.ToolStripStatusLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + radioButtonMultiProfileMode - - dataGridViewTextBoxColumn103 + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + groupBox3 - - tableLayoutPanel2 - - - 260 - - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - 10 + + True - - + + NoControl - - radioButtonSingleProfileMode + + 15, 115 - - 29, 0 + + 182, 21 - - Color + + 3 - - Choose vertical axis mode. + + Change automaticaly color - - tabPage1 + + Check this if you want to change the color of the next profile automatically - - 10 + + checkBoxChangeColor - - PeakColor + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Color + + groupBox3 - - toolStripContainer1.BottomToolStripPanel + + 3 - + True - - 20 + + NoControl - - 228, 28 + + 6, 20 - - True + + 102, 21 - - 56, 24 + + 0 - - NoControl + + Single Profile - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + radioButtonSingleProfileMode - - 4, 5, 4, 5 + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + groupBox3 - - + + 4 - - 16 + + NoControl - - Check + + 107, 92 - - tabPage3 + + 55, 18 - - NoControl + + 1 - - Crystal Parameter (C) + + counts - - True + + label6 - - 10 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 15, 20 + + groupBox3 - - dataGridViewTextBoxColumn19 + + 5 - - 22 + + NoControl - - Top + + 12, 65 - - 409, 28 + + 181, 18 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Increasing intensity by a profile - - Crystallography.Controls.ColorControl, Crystallography.Controls, Version=2020.10.15.835, Culture=neutral, PublicKeyToken=null + + label1 - - flowLayoutPanel2 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 269, 260 + + groupBox3 - - tabPage3 + + 6 - - label7 + + 115, 7 - - Profile + + 198, 145 - - + + 4 - - 409, 28 + + Single/Multi Profile - - 409, 28 + + groupBox3 - - 6, 53 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 0, 4, 0 + + tabPage2 - - PeakColor + + 1 - - 95, 25 + + True - - System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GrowAndShrink - - System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Segoe UI Symbol, 9.75pt - - System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Segoe UI Symbol, 9.75pt - - 134 + + 0, 0, 0, 0 - - Color + + - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Segoe UI Symbol, 9.75pt - - 4, 4, 4, 4 + + 0, 0, 0, 0 - - NoControl + + - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 76, 68 - - dataGridViewTextBoxColumn52 + + 0, 0, 0, 0 - - dataGridViewTextBoxColumn107 + + 20, 20 - - 409, 28 + + 5 - - Color + + Choose the scale-text's color - - dataGridViewTextBoxColumn77 + + Choose the scale-text's color - - 0, 100 + + colorControlScaleText - - Crystal + + Crystallography.Controls.ColorControl, Crystallography.Controls, Version=2020.10.16.338, Culture=neutral, PublicKeyToken=null - - dataGridViewImageColumn36 + + groupBox2 - - NaCl EOS + + 0 - - 22 + + True - - hintToolStripMenuItem + + GrowAndShrink - - NoControl + + Segoe UI Symbol, 9.75pt - - + + Segoe UI Symbol, 9.75pt - - 10 + + 0, 0, 0, 0 - + - - 10 + + Segoe UI Symbol, 9.75pt - - NoControl + + 0, 0, 0, 0 - - dataGridViewTextBoxColumn6 + + - - dataGridViewTextBoxColumn53 + + 76, 44 - - 10 + + 0, 0, 0, 0 - - splitContainer1.Panel1 + + 20, 20 - - System.Windows.Forms.SplitContainer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 5 - - dataGridViewImageColumn79 + + Choose the scale-line's color - - 1 + + Choose the scale-line's color - - 10 + + colorControlScaleLine - - dataGridViewTextBoxColumn101 + + Crystallography.Controls.ColorControl, Crystallography.Controls, Version=2020.10.16.338, Culture=neutral, PublicKeyToken=null - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox2 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - languageToolStripMenuItem + + True - - PeakColor + + GrowAndShrink - - 88 + + Segoe UI Symbol, 9.75pt - - Save as Metafile + + Segoe UI Symbol, 9.75pt - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0, 0, 0, 0 - - 1 + + - - dataGridViewTextBoxColumn50 + + Segoe UI Symbol, 9.75pt - - 0 + + 0, 0, 0, 0 - - dataGridViewImageColumn4 + + - - tabControl + + 76, 20 - - colorDataGridViewTextBoxColumn + + 0, 0, 0, 0 - - Fitting Diffraction - Peaks (F) + + 20, 20 - - 16 + + 5 - - dataGridViewImageColumn39 + + Choose the background color - - Color + + Choose the background color - - 10 + + colorControlBack - - dataGridViewTextBoxColumn72 + + Crystallography.Controls.ColorControl, Crystallography.Controls, Version=2020.10.16.338, Culture=neutral, PublicKeyToken=null - - tabControl1 + + groupBox2 - - dataGridViewTextBoxColumn56 + + 2 - - 134, 50 + + NoControl - - 10 + + 3, 69 - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 73, 17 - - + + 1 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Scale Text - - 75, 23 + + Choose the scale-text's color - - 462, 39 + + label5 - - 10 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 1 + + groupBox2 - - Profile + + 3 - + NoControl - - Intensity are logarithmically plotted + + 3, 46 - - True + + 73, 17 - - Crystal + + 1 - - 20 + + Scale Line - - 95, 85 + + Choose the scale-line's color - - 93, 29 + + label2 - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Save crystals + + groupBox2 - - PeakColor + + 4 - + NoControl - - 1, 29 - - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2, 22 - - 69, 22 + + 74, 17 - - 5 + + 1 - - Check this if you want to change the color of the next profile automatically + + Back Color - - dataGridViewImageColumn66 + + Choose the background color - - 132 + + label4 - - Check + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - labelTwoTheta + + groupBox2 - - Profile + + 5 - - + + 6, 58 - - 1 + + 100, 95 - - 10 + + 4 - - Macro + + Color - - dataGridViewTextBoxColumn71 + + groupBox2 - - Segoe UI Symbol, 9.75pt + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 4, 4, 4 + + tabPage2 - - No + + 2 - - numericBoxUpperX + + True - - Arial, 9pt + + NoControl - - Crystal + + 5, 31 - - 0 + + 81, 21 - - 661, 0 + + 3 - - 10 + + Error bar - - 10 + + Show error bar (if profiles have it) - - 4, 4, 4, 4 + + checkBoxErrorBar - - 0 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 409, 28 + + tabPage2 - - 10 + + 3 - - PeakColor + + True - + NoControl - - toolStripSeparator1 + + 5, 6 - - 409, 28 + + 84, 21 - - 4, 4, 4, 4 + + 3 - - dataGridViewImageColumn13 + + Scale Line - - + + Show scale line - - + + checkBoxShowScaleLine - - dataGridViewTextBoxColumn54 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewImageColumn45 + + tabPage2 - - 20, 20 + + 4 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 26 - - 3 + + 3, 3, 3, 3 - - 0 + + 358, 285 - - 10 + + 1 - - Profile + + Appearance & Single/Multi Profile - - dataGridViewImageColumn31 + + tabPage2 - - 1 + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 156, 50 + + tabControl - - Profile + + 1 - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Segoe UI Symbol, 9.75pt - - dataGridViewImageColumn49 + + 2, 31 - - + + 366, 315 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 5 - - 22 + + tabControl - - Crystal + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + + splitContainer1.Panel1 - - PeakColor + + 0 - - helpToolStripMenuItem + + Segoe UI Symbol, 9.75pt - - Crystal + + 55, 51 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3, 4, 3, 4 - - splitContainer1.Panel1 + + 90, 25 - - asTSVtabSeparatedValuesFileToolStripMenuItem + + 135 - - PeakColor + + numericUpDownMaxInt - - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAS - dAAAEnQB3mYfeAAAAgNJREFUOE+lkutLk2EYxvePhJaHShFBUTEPiCieQOmDiEZgrEbpYGiCQxkqA80I - RUkUEZ0YRMS+DDI70MkTmzJnDc8iU8QT2mAEItnle90wHwTDyBduXnie5/rd133Q4ZKfAJqHFs9E08A8 - zD1emDpmYXjqRlnTFIrMk8iuGkNaxWekGEaQrHecBfw+/vPXODw6hj9whN2fh/Bt/8LSRgA3cxr/DeBZ - 9kvmTNMoHGNbIrYN+3Aj23IxgJkpds0doP3VstgmsNexhutZ9QrAms8T0zYzU5xXM46kcjsmvfvoeL2i - AeoUgA07T8yaaZuZKab1rzN74jgys1YB2O2gmBZzH49LODXrrJlnzEzxe9cOLH1ziMioVgCOiuIFX0CE - Q+/WYf+yieiCFrRp9tkwxnP7Kt5MbKGm6wfC000KwDlTXNLgEvHMkh+Db32o7fYivtQm1l9+3IBOp5P7 - yjYPwlKNCsAluWudxgvtknb5t9oWcL/VLU2Mvd2JFq3uqs7vAtE/ceNayiMF4KiYMSjmY2O7B4Ua+NaD - YQGEJumRbvyG1IcfBHI12aAAXM8R57aIWTNrLLY4tfNPiCvpR1SeVeu6WWzHFD6THSDwFMDdpmUG62NJ - PKM4Or9ZxBxb8H8l7g5CEu8pAOfM3WanSeeS8CFHxW4zM2umbWamOCShXAH+/wNOANABIDUxWnDPAAAA - AElFTkSuQmCC - + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 0, 4, 0 + + tabPage3 - - Error bar + + 0 - - Crystal + + True - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Segoe UI Symbol, 9.75pt - - 10 + + NoControl - - splitContainer1 + + -1, 26 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 50, 17 - - + + 134 - - 10 + + Min.Int. - - True + + label7 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Crystal + + tabPage3 - - Profile + + 1 - - splitContainer1.Panel2 + + True - - 2 + + Segoe UI Symbol, 9.75pt - - 10 + + NoControl - - 10 + + 4, 53 - - True + + 53, 17 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 133 - - Color + + Max.Int. - - 0 + + label21 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - PeakColor + + tabPage3 - - None + + 2 - - Fit the diffraction peaks + + Segoe UI Symbol, 9.75pt - - 10 + + 55, 25 - - Profile + + 3, 4, 3, 4 - - 22 + + 90, 25 - - 10 + + 136 - - 10 + + numericUpDownMinInt - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4 + + tabPage3 - - 2 + + 3 - - 30 + + True - - コピーToolStripMenuItem + + Segoe UI Symbol, 9.75pt - - 93, 29 + + NoControl - - Log Scale + + 2, 0 - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 150, 21 - - 2 + + 132 - - Crystallography.Controls.ColorControl, Crystallography.Controls, Version=2020.10.15.835, Culture=neutral, PublicKeyToken=null + + Show unrolled image - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + checkBoxShowUnrolledImage - - dataGridViewImageColumn25 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tabPage3 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4 - - 91, 21 + + True - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Segoe UI Symbol, 9.75pt - - Choose the background color + + NoControl - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 150, 5 - - 20 + + 58, 17 - - 4 + + 128 - - 20 + + Gradient - - toolStripButtonFittingParameter + + label24 - - 458, 394 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + tabPage3 - - 22 + + 5 - - 2 + + True - - + + Segoe UI Symbol, 9.75pt - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 155, 29 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 49, 17 - - Segoe UI Symbol, 9.75pt + + 129 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Scale 1 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + label23 - - dataGridViewTextBoxColumn29 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - as CSV (comma separated values) file + + tabPage3 - - 71, 23 + + 6 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - + Segoe UI Symbol, 9.75pt - - 4, 26 + + NoControl - - 1211, 31 + + 155, 54 - - 22 + + 49, 17 - - + + 130 - - Appearance & Single/Multi Profile + + Scale 2 - - Crystallography.Controls.NumericBoxWithMenu, Crystallography.Controls, Version=2020.10.15.835, Culture=neutral, PublicKeyToken=null + + label22 - - dataGridViewImageColumn77 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewImageColumn68 + + tabPage3 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 7 - - Color + + Segoe UI Symbol, 9.75pt - - dataGridViewTextBoxColumn34 + + Positive Film - - 20 + + Negative Film - - 10 + + 212, 2 - - Top, Left, Right + + 3, 4, 3, 4 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 86, 25 - - dataGridViewTextBoxColumn70 + + 125 - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + comboBoxGradient - - 178, 50 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tabPage3 - - splitContainer2 + + 8 - - groupBoxCrystalData + + Segoe UI Symbol, 9.75pt - - 1 + + Gray scale - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Cold-Warm scale - - Program Updates + + 212, 50 - - editorToolStripMenuItem + + 3, 4, 3, 4 - - 10 + + 86, 25 - - 0, 0 + + 127 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + comboBoxScale2 - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tableLayoutPanel2 + + tabPage3 - + + 9 + + Segoe UI Symbol, 9.75pt - - Color + + Log Scale - - dataGridViewImageColumn52 + + Liner Scale - - dataGridViewTextBoxColumn40 + + 212, 26 - - 20 + + 3, 4, 3, 4 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 86, 25 - - dataGridViewImageColumn38 + + 126 - - 4, 4, 4, 4 + + comboBoxScale1 - - 0, 0 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + + tabPage3 - - readPatternProfileToolStripMenuItem + + 10 - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Top, Bottom, Left, Right - - 1211, 870 + + Segoe UI Symbol, 9pt - - PeakColor + + 0, 80 - - tabPage2 + + 3, 4, 3, 4 - - Crystal + + 300, 102 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 131 - - splitContainer1.Panel2 + + graphControlFrequency - - 989, 591 + + Crystallography.Controls.GraphControl, Crystallography.Controls, Version=2020.10.16.338, Culture=neutral, PublicKeyToken=null - - 3 + + tabPage3 - - Color + + 11 - - 20 + + 4, 24 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3, 3, 3, 3 - - 377, 28 + + 307, 184 - - 1 + + 0 - - 29, 23 + + Unrolled Image - - Crystal + + tabPage3 - - 130, 27 + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 7 + + tabControl1 - - 1 + + 0 - - 1 + + 91, 20 - - Crystal + + 370, 31 - - 0, 0 + + No - - 22 - - - 1000, 29 - - - 10 - - - Choose the scale-line's color + + 315, 212 - - 10 + + 30 - + False - - Minimum value of verticall axis. -You can set the limit value in right-click menu. - - - 409, 28 - - - dataGridViewTextBoxColumn93 + + tabControl1 - - 6 + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 28 + + splitContainer1.Panel1 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Fill - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - dataGridViewTextBoxColumn45 + + 0, 54 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 749, 545 - - dataGridViewTextBoxColumn74 + + 0 - - 4, 4, 4, 4 + + Main profile viewer + Left button drag: move a diffraction peak position of a checked & selected crystal + Right button click: Shrink + Right button drag: Zoom + Middle button drag: Translation - - dataGridViewImageColumn65 + + pictureBoxMain - - System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Crystal + + splitContainer1.Panel1 - - 10 + + 2 - - dataGridViewImageColumn26 + + 11 - - 10 + + Fill - - tabPage3 + + Segoe UI Symbol, 9.75pt - - Crystal + + 109, 0 - - button2 + + 0, 0, 0, 0 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1000, 25 - - Color + + 1, 25 - - labelX + + 74, 25 - - NoControl + + 89 - - Segoe UI Symbol, 9.75pt + + Maximum value of horizontal axis. +You can set the limit value in right-click menu. - - NoControl + + Maximum value of horizontal axis. +You can set the limit value in right-click menu. - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + numericBoxUpperX - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Crystallography.Controls.NumericBoxWithMenu, Crystallography.Controls, Version=2020.10.16.338, Culture=neutral, PublicKeyToken=null - + tableLayoutPanel2 - - dataGridViewImageColumn12 + + 0 - - 20 + + GrowAndShrink - - 10 + + Fill - - 10 + + Segoe UI Symbol, 9.75pt - - 0 + + 334, 0 - - 10 + + 0, 0, 0, 0 - - Crystal + + 1000, 25 - - NoControl + + 1, 25 - - System.Windows.Forms.StatusStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0, 0, 1, 0 - - 20 + + 74, 25 - - 20 + + 4 - - True + + Maximum value of verticall axis. +You can set the limit value in right-click menu. - - 10 + + Maximum value of verticall axis. +You can set the limit value in right-click menu. - - NoControl + + numericBoxUpperY - - Max.Int. + + Crystallography.Controls.NumericBox, Crystallography.Controls, Version=2020.10.16.338, Culture=neutral, PublicKeyToken=null - - 10 + + tableLayoutPanel2 - - 0 + + 1 - - 10 + + Fill - - 22 + + Segoe UI Symbol, 9.75pt - - Crystal + + 23, 0 - - 10 + + 0, 0, 0, 0 - - 10 + + 1000, 25 - - 1 + + 1, 25 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 74, 25 - - -1, 32 + + 89 - - - iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAS - dAAAEnQB3mYfeAAAA1NJREFUWEftl+9LU1EYx/1DgpAIRSRjEHM/7pUKRircQci0hFy0NxVIhRBhThAC - KaLIxMqgyB+FU8nthVG5El+IXghEkIVKgU1QE3FYhEFPz3nuOWe77qY5dW/qgS/e3cvO53Oec+5Rc3ZS - kEgAjI9T+K3sFsGLiyn8Vnbr3xaA1lYJl+noyJ4IbUCPxyTAH+1tHTt6H/r6gWCpSwBDQ3srsL4OYAs+ - g7zoR1DU2zK60wsJhwoqXqdG8z6F+usTMDq6Cuy7fJjMSlHrwB64A/sAKLnxFXBUPiYBn9oEl5WraQJq - SWoeZi7A4K6yBoR+hYKBUYKyLjARWzBCn9PgPB5PF8EzEjhR2oiD11EOxOYIuD/xTc6cwcW1FVxVDXDG - AooaxsHDOOvPBFdKwlDYNW3MvHEGP+sUzTuG6ZFgj6fbgIvsRMBVNkjAws5pkmEStsZZcFRNELwgvMg7 - 8xPy3y0jSDfDU8KH3bro1YrHDSCXyI2vUScMiTGC58Z/QB5CRSeKHszhUq1ZwllobByXIJuVOOGEgJA4 - qC8iYAVhI3D41ieatYCLsG5YwcvUFoDaWgC/31qAPZAHSnl5moCIPTCMP9/iXpinpMKZFOvKRnjQfS1t - bBGOtxY4U9OfJiBiC84QTMBd5R+oI0euxLBbT3C5pvD5KhxviybHTRlbhOPNJZbg9MkhgpWqPXBJuWeK - T31F6y06wWTYhjQ6MUxwN4rkR2ehaGASos5TBrS6Wv4Bw8KR5hKbsL19Ss446jxrMu90NeB9nWYsIrrh - qOw2XltsP+uG2BexzhGA5uatN6EoXV+QAgOu8/Adz/uNAhQOZnuAdYWB83DmLGI5mEAkMvf3cFav3ywR - /Ka7SYKFRMzpSwpwiUP4GtJriTB7oE92QSQUWt6ewNLSL/xiGM4pj6SAjmsZddaggBefhTC9Mo6q97QR - 7YGXpmUQuXBxZHsCrMQSMAndWY3XDBqCBvcNeW2WGMTWT+JSfME35Tneq5fhQ26vhEASZpWkgFLSC5rW - jtdJsN/flhmclYKvmzV0Y5ISmvcF/tzBrDcrXZ+Hlhb8Daix9lpLaFoEKiru7j5cFMRiclNS/nS+71XR - SenzGccqS7YFWKX+T8BvZbf+C+xe5eT8BmMMOkk5CppiAAAAAElFTkSuQmCC - + + Minimum value of horizontal axis. +You can set the limit value in right-click menu. - - dataGridViewImageColumn37 + + Minimum value of horizontal axis. +You can set the limit value in right-click menu. - - dataGridViewTextBoxColumn1 + + numericBoxLowerX - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Crystallography.Controls.NumericBoxWithMenu, Crystallography.Controls, Version=2020.10.16.338, Culture=neutral, PublicKeyToken=null - + tableLayoutPanel2 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 0 + + 2 - - 10 + + Top, Left, Right - - 4, 4, 4, 4 + + Segoe UI Symbol, 9.75pt - - 10 + + NoControl - - 10 + + 635, 0 - - 4, 4, 4, 4 + + 5, 0, 0, 0 - - 12 + + 111, 25 - - 311, 20 + + 28 - - 2, 28 + + Int.: - - flowLayoutPanel1 + + labelIntensity - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Change automaticaly color + + tableLayoutPanel2 - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3 - - 10 + + GrowAndShrink - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Fill - - 4, 4, 4, 4 + + Segoe UI Symbol, 9.75pt - - dataGridViewTextBoxColumn84 + + 248, 0 - - 5 + + 0, 0, 0, 0 - - TopDown + + 1000, 25 - - Top, Left, Right + + 1, 25 - - 248, 181 + + 0, 0, 1, 0 - - dataGridViewTextBoxColumn79 + + 74, 25 - - groupBoxCrystalData + + 3 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Minimum value of verticall axis. +You can set the limit value in right-click menu. - - readAndAddToolStripMenuItem + + Minimum value of verticall axis. +You can set the limit value in right-click menu. - - splitContainer2.Panel2 + + numericBoxLowerY - - tabPage1 + + Crystallography.Controls.NumericBox, Crystallography.Controls, Version=2020.10.16.338, Culture=neutral, PublicKeyToken=null - - Crystal + + tableLayoutPanel2 - - Fill + + 4 - + + Top, Left, Right + + Segoe UI Symbol, 9.75pt - - 388, 104 + + NoControl - - Crystal + + 523, 0 - - dataGridViewTextBoxColumn110 + + 5, 0, 0, 0 - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 106, 25 - - Segoe UI Symbol, 9.75pt + + 28 - - GrowAndShrink + + d: - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + labelD - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Segoe UI Symbol, 9.75pt + + tableLayoutPanel2 - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 5 - - 20 + + Top, Left, Right - - 10 + + Segoe UI Symbol, 9.75pt - - Hint + + NoControl - - 10 + + 411, 0 - - Bottom + + 5, 0, 0, 0 - - 5 + + 106, 25 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 28 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2Θ: - - 10 + + labelTwoTheta - - None + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox4 + + tableLayoutPanel2 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 6 - - Minimum value of verticall axis. -You can set the limit value in right-click menu. + + Arial, 9.75pt - - 10 + + NoControl - - Crystal + + 322, 2 - - 2 + + 0, 2, 0, 0 - - 5, 66 + + 12, 16 - - 10 + + 16 - - 10 + + - - - 20 + + label11 - - watchReadANewProfileToolStripMenuItem + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Check + + tableLayoutPanel2 - - splitContainer2.Panel1 + + 7 - - 15, 25 + + Arial, 9.75pt - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - dataGridViewImageColumn50 + + 97, 2 - - Color + + 0, 2, 0, 0 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 12, 20 - - 237, 27 + + 16 - - 194, 36 + + - - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + label10 - - Fill + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tableLayoutPanel2 - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 8 - - PeakColor + + True - - 22 + + Segoe UI Symbol, 9.75pt - - Crystal + + NoControl - - pictureBoxMain + + 0, 2 - - 20 + + 0, 2, 0, 0 - - Print + + 23, 17 - - 410, 2 + + 16 - - 0, 0, 0, 0 + + - - toolStripContainer1 + + labelX - - 10 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + tableLayoutPanel2 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 9 - - 10 + + True - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Segoe UI Symbol, 9.75pt - - 10 + + NoControl - - Multi Profiles + + 193, 2 - - Magenta + + 10, 2, 0, 0 - - 5 + + 55, 17 - - 4 + + 19 - - 10 + + Intensity - - 20 + + label9 - - 10 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + tableLayoutPanel2 + + 10 - - toolStripSeparator10 + + Top - - dataGridViewTextBoxColumn66 + + 0, 0 - - dataGridViewTextBoxColumn21 + + 1 - - + + 749, 28 - - 125 + + 33 - - 10 + + tableLayoutPanel2 - - 10 + + System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - toolStripStatusLabel1 + + panel1 - - numericUpDownMaxInt + + 0 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="numericBoxUpperX" Row="0" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="numericBoxUpperY" Row="0" RowSpan="1" Column="7" ColumnSpan="1" /><Control Name="numericBoxLowerX" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="labelIntensity" Row="0" RowSpan="1" Column="10" ColumnSpan="1" /><Control Name="numericBoxLowerY" Row="0" RowSpan="1" Column="5" ColumnSpan="1" /><Control Name="labelD" Row="0" RowSpan="1" Column="9" ColumnSpan="1" /><Control Name="labelTwoTheta" Row="0" RowSpan="1" Column="8" ColumnSpan="1" /><Control Name="label11" Row="0" RowSpan="1" Column="6" ColumnSpan="1" /><Control Name="label10" Row="0" RowSpan="1" Column="2" ColumnSpan="1" /><Control Name="labelX" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="label9" Row="0" RowSpan="1" Column="4" ColumnSpan="1" /></Controls><Columns Styles="AutoSize,0,Percent,11.76471,AutoSize,0,Percent,11.76471,AutoSize,0,Percent,11.76471,AutoSize,0,Percent,11.76471,Percent,17.64706,Percent,17.64706,Percent,17.64706" /><Rows Styles="Percent,100" /></TableLayoutSettings> - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Top - - dataGridViewImageColumn11 + + 0, 0 - - 20 + + 749, 54 - - 2, 0 + + 32 - - groupBox2 + + panel1 - - 20 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 22 + + splitContainer1.Panel1 - - 0, 0, 0, 0 + + 3 - - $this + + splitContainer1.Panel1 - - toolStripButtonStressAnalysis + + System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + splitContainer1 - - 22 + + 0 - - 22 + + Fill - - dataGridViewImageColumn14 + + 0, 0 - - Check/Uncheck all profiles + + Horizontal - - tableLayoutPanel2 + + 46 - - Increasing intensity by a profile + + Check - - NoControl + + 10 - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 20 - - 10 + + Color - - 4, 0, 4, 0 + + 10 - + 22 - - asCSVcommaSeperatedFileToolStripMenuItem + + Profile - - Crystal + + 10 - - 409, 28 + + 17, 51 + + + 984, 9 + + + Fill - - White + + 3, 45 - - 20 + + 22 - - 10 + + 210, 137 - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 32 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Profile list. + Checked profiles are visible on the main profile viewer. + To display multiple profiles, check "Multiple Profiles" radio button in "Appearance & Single/Multi Profiles" - - dataGridViewImageColumn75 + + dataGridViewProfiles - - System.Windows.Forms.DataGridViewCheckBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.DataGridView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Color - - - 91, 20 - - - 136 + + groupBox1 - - 130 + + 0 - - 4, 4, 4, 4 + + Bottom - - groupBox2 + + Segoe UI Symbol, 9.75pt - - 20 + + NoControl - - 4, 4, 4, 4 + + 3, 182 - - toolStripButtonProfileParameter + + 210, 21 - - + + 12 - - Color + + Profile Parameter - - 6, 53 + + Detailed profile parameter - - dataGridViewImageColumn87 + + checkBoxProfileParameter - - PeakColor + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + groupBox1 - - 11 + + 1 - - 442, 28 + + Top - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Segoe UI Symbol, 9.75pt - - dataGridViewTextBoxColumn3 + + NoControl - - 10 + + 3, 21 - - 5 + + 210, 24 - - 1 + + 88 - - dataGridViewImageColumn20 + + Check/Uncheck all - - 4, 4, 4, 4 + + Check/Uncheck all profiles - - 200 + + checkBoxAll - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - label4 + + groupBox1 - - tabPage3 + + 2 - - 20, 20 + + Fill - - 22 + + Segoe UI Symbol, 9.75pt - - 0, 0, 0, 0 + + 0, 0 - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 216, 206 - + 10 - - Segoe UI Symbol, 9pt + + Profile - - Check + + groupBox1 - - 93, 29 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 377, 28 + + splitContainer2.Panel1 - - 72, 27 + + 0 - - 22 + + splitContainer2.Panel1 - - 1 + + System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + splitContainer2 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - toolStripContainer1 + + 46 - - tabPage3 + + Check - + + 10 + + 20 - - Ctrl+Shift+E: Equation of States; Ctrl+Shift+F: Fitting Parameter; Ctrl+Shift+C: Crystal Parameter; Ctrl+Shift+D: change peak mode + + True + + + PeakColor - - 193, 27 + + 10 - - Segoe UI Symbol, 9.75pt + + 20 - - Min.Int. + + True + + + Crystal - - Minimum value of horizontal axis. -You can set the limit value in right-click menu. + + 10 - - 1 + + 762, 13 + + + Fill - - Color + + 3, 21 - - 228, 28 + + 22 - - PeakColor + + 210, 346 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 32 - - Logarithm + + Crystal list. + Diffraction peaks of the checked crystals are visible on the main profile viewer. + Right double clicks eneble/unable blinking mode. + Detailed crystal information can be checked by "Crystal Parameter". - - 188, 6 + + dataGridViewCrystals - - dataGridViewImageColumn35 + + System.Windows.Forms.DataGridView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBoxCrystalData - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Bottom - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Segoe UI Symbol, 9.75pt - - GrowAndShrink + + NoControl - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3, 367 - - 1 + + 210, 19 - - 4, 4, 4, 4 + + 12 - - 10 + + Crystal Parameter (C) - - pageSetupDialog1 + + Detailed crystal information - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - iVBORw0KGgoAAAANSUhEUgAAABMAAAASCAYAAAC5DOVpAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAA - vwAAAL8BYqQFcwAAAG5JREFUOE/tjLsNwCAMRFNQMAyDMQMjMDSOIxHJsc9YSOmSJ11zv4Ne5D/bZ32W - Eje4IrXAT/WJlANOarUHWgDHVUMkgOOqIRLAcdUQCYDdMexYqvdZfMKJQ2v25FLOs2DhNKCU8OQmPtvg - E2dEJ41V0r+pZPOtAAAAAElFTkSuQmCC - + + checkBoxCrystalParameter - - dataGridViewImageColumn41 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - toolStripContainer1.TopToolStripPanel + + groupBoxCrystalData - - Arial, 9pt + + 1 - - 10 + + Fill - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Segoe UI Symbol, 9.75pt - - Crystal + + 0, 0 - - 409, 28 + + 216, 389 - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Crystals - - Magenta + + groupBoxCrystalData - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + splitContainer2.Panel2 - - 10 + + 0 - - Segoe UI Symbol, 9.75pt + + splitContainer2.Panel2 - - Count per Step (CPS) + + System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Color + + splitContainer2 - - 4, 4, 4, 4 + + 1 - - 10 + + 216, 599 - - 406, 6 + + 206 - + 0 - - - - - 4, 0, 4, 0 + + splitContainer2 - - 22 + + System.Windows.Forms.SplitContainer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewImageColumn22 + + splitContainer1.Panel2 - - dataGridViewTextBoxColumn90 + + 0 - - 22 + + splitContainer1.Panel2 - - 10 + + System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + splitContainer1 - - 10 + + 1 - - + + 969, 599 - - checkDataGridViewCheckBoxColumn + + 749 - - 20 + + 29 - - Positive Film + + splitContainer1 - - 10 + + System.Windows.Forms.SplitContainer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + toolStripContainer1.ContentPanel - - Language + + 0 - - + + 969, 599 - - 120, 120 + + toolStripContainer1.ContentPanel - - + + System.Windows.Forms.ToolStripContentPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Set Directory to the watch + + toolStripContainer1 - - 6, 53 + + 0 - - Choose the scale-line's color + + Fill - - 409, 28 + + toolStripContainer1.LeftToolStripPanel - - Intensity + + System.Windows.Forms.ToolStripPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + toolStripContainer1 - - 10 + + 1 - - dataGridViewImageColumn57 + + 0, 0 - - + + toolStripContainer1.RightToolStripPanel - - Color + + System.Windows.Forms.ToolStripPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 6, 0, 0, 0 + + toolStripContainer1 - - 4 + + 2 - - 0, 0, 0, 0 + + 969, 696 - - Close + + 42 - - 10 + + toolStripContainer1 - - 215, 28 + + 256, 13 + + + None - - 10 + + Arial, 9pt - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Segoe UI Symbol, 9.75pt - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAWDSURBVFhH1VdrTFRHFJ69d9+LRqUWVLQqaGOiIo3+QCNR + qG/QNjFREB9BYkxAgeVhJRJSUEkkpLWPxAbCDxQBgcUHlEeLSllZXRWRkgYLIlopbEVFDMqrfD132BIs + NLqLNek3mczee+d+55sz55y5y/7XOMIYrD/fLXp7enCZjFtkMtTQ2NXRgdqMDJRv3YqWmhr7RLXW1eH2 + iRN40dmJ/v5+5Ds6opzIqw4fHkF4t7wc9+gZdu/GfZUO6StX4g5dP5XLUUVjz8uXtok4uWQJaunFVlpR + MY0X9+yBhcZeV1eYaLROG4IksITuP6T5m2UbECr7AE9VKgz4++Mu3f+jvt42Ad/TSx2iCJDhAypP7BI+ + xO9E3jtjBoyjCJAgiUj97Cto1fFw1exGBc1roG5Qq/GosZF70Tr19cj38+N7KRmdJQRAqwpHMtPhHN37 + wj8CzSYTGkpLRxAWF9dCq02AWh2HcaqDmKPagffFXfiV3rtI3TrtzSAFlrm8igjjoNEcojGJejycZCG4 + K6jQRh4yUFxYp3M0NLRyAZMm6WlMhEb9Oc4yFwwEBOCRINgm4G9IAiZPDiXCZN63MD/0TJmCgWXLUDls + VVUJCSil6zS5FjpNAqZNS0JWlhnnlEq0kHGzrR6QcM9oxF5xEeZN2MWNe3h8i7yQSPxMZFKUGzw9Oank + rRt03Ucx0q5QwHjk6JAxae9r09PR2dZmm4AH16/jFpE+plSS1JedvcYJJMKKxETU5OYOEXZ3dw8KcHPD + Y9oac3KybcZGw7WjR9FGQTgQFMRdeCstjZOeJZdK6VZHBk3ffIc1a4rJO7mYpziGPDYVBU5OYzcuoa+3 + F+fJmORug07H0+hFVxe/HvDxQdf48Tgum8qNa7U50OnOwNXV8HaMD0f3P6qYwcWFp5W0LV7jfKDVnIIo + llmFZL99AaNBKizGlBQsVHtgzoSlVCfSyXgWlirD8fDmzTcTkUVZcY96uR3ZIaHQ2RndEyciY/YSaISl + +Fpw4OdBPfVf8vNfT3qHYR811sbQaGm0XUSRry8PRilQDXRGXCXDfy5fzmtEkZfXqIQLchZg8ZnFg8/y + aeW/Ua+w0wMSfoqJQaVezwM0j6piC4lpIiG3UlNHkM7MmAnxmQjZYxnW+SUhJKQSO/cXYPXqIPsFvCma + 25vBjjO4mGdgY2QKtkXnkoAKhIYaMX/+JgRkb4NbppttB9a/Qgqueuq5g67lpLWMr5wVMvgfyubG9+2v + RGRkLWa7r8D4tGkQngtQZivHJoAHUzPDIWrswaCA6ofVENoFbKfGbjOEhV2FXl+NPSFl0EdVY0LQdLhs + 8YBjPx1sF+yMh82FmxH2Y9jgy5dotRZa7fDgOk+/yQuapInw9o7FunXx9Klxgc+RtdPcK/S8lCprk8l2 + AcpMJVRdKohNIgJ3ZCI8/Br2hv2AwMCoEWRGYw28vPRYtSoWvr7HwJoYQqmx+5S+bTZ+NUno6OoAS2X4 + oH4WPo3+EkExReTiK4iIMPPgiquMQ3Bp8BCxpdOCRRt3wv2THfD5OAa6LB1YHa3+tB2uTylLgVRMhCf0 + oZHHsDO+gFZfhcgoM2Jj6zH9I0/oLr0H+XM5nE5ZD6gCyoQ+FyheKOBwysF2o6+A0kp4JiCYGjMzREff + RFT0DYRGXMbBg3WYtMEN0xPd4dzvDJYzuEKH0w5QdCr4vrvnuI9RgIQiIq5mcNS70b7GY+3aWMrtErDr + DOITEVJASpFteWYZMhZcEsy3xnr5dpCUdBIrVhzgwbV2UwJYC0MUNdbA8LLbxv8E9sDUbMLCrYE8uNav + PwBejCjnHTNe/Wj971DC4NTnBHmHHN4F3u/I6HBQFoidtOetDNuLqOK9a0j1fm7mXPgX+o/ROGN/AVUR + ZF9jQ9YWAAAAAElFTkSuQmCC + - - 4, 4 + + None - - label2 + + White - - 20 + + 128, 38 - - 93, 29 + + Crystal + Parameter (C) - - 0 + + Display the detailed crystal information - - NoControl + + 6, 41 - + Segoe UI Symbol, 9.75pt - - dataGridViewTextBoxColumn41 + + + iVBORw0KGgoAAAANSUhEUgAAACAAAAAhCAYAAAC4JqlRAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAPzSURBVFhHxVdtS5RBFPWH9B8EP0h96IPhh8APQVGEYFAQ + CEkREkaBICQhRRgFQYVg9IK90AvRkhaWvRpIlkaBRJEkFRhGLxhIp3POzO4+Prubu0V64LLP3Jm598yd + OzN3q4oBr14BNTWIzcUHuruBZcuATGZpSKCpCTh4EGhvXyICdXXA5CTQ0PBPBPD9O3DiRHk2tFpcuuTB + 2f1P5gFmZ8syhOFhYM+eMJ+/qK4GRkbydj59KrSD8XF41bW1wPS0f62vr89PlDHmRmyWhKKmeXj2zImM + K1eAtra8ndWrgc7O+XbQ0QH09NiBDTQ2BgJbtwZDc3NhJQlCxaAoedyZM8CGDUG4YqxcGexNTAT7K1ak + CGjlmixRJGjAeu6fSSmsItPaCkXLk4oADx+GcV++2CkGBoIdORWRU6eAri6gpQUYGgp2MDgIZb0bKeDN + G2RDpvzQJJGI3QVwJOPRVQL6d+5ncKw+kZNNEV23LhJguKV0owjQ3Jwb7K3gt3U7dswXGc8ajcAP5tO5 + NfBp0DyOiV1VjiaJxWZp2GniBHibdESLifo+vwYeHAiEh/YBvauAd/fm2fgreDVfpxY0grsM9cnlgcDF + jcCL88DTnvwCxs4BH8cqJ4OrW4CbOxcm0LfWEcDkI+Ask+/DKHB7b54AyeHW7soI4Be34TSTkfsZVSXh + PX/JhKUTXGeuKHKXN3keZt4G3YX1FRLQxBvbLFFVFNoiXGMyKg+00keHguNI3Lmg6JCQTod0ZcET7+8P + MpW/VtNQXzbczoVvH8N3/y479P4/Pw08Pgy8vVMBgdHekEyv+6HvqC6AHVBiMweMHAcmMrxHeCpEUvnx + 5GgFBAb5UCm8szNQZkd1Abzv3PPYzAHvn4SciHPx8yuUrKFTq1O4JHKkJElLZnvOqE5CbnxSNDcxLg2f + ong/CMoPRTV3vrPiTqpAvx6ZgvcyMT4pcci/A30kwIoMfLyianEBPv3gowi+IVG1uACfcVyn8L2IqsUF + +JSDzzd4+UXV/weO0OFAcAhWUsnfSgD+pQAPRWwWQAkeP/PwaulMK3ebBZJ/Y7sSgM8+WBKWSmDnF5+K + 2AwASzix1tFT4oGPmPWsVUTOg8oAWA6IPFjwlMofLzS9teD/EPCGBItjHz8WONa38Zs3qAeVAc+nLX8r + j0jIHRGOtBZFArk+s2Yh6wYB1qAi4+8YGXeUAUePf6j8zWo8fZk5MrwwHe3sEVfilbz1WGVVchLAlzhL + XtA24BiFRbLbcsz9N5G4zSFpmLluFIG3h0WxVvZHkXEmX5xmOLpyuDkKnYoMWN+YLG9cls+lnQvqN+Ny + pNgRi7DjRE6YRCpHlgBVVb8B2AfzSY/j4+kAAAAASUVORK5CYII= + - - 0, 0, 0, 0 + + None - - 831, 27 + + White - - Segoe UI Symbol, 9.75pt + + 127, 38 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Profile + Parameter (P) - - PeakColor + + Display the detailde profile parameters - - 10 + + 6, 41 - - Tool Tip + + Segoe UI Symbol, 9.75pt - - 20 + + + iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAANTSURBVFhH7ZfvS1NRGMf9Q4KQCEUkYxBzP+6VCkYq3EHI + tIRctDcVSIUQYU4QAimiyMTKoMgfhVPJ7YVRuRJfiF4IRJCFSoFNUBNxWIRBT8957jlnu+6mOXVv6oEv + 3t3LzudznnPuUXN2UpBIAIyPU/it7BbBi4sp/FZ2698WgNZWCZfp6MieCG1Aj8ckwB/tbR07eh/6+oFg + qUsAQ0N7K7C+DmALPoO86EdQ1NsyutMLCYcKKl6nRvM+hfrrEzA6ugrsu3yYzEpR68AeuAP7ACi58RVw + VD4mAZ/aBJeVq2kCaklqHmYuwOCusgaEfoWCgVGCsi4wEVswQp/T4DweTxfBMxI4UdqIg9dRDsTmCLg/ + 8U3OnMHFtRVcVQ1wxgKKGsbBwzjrzwRXSsJQ2DVtzLxxBj/rFM07humRYI+n24CL7ETAVTZIwMLOaZJh + ErbGWXBUTRC8ILzIO/MT8t8tI0g3w1PCh9266NWKxw0gl8iNr1EnDIkxgufGf0AeQkUnih7M4VKtWcJZ + aGwclyCblTjhhICQOKgvImAFYSNw+NYnmrWAi7BuWMHL1BaA2loAv99agD2QB0p5eZqAiD0wjD/f4l6Y + p6TCmRTrykZ40H0tbWwRjrcWOFPTnyYgYgvOEEzAXeUfqCNHrsSwW09wuabw+Socb4smx00ZW4TjzSWW + 4PTJIYKVqj1wSblnik99RestOsFk2IY0OjFMcDeK5EdnoWhgEqLOUwa0ulr+AcPCkeYSm7C9fUrOOOo8 + azLvdDXgfZ1mLCK64ajsNl5bbD/rhtgXsc4RgObmrTehKF1fkAIDrvPwHc/7jQIUDmZ7gHWFgfNw5ixi + OZhAJDL393BWr98sEfymu0mChUTM6UsKcIlD+BrSa4kwe6BPdkEkFFrensDS0i/8YhjOKY+kgI5rGXXW + oIAXn4UwvTKOqve0Ee2Bl6ZlELlwcWR7AqzEEjAJ3VmN1wwaggb3DXltlhjE1k/iUnzBN+U53quX4UNu + r4RAEmaVpIBS0gua1o7XSbDf35YZnJWCr5s1dGOSEpr3Bf7cwaw3K12fh5YW/A2osfZaS2haBCoq7u4+ + XBTEYnJTUv50vu9V0Unp8xnHKku2BVil/k/Ab2W3/gvsXuXk/AZjDDpJOQqaYgAAAABJRU5ErkJggg== + - - System.Windows.Forms.ToolStripTextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + None - - 106, 29 + + White - - 92, 29 + + 111, 38 - - 104, 40 + + Equation of + State (E) - - 1, 29 + + Calculate the pressure using equation of state - - 121, 27 + + 6, 41 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Segoe UI Symbol, 9.75pt - - Profile + + + iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAALDSURBVFhHvVe/ixNBGBX8AyR9sIjNIRGLK1MJB0rAwmKL + YOlxpLCw2/8gBBHsAkEtVySNCCmEFBZb2KRa1EZSLAhndSwWHofFc963803G5WJuk0zeELIzs7n3/Xjf + N3PXtkGCBCMz7HS/KFCgbUbfDru8P9BzEmdm0BC7vD900UVuBp+baO7fAN9r35jgiGNgMIDxeen1AOWw + 03BIU0PcBA7af4zPXUc4xRQ9M+w0HNT7h/FX3B98coQpUnTMsNNw6HQgJPeSV3jUO/+HMLgQi6IMP58P + 0mOoMYrgpcj8d7sw7acQAaoxCl8TQcDc86OCq0YgeCX0ekCeA7EZJOr3gSRZGsFzIWhLbrdLMlX7aAQx + gs8EW3LQSmDONf+cqyZk08KvBIzHJlzxbgxSMuZfxeZXhcKPgHkAGo3dGMBcM9yaf7vs0qLgPrWA+VzI + cXKymyiQnFGo1roK005dS8ZkAhweCjmNsNubg6HmaVftdhQiS9NO5ZLCd4SYn9lMDLHbmyHLyvDrBcQu + C+h9VYjUiHi/WABnZ9zczgA6IkRm8NCxyw5VHVAjPulWQlSlk7gafgWj4+vg+/wdisb1pQHbpID5JQG9 + X3X7ZYr8NGA4xMfohrshbVwJvvfrTjoaoFFAq4UPi5ditMzZkI6O6hvge39Z7n1ooxLhGU6u0WhGYSMh + svHwtGNTueo5z/enx++BKJL3+VsXhToRUHIeLhTeVW+71AJTNn3z073P1szmJI3JGrYSDCNLTsk1hHZ7 + LZjr7O7j0gjDyTVtTJKKVeXIbsZaZr5fJ79F7bS8Fjl7v/miBhgJtmj+TX4/T37gdv4A2fjp5WJkruSC + YQaJ6/6z6Q4eE2a75EBjKOYv+S/Rw7foDi5alX7CcFPl65ReBetdWq7JLT23y/8FuebRLWlUn6ObeDt7 + UotzZ2Bp5pMXOB0+w1+nY/9oy5YWAAAAAABJRU5ErkJggg== + - - dataGridViewImageColumn1 + + None - - 20 + + White - - + + 143, 38 - - NoControl + + Fitting Diffraction + Peaks (F) - - dataGridViewTextBoxColumn25 + + Fit the diffraction peaks - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 6, 41 - - label6 + + Segoe UI Symbol, 9.75pt - - 200 + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG + YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9 + 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw + bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc + VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9 + c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32 + Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo + mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+ + kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D + TgDQASA1MVpwzwAAAABJRU5ErkJggg== + - - dataGridViewImageColumn24 + + Magenta - - menuStrip1 + + 73, 38 - - Arial, 9.75pt + + Cell Finder - - flowLayoutPanel2 + + 6, 41 - - copyAsMetafileToolStripMenuItem + + False - - Crystal + + Segoe UI Symbol, 9.75pt - - 29 + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG + YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9 + 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw + bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc + VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9 + c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32 + Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo + mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+ + kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D + TgDQASA1MVpwzwAAAABJRU5ErkJggg== + - - groupBox3 + + Magenta - - 20 + + 97, 38 - - dataGridViewTextBoxColumn111 + + Stress Analysis - - 10 + + 6, 41 - - dataGridViewTextBoxColumn22 + + Segoe UI Symbol, 9.75pt - - False + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG + YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9 + 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw + bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc + VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9 + c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32 + Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo + mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+ + kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D + TgDQASA1MVpwzwAAAABJRU5ErkJggg== + - - toolStripSeparator9 + + Magenta - - True + + 142, 38 - - Profile + + Atomic Position Finder - - System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + False - - englishToolStripMenuItem + + 6, 41 - - 10 + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG + YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9 + 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw + bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc + VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9 + c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32 + Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo + mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+ + kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D + TgDQASA1MVpwzwAAAABJRU5ErkJggg== + - - toolStripButtonEquationOfState + + Magenta - - 4, 4, 4, 4 + + 212, 38 - - graphControlFrequency + + Lattice Preferred Orientation Analysis - - 4, 4, 4, 4 + + False - - checkBoxChangeColor + + 3, 0 - - Segoe UI Symbol, 9.75pt + + 727, 41 - - 406, 6 + + 41 - - Profile + + toolStrip1 - - True + + toolStrip2 - - 8, 58 + + System.Windows.Forms.ToolStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewTextBoxColumn112 + + toolStripContainer1.TopToolStripPanel - - Maximum value of horizontal axis. -You can set the limit value in right-click menu. + + 0 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10, 10 + + + None - - 10 + + Segoe UI Symbol, 9.75pt - - + + 320, 22 - - Arial, 8.25pt + + Read profile(s) - - Color + + 320, 22 - - 4, 4, 4, 4 + + Save profile(s) - - 10 + + 295, 22 - - 10 + + as CSV (comma separated values) file - - NoControl + + 295, 22 - - Top + + as TSV (tab separated values) file - - 10 + + 295, 22 - - Color + + as GSAS file - - dataGridViewImageColumn82 + + 320, 22 - - True + + Export the selected profile(s) - - 10 + + 317, 6 - - Top, Left, Right + + 320, 22 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Read crystals (as a new list) - - dataGridViewImageColumn29 + + 320, 22 - - 89 + + Read crystals (and add to the present list) - - numericBoxUpperY + + 320, 22 - - 375, 128 + + Save crystals - - 4, 0, 4, 0 + + 320, 22 - - dataGridViewTextBoxColumn78 + + Import CIF, AMC... - - Color + + 320, 22 - - メイリオ, 10pt + + Export the selected crystal to CIF - - dataGridViewTextBoxColumn20 + + The selected crrystal will be saved as CIF format - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 320, 22 - - 10 + + Revert crystals to the initial state - - Detailed crystal information + + 317, 6 - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 320, 22 - - tabPage3 + + Page Setup - - Fill + + 320, 22 - - 10 + + Print Preview - - buttonAu + + 320, 22 - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Print - - dataGridViewTextBoxColumn59 + + 317, 6 - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + False - - dataGridViewTextBoxColumn26 + + 170, 22 - - Profile + + as Bitmap data - - dataGridViewImageColumn27 + + 170, 22 - - 10 + + as Metafile data - - Segoe UI Symbol, 9.75pt + + 320, 22 - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Copy to Clipboard - - Profile + + 320, 22 - - dataGridViewTextBoxColumn7 + + Save as Metafile - - False + + 317, 6 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 320, 22 - - + + Close - - 4, 32 + + Segoe UI Symbol, 9.75pt - - 2 + + 39, 21 - - 10 + + File - - groupBoxCrystalData + + 174, 22 - - 22 + + Tool Tip - - dataGridViewImageColumn21 + + 174, 22 - - The selected crrystal will be saved as CIF format + + Watch Clipboard - - 8 + + 226, 22 - - groupBox4 + + Set Directory to the watch - - Fill + + Yu Gothic UI, 9pt - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 100, 23 - - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAS - dAAAEnQB3mYfeAAAAgNJREFUOE+lkutLk2EYxvePhJaHShFBUTEPiCieQOmDiEZgrEbpYGiCQxkqA80I - RUkUEZ0YRMS+DDI70MkTmzJnDc8iU8QT2mAEItnle90wHwTDyBduXnie5/rd133Q4ZKfAJqHFs9E08A8 - zD1emDpmYXjqRlnTFIrMk8iuGkNaxWekGEaQrHecBfw+/vPXODw6hj9whN2fh/Bt/8LSRgA3cxr/DeBZ - 9kvmTNMoHGNbIrYN+3Aj23IxgJkpds0doP3VstgmsNexhutZ9QrAms8T0zYzU5xXM46kcjsmvfvoeL2i - AeoUgA07T8yaaZuZKab1rzN74jgys1YB2O2gmBZzH49LODXrrJlnzEzxe9cOLH1ziMioVgCOiuIFX0CE - Q+/WYf+yieiCFrRp9tkwxnP7Kt5MbKGm6wfC000KwDlTXNLgEvHMkh+Db32o7fYivtQm1l9+3IBOp5P7 - yjYPwlKNCsAluWudxgvtknb5t9oWcL/VLU2Mvd2JFq3uqs7vAtE/ceNayiMF4KiYMSjmY2O7B4Ua+NaD - YQGEJumRbvyG1IcfBHI12aAAXM8R57aIWTNrLLY4tfNPiCvpR1SeVeu6WWzHFD6THSDwFMDdpmUG62NJ - PKM4Or9ZxBxb8H8l7g5CEu8pAOfM3WanSeeS8CFHxW4zM2umbWamOCShXAH+/wNOANABIDUxWnDPAAAA - AElFTkSuQmCC - + + 174, 22 - - savePatternProfileToolStripMenuItem + + Watch File - - 6, 53 + + 174, 22 - - tableLayoutPanel2 + + Clear Registry - - Fill + + Segoe UI Symbol, 9.75pt - - dataGridViewImageColumn86 + + 60, 21 - - Horizontal + + Option - - - + + 111, 22 - - dataGridViewImageColumn44 + + Editor - - PeakColor + + 58, 21 - - 22 + + Macro - - + + 180, 22 - - 109, 27 + + About Me - - toolStripSeparator2 + + 180, 22 - - dataGridViewTextBoxColumn27 + + Program Updates - - PeakColor + + 180, 22 - - 7 + + Hint - - 6, 8 + + 180, 22 - - 4, 4, 4, 4 + + Help (web) - - Choose the scale-text's color + + Segoe UI Symbol, 9.75pt - - 4, 4, 4, 4 + + 47, 21 - - Single/Multi Profile + + Help - - 10 + + Segoe UI Symbol, 9.75pt - - dataGridViewTextBoxColumn42 + + + iVBORw0KGgoAAAANSUhEUgAAABMAAAASCAYAAAC5DOVpAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAA + vwAAAL8BYqQFcwAAAUpJREFUOE9jYAhq+Y8Lg8A1Bk04BgFs6uAYpMCmeiFWSf+OVf+fxlcSZRhYDkxC + AboCYgwDOeT7+WtgeQaYIhjQzp8JV0jIMBCAyf39+u0/w00RKzDn/fx1YEkYwGeYf/uq/z/vPUYRBwGG + ltWH///79w9DAgSSpmzGMAwEYPxfD59CRSAAHpsgcFvBBazoTddcMB8E0A0Dsxm1wGwYUMmaCvE6lI8T + YHMZLgCOAGph6hr2af2e//jwA8cEuGJs8sgYJTshg+vs+v8f2MfhjU0QQMk9IAIkAAN/v/9AUYwrAp5E + lYDFHjjEg/lgw8AsKLjGpA1WAMoeIIAt0Ub1rwfTMIAsBzbs358/KILGpXPANuHLTsjgoWsyWJ7hBr8Z + mPFx1XawBEwxIcNAGJR7kAE8o8NTMRImZBgMwwDYm9gUgDCxhoFw/tyd/wHjpZDiF9mN8AAAAABJRU5E + rkJggg== + - - Color + + 229, 38 - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + English (need restart) - - dataGridViewImageColumn43 + + + iVBORw0KGgoAAAANSUhEUgAAABMAAAASCAYAAAC5DOVpAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAA + vwAAAL8BYqQFcwAAAG5JREFUOE/tjLsNwCAMRFNQMAyDMQMjMDSOIxHJsc9YSOmSJ11zv4Ne5D/bZ32W + Eje4IrXAT/WJlANOarUHWgDHVUMkgOOqIRLAcdUQCYDdMexYqvdZfMKJQ2v25FLOs2DhNKCU8OQmPtvg + E2dEJ41V0r+pZPOtAAAAAElFTkSuQmCC + - - NoControl + + 229, 38 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Japanese (need restart) - - dataGridViewTextBoxColumn76 - - - 8, 72 + + 77, 21 - - tabPage1 + + Language - - NoControl + + 0, 41 - - dataGridViewTextBoxColumn24 + + 969, 25 - - Vertical Axis + + 23 - - tabPage2 + + menuStrip1 - - System.Windows.Forms.ToolStripContentPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + menuStrip - - Color + + System.Windows.Forms.MenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + toolStripContainer1.TopToolStripPanel - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - tabPage2 + + メイリオ, 10pt - - 10 + + toolStripContainer1.TopToolStripPanel - - + + System.Windows.Forms.ToolStripPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + toolStripContainer1 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3 - - 261, 30 + + toolStripContainer1 - - programUpdatesToolStripMenuItem + + System.Windows.Forms.ToolStripContainer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Minimum value of horizontal axis. -You can set the limit value in right-click menu. + + $this - - 95, 27 + + 0 - - 10 + + NoControl - - comboBoxScale2 + + 176, 40 - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 64, 24 - - Crystal + + 5 - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NaCl EOS - - Crystal + + button2 - - Crystal + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.MenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 104, 40 - - Fill + + 56, 24 - - 20 + + 5 - - 4, 5, 4, 5 + + Pt EOS - - saveCrystalDataToolStripMenuItem + + button3 - - 10 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 3 + + 0, 0 - - dataGridViewTextBoxColumn102 + + 75, 23 - - 4, 30 + + 0 - - System.Windows.Forms.ToolStripPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + buttonAu - - timerBlinkDiffraction + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - numericalTextBoxIncreasingPixels + + 618, 10 + + + 509, 9 + + + - + 10 - - 20 - - - Segoe UI Symbol, 9.75pt + + Crystal - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - 20 + + 200 - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Check - - 0 + + 10 - - PeakColor + + 200 - - colorControlBack + + Check - - dataGridViewTextBoxColumn32 + + 10 - - 4, 56 + + 200 - - Profile + + Crystal - - dataGridViewTextBoxColumn28 + + 10 - - Color + + Crystal - - + + 10 - - toolStrip1 + + Crystal - - toolStripContainer1 + + 10 - - 4, 4, 4, 4 + + Crystal - - splitContainer2 + + 10 - - checkBoxShowUnrolledImage + + Crystal - + 10 - - True - - - dataGridViewTextBoxColumn109 + + Crystal - - asGSASFileToolStripMenuItem + + 10 - - Read crystals (and add to the present list) + + Crystal - - + + 10 - - 5 + + Crystal - - 0, 2, 0, 0 - - - 63, 23 + + 10 - + Crystal - - Color - - - Check/Uncheck all - - - 0, 0, 1, 0 - - - 1 + + 10 - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Crystal - - tabControl + + 10 - - groupBox1 + + Crystal - - toolStripButtonCrystalParameter + + 10 - - + + Crystal - - True + + 10 - - 0, 0, 0, 0 + + Crystal - - tabPage2 + + 10 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Crystal - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - menuStrip + + Crystal - - Read profile(s) + + 10 - + Crystal - - toolStripProgressBar + + 10 - - as Metafile data + + Crystal - - 6 + + 10 - - Option + + Crystal - - 4, 58 + + 10 - - + + Crystal - - + + 10 - - 937, 68 + + Crystal - - Save profile(s) + + 10 - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Crystal - - 1000, 29 + + 10 - - radioButtonCountsPerStep + + PeakColor - - 105, 108 + + 10 - - dataGridViewTextBoxColumn106 + + 20 - - dataGridViewTextBoxColumn104 + + PeakColor - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - Crystallography.Controls.NumericBoxWithMenu, Crystallography.Controls, Version=2020.10.15.835, Culture=neutral, PublicKeyToken=null + + 20 - - bindingSourceCrystal + + Crystal - - - + + 10 - - 1, 29 + + PeakColor - - About Me + + 10 - - + + 20 - - 0, 0 + + Crystal - + 10 - + PeakColor - - splitContainer2 + + 10 - - dataGridViewTextBoxColumn8 + + 20 - - 228, 28 + + Crystal - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - 0 + + Crystal - + 10 - - NoControl - - - 406, 6 + + PeakColor - - GrowAndShrink + + 10 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 20 - - 5 + + Profile - - Top + + 10 - - Show unrolled image + + PeakColor - - Crystallography.Controls.NumericBox, Crystallography.Controls, Version=2020.10.15.835, Culture=neutral, PublicKeyToken=null + + 10 - - 127 + + 20 - - toolStripButtonCellFinder + + Color - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - dataGridViewTextBoxColumn69 + + Color - - Segoe UI Symbol, 9.75pt + + 10 - - True + + 22 - - GrowAndShrink + + Profile - + 10 - - 4, 5, 4, 5 + + PeakColor - - 293, 28 + + 10 - - bindingSourceProfile + + 20 - - 10 + + Crystal - + 10 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Color - - 0 - - - dataGridViewImageColumn64 + + 10 - - 0, 0, 0, 0 + + 22 - - groupBox2 + + Profile - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - 20, 20 + + PeakColor - - 41 + + 10 - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 20 - - + + Crystal - + 10 - - 20 + + Color - - toolStripMenuItemExportExcelFile + + 10 - - + + 22 - - Help + + Profile - - 2, 39 + + 10 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + PeakColor - + 10 - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - + + 20 - - tabControl + + Crystal - + 10 - - Segoe UI Symbol, 9.75pt + + Color - - Calculating Time: + + 10 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 22 - - 133, 31 + + Profile - - toolStripButtonLPO + + 10 - - 937, 685 + + PeakColor - - 409, 28 + + 10 - + + 20 + + Crystal - - groupBox3 + + 10 - - + + PeakColor - - 0, 0 + + 10 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 20 - + Crystal - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - + Color - - checkBoxChangeHorizontalAppearance + + 10 - - tabControl1 + + 22 - - 222, 28 + + Profile - - Segoe UI Symbol, 9.75pt + + 10 - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Color - + 10 - - radioButtonMultiProfileMode + + 22 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Profile - - 4, 4, 4, 4 + + 10 - - System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + PeakColor - - 6, 0, 0, 0 + + 10 - - Detailed profile parameter + + 20 - - groupBox2 + + Crystal - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - + + PeakColor + + 10 - - NoControl + + 20 - - printToolStripMenuItem + + Crystal - - 317, 0 + + 10 - - System.Windows.Forms.ToolStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Color - - dataGridViewTextBoxColumn75 + + 10 - - 4, 4, 4, 4 + + 22 - - dataGridViewTextBoxColumn108 + + Profile - - radioButtonLinearity + + 10 - - 4, 86 + + Color - - toolStripContainer1.ContentPanel + + 10 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 22 - - + + Profile - - Raw count mode + + 10 - - True + + PeakColor - - Equation of - State (E) + + 10 - - Color + + 20 - + Crystal - - 28 + + 10 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Color - - 1, 29 + + 10 - - dataGridViewTextBoxColumn81 + + 22 - - + + Profile - - groupBox3 + + 10 - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + PeakColor - - counts + + 10 - - 0 + + 20 - + Crystal - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Color - - dataGridViewTextBoxColumn17 + + 10 - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 22 - - 24 + + Profile - - groupBox3 + + 10 - - TopDown + + PeakColor - - GrowAndShrink + + 10 - - dataGridViewTextBoxColumn2 + + 20 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Crystal - + 10 - - 10 + + Color - - Crystal + + 10 - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 22 - + Profile - - NoControl - - - Segoe UI Symbol, 9.75pt - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - Segoe UI Symbol, 9.75pt + + PeakColor - - 133 + + 10 - - dataGridViewImageColumn2 + + 20 - + Crystal - - Fill - - - 4, 4, 4, 4 + + 10 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + PeakColor - - numericBoxLowerX + + 10 - - Export the selected profile(s) + + 20 - - 4, 4 + + Crystal - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - tabPage3 + + Color - - 12 + + 10 - - Display the detailed crystal information + + 22 - - as GSAS file + + Profile - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - dataGridViewTextBoxColumn63 + + Color - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - Segoe UI Symbol, 9.75pt + + 22 - - dataGridViewImageColumn55 + + Profile - + 10 - - 1 + + PeakColor - - 4, 4, 4, 4 + + 10 - - Linearity + + 20 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Crystal - - 222, 28 + + 10 - - 1211, 753 + + Color - - toolStripSeparator11 + + 10 - - BitmapToolStripMenuItem + + 22 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Profile - - 20 + + 10 - - Scale Line + + PeakColor - - groupBox4 + + 10 - - 261, 434 + + 20 - + + Crystal + + 10 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Color - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - 6, 0, 0, 0 + + 22 - - setDirectoryToTheWatchToolStripMenuItem + + Profile - - NoControl + + 10 - + PeakColor - - White - - - dataGridViewTextBoxColumn85 + + 10 - - dataGridViewImageColumn18 + + 20 - - 4, 4, 4, 4 + + Crystal - + 10 - - - - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Color - + 10 - - groupBox3 - - - dataGridViewTextBoxColumn4 - - - dataGridViewImageColumn78 + + 22 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Profile - - None + + 10 - - groupBox3 + + PeakColor - - System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - Segoe UI Symbol, 9.75pt + + 20 - - Profile + + Crystal - + 10 - - 0, 53 + + Color - - dataGridViewTextBoxColumn82 + + 10 - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 22 - - Crystals + + Profile - - 226, 22 + + 10 - + PeakColor - - 450, 360 - - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - 137, 0 + + 20 - - 100, 25 + + Crystal - + 10 - + Color - - PeakColor - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - tableLayoutPanel2 + + 22 - + Profile - - fileToolStripMenuItem - - - tabPage3 + + 10 - - NoControl + + PeakColor - - Watch File + + 10 - - 4, 5, 4, 5 + + 20 - - 409, 28 + + Crystal - - tableLayoutPanel2 + + 10 - - dataGridViewTextBoxColumn31 + + Color - - 4, 4 + + 10 - - dataGridViewTextBoxColumn83 + + 22 - - 186, 50 + + Profile - - 222, 28 + + 10 - - 4, 4 + + PeakColor - - System.Windows.Forms.ToolStripProgressBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - Help (web) + + 20 - + Crystal - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - System.Windows.Forms.SplitContainer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Color - - 409, 28 + + 10 - - panel1 + + 22 - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Profile - - 49, 27 + + 10 - - 106, 29 + + PeakColor - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 20 - - radioButtonLogarithm + + Crystal - - 215, 28 + + 10 - - 1, 29 + + Color - + 10 - - + + 22 - - 0, 0 + + Profile - - + + 10 - - 16 + + PeakColor - - + + 10 - - dataGridViewTextBoxColumn11 + + 20 - + + Crystal + + 10 - - 3 + + Color - + 10 - - False - - - dataGridViewTextBoxColumn86 + + 22 - - Back Color + + Profile - + 10 - + + PeakColor + + 10 - - 937 + + 20 - - Profile - - + Crystal - - flowLayoutPanel4 - - - Scale 1 + + 10 - - toolStripMenuItemPrintPreview + + 1114, 7 + + + PeakColor - + 10 - - - - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 20 - + Crystal - - 265, 2 + + 10 PeakColor - - 111, 27 + + 10 - - 450, 375 + + 20 - + + Crystal + + 10 - - numericUpDownIncreasingPixels + + Color - - 4 + + 10 - - dataGridViewTextBoxColumn61 + + 22 - + Profile - - Color + + 10 - - profileDataGridViewTextBoxColumn + + Color - + 10 - - Crystal - - - Choose the scale-text's color + + 22 - + Profile - - dataGridViewTextBoxColumn105 - - - 800, 0 - - + 10 - - dataGridViewImageColumn62 + + PeakColor - + 10 - - 91, 21 - - - dataGridViewImageColumn30 + + 20 - + Crystal - - toolStripSeparator12 + + 10 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Color - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 22 - + Profile - - + + 10 - - dataGridViewTextBoxColumn87 + + PeakColor - - White + + 10 - - 77, 27 + + 20 - - 0 + + Crystal - + 10 - - 0, 0 + + Color - + + 10 + + 22 - - 4, 4, 4, 4 + + Profile - + 10 - - 3 - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + PeakColor - + 10 - - Fill + + 20 - - + + Crystal - - NoControl + + 10 - - <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="numericBoxUpperX" Row="0" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="numericBoxUpperY" Row="0" RowSpan="1" Column="7" ColumnSpan="1" /><Control Name="numericBoxLowerX" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="labelIntensity" Row="0" RowSpan="1" Column="10" ColumnSpan="1" /><Control Name="numericBoxLowerY" Row="0" RowSpan="1" Column="5" ColumnSpan="1" /><Control Name="labelD" Row="0" RowSpan="1" Column="9" ColumnSpan="1" /><Control Name="labelTwoTheta" Row="0" RowSpan="1" Column="8" ColumnSpan="1" /><Control Name="label11" Row="0" RowSpan="1" Column="6" ColumnSpan="1" /><Control Name="label10" Row="0" RowSpan="1" Column="2" ColumnSpan="1" /><Control Name="labelX" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="label9" Row="0" RowSpan="1" Column="4" ColumnSpan="1" /></Controls><Columns Styles="AutoSize,0,Percent,11.76471,AutoSize,0,Percent,11.76471,AutoSize,0,Percent,11.76471,AutoSize,0,Percent,11.76471,Percent,17.64706,Percent,17.64706,Percent,17.64706" /><Rows Styles="Percent,100" /></TableLayoutSettings> + + Color - + + 10 + + + 22 + + Profile - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - japaneseToolStripMenuItem + + PeakColor - - splitContainer1.Panel1 + + 10 - - dataGridViewTextBoxColumn14 + + 20 - - 117, 70 + + Crystal - + 10 - - numericUpDownMinInt - - - tableLayoutPanel2 + + Color - - 130, 27 + + 10 - - 8, 25 + + 22 - - 0 + + Profile - + 10 - + PeakColor - - 4, 4, 4, 4 + + 10 - - Crystal + + 20 - - 46 + + Crystal - + 10 - - 10 + + Color - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - toolStripContainer1.BottomToolStripPanel + + 22 - - Segoe UI Symbol, 9.75pt + + Profile - - Liner Scale + + 10 - - Choose the background color + + PeakColor - - Profile + + 10 - - dataGridViewTextBoxColumn65 + + 20 - - 0 + + Crystal - - Tahoma, 8.25pt + + 10 - - 0 + + Color - + 10 - - 4, 230 + + 22 - - PeakColor + + Profile - - PeakColor + + 10 - - GrowAndShrink + + PeakColor - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - flowLayoutPanel4 + + 20 - - 1211, 33 + + Crystal - - 3 + + 10 - - 394, 265 + + Color - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - NoControl + + 22 - - label10 + + Profile - - Choose the scale-text's color + + 10 - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + PeakColor - - tableLayoutPanel2 + + 10 - - 3 + + 20 - - None + + Crystal - + 10 - - dataGridViewTextBoxColumn88 + + Color - + 10 - - Crystal + + 22 - - as Bitmap data + + Profile - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - 1211, 753 + + PeakColor - - Show error bar (if profiles have it) + + 10 - - 406, 6 + + 20 - - + + Crystal - - button3 + + 10 - - dataGridViewCrystals + + Color - - + + 10 - - Raw Counts + + 22 - - 1 + + Profile - - dataGridViewTextBoxColumn80 + + 10 - - toolStrip2 + + PeakColor - - dataGridViewTextBoxColumn89 + + 10 - + 20 - - Profile + + Crystal - + + 10 + + Color + + 10 + + + 22 + + + Profile + + + 10 + PeakColor - - clearRegistryToolStripMenuItem + + 10 - - colorControlScaleText + + 20 - - None + + Crystal - + 10 - + + Color + + 10 - - Segoe UI Symbol, 9.75pt + + 22 - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Profile - - 28 + + 10 - - 32 + + PeakColor - - Profile + + 10 - - Profile + + 20 - - 76, 23 + + Crystal - - toolTipToolStripMenuItem + + 10 - + Color - - Crystal + + 10 - - PeakColor + + 22 - - dataGridViewTextBoxColumn60 + + Profile - - 6, 53 + + 10 - - 0, 0, 1, 0 + + PeakColor - - 131, 31 + + 10 - - Profile Parameter + + 20 - - 242, 2 + + Crystal - - 4 - - - System.Windows.Forms.ToolStripStatusLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 0, 0 + + 10 - - toolStripContainer1 + + Color - + 10 - - 4 + + 22 - - Watch Clipboard + + Profile - - resetInitialCrystalDataToolStripMenuItem + + 10 - - Color + + PeakColor - - dataGridViewImageColumn5 + + 10 - - Profile + + 20 - + + Crystal + + 10 - - dataGridViewImageColumn7 + + PeakColor - - dataGridViewImageColumn48 + + 10 - - 4, 0, 4, 0 + + 20 - + Crystal - - numericBoxLowerY + + 10 - - Export the selected crystal to CIF + + Color - - splitContainer2.Panel2 + + 10 - - splitContainer1 + + 22 - - dataGridViewTextBoxColumn62 + + Profile - - 0 + + 10 - - 9 + + PeakColor - - 144, 9 + + 10 - - PeakColor + + 20 - - splitContainer2.Panel1 + + Crystal - - 22 + + 10 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Color - + 10 - - PeakColor + + 22 - - Clear Registry + + Profile - + 10 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - + + PeakColor - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 20 - - 0, 0, 0, 0 + + Crystal - - 6 + + 10 - - toolStripContainer1 + + Color - - statusStrip1 + + 10 - - Crystal + + 22 - - 1 + + Profile - - 377, 28 + + 10 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + PeakColor - - dataGridViewTextBoxColumn67 + + 10 - - 0 + + 20 - - NoControl + + Crystal - + 10 - - 4, 4, 4, 4 + + True + + + 75 + + + 96, 96 - - 6, 53 + + 969, 696 - - Segoe UI Symbol, 9.75pt + + Arial, 9pt - + - iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAS - dAAAEnQB3mYfeAAABYNJREFUWEfVV2tMVEcUnr1334tGpRZUtCpoY6Iijf5AI1Gob9A2MVEQH0FiTECB - 5WElElJQSSSktY/EBsIPFAGBxQeUR4tKWVldFZGSBgsiWilsRUUMyqt8PXfYEiw0uos16TeZzN57537n - mzPnnLnL/tc4whisP98tent6cJmMW2Qy1NDY1dGB2owMlG/dipaaGvtEtdbV4faJE3jR2Yn+/n7kOzqi - nMirDh8eQXi3vBz36Bl278Z9lQ7pK1fiDl0/lctRRWPPy5e2iTi5ZAlq6cVWWlExjRf37IGFxl5XV5ho - tE4bgiSwhO4/pPmbZRsQKvsAT1UqDPj74y7d/6O+3jYB39NLHaIIkOEDKk/sEj7E70TeO2MGjKMIkCCJ - SP3sK2jV8XDV7EYFzWugblCr8aixkXvROvX1yPfz43spGZ0lBECrCkcy0+Ec3fvCPwLNJhMaSktHEBYX - 10KrTYBaHYdxqoOYo9qB98Vd+JXeu0jdOu3NIAWWubyKCOOg0RyiMYl6PJxkIbgrqNBGHjJQXFinczQ0 - tHIBkybpaUyERv05zjIXDAQE4JEg2Cbgb0gCJk8OJcJk3rcwP/RMmYKBZctQOWxVVQkJKKXrNLkWOk0C - pk1LQlaWGeeUSrSQcbOtHpBwz2jEXnER5k3YxY17eHyLvJBI/ExkUpQbPD05qeStG3TdRzHSrlDAeOTo - kDFp72vT09HZ1mabgAfXr+MWkT6mVJLUl529xgkkworERNTk5g4Rdnd3Dwpwc8Nj2hpzcrJtxkbDtaNH - 0UZBOBAUxF14Ky2Nk54ll0rpVkcGTd98hzVrisk7uZinOIY8NhUFTk5jNy6hr7cX58mY5G6DTsfT6EVX - F78e8PFB1/jxOC6byo1rtTnQ6c7A1dXwdowPR/c/qpjBxYWnlbQtXuN8oNWcgiiWWYVkv30Bo0EqLMaU - FCxUe2DOhKVUJ9LJeBaWKsPx8ObNNxORRVlxj3q5HdkhodDZGd0TJyJj9hJohKX4WnDg50E99V/y819P - eodhHzXWxtBoabRdRJGvLw9GKVANdEZcJcN/Ll/Oa0SRl9eohAtyFmDxmcWDz/Jp5b9Rr7DTAxJ+iolB - pV7PAzSPqmILiWkiIbdSU0eQzsyYCfGZCNljGdb5JSEkpBI79xdg9eog+wW8KZrbm8GOM7iYZ2BjZAq2 - ReeSgAqEhhoxf/4mBGRvg1umm20H1r9CCq566rmDruWktYyvnBUy+B/K5sb37a9EZGQtZruvwPi0aRCe - C1BmK8cmgAdTM8MhauzBoIDqh9UQ2gVsp8ZuM4SFXYVeX409IWXQR1VjQtB0uGzxgGM/HWwX7IyHzYWb - EfZj2ODLl2i1Flrt8OA6T7/JC5qkifD2jsW6dfH0qXGBz5G109wr9LyUKmuTyXYBykwlVF0qiE0iAndk - Ijz8GvaG/YDAwKgRZEZjDby89Fi1Kha+vsfAmhhCqbH7lL5tNn41Sejo6gBLZfigfhY+jf4SQTFF5OIr - iIgw8+CKq4xDcGnwELGl04JFG3fC/ZMd8Pk4BrosHVgdrf60Ha5PKUuBVEyEJ/ShkcewM76AVl+FyCgz - YmPrMf0jT+guvQf5czmcTlkPqALKhD4XKF4o4HDKwXajr4DSSngmIJgaMzNER99EVPQNhEZcxsGDdZi0 - wQ3TE93h3O8MljO4QofTDlB0Kvi+u+e4j1GAhCIirmZw1LvRvsZj7dpYyu0SsOsM4hMRUkBKkW15Zhky - FlwSzLfGevl2kJR0EitWHODBtXZTAlgLQxQ11sDwstvG/wT2wNRswsKtgTy41q8/AF6MKOcdM179aP3v - UMLg1OcEeYcc3gXe78jocFAWiJ20560M24uo4r1rSPV+buZc+Bf6j9E4Y38BVRFkX2ND1hYAAAAASUVO - RK5CYII= + AAABAAIAICAQAAAABADoAgAAJgAAABAQEAAAAAQAKAEAAA4DAAAoAAAAIAAAAEAAAAABAAQAAAAAAAAC + AAAAAAAAAAAAABAAAAAQAAAA7gQLAO7uUwAAAAAA////AIAAAAAzOP8AP/pNAICAgADAwMAAAAD/AAD/ + AAAA//8A/wAAAP8A/wD//wAA////ACIiUiIiIiIiImIiIiIiKyIiIlIiIiIiIiJiIiIiIisiIiJSIiIA + IiIiYiIiIAIrIgIiUiIgIgIiImIiIgIgKyACIlIiICICIiJiIiICICsgAiJSIgIiAiIiYiIiAiArICAi + UiICIiAiImIiICIiCwIgIlIiAiIgIiJiIiAiIgsCICJSIgIiICIiYiIgIiILAiAiUiAiIiAiImIiICIi + CwIgIlIgIiIgIiJiIiAiIgsCIgJSICIiICIiYiIgIiIrIiICUiAiIiICImIiAiIiKyIiAlICIiIiAiJi + IgIiIisiIgJSAiIiIgIiYiICIiIiIiIgUgIiIiICImIiAiIiIiIiIFAiIiIiAiJiIgIiIiIiIiJSIiIi + IgIiYiICIiIiIiIiIiIiIiIgImIgIiIiIiIiIiIiIiIiICJiICIiIiIiIiIiIiIiIiAiYiAiIiIiIiIi + IiIiIiIgImIgIiIiIiIiIiIiIiIiICJiICIiIiIiIiIiIiIiIiICYgIiIiIiIiIiIiIiIiIiAmICIiIi + IiIiIiIiIiIiIgJiAiIiIiIiIiIiIiIiIiICYgIiIiIiIiIiIiIiIiIiIGAiIiIiIiIiIiIiIiIiIiBg + IiIiIiIiIiIiIiIiIiIiYiIiIiIiIiIiIiIiIiIiImIiIiIiIiIiIiIiIiIiIiJiIiIiIiIi9//f+/f/ + 3/v3z9+bd7ffane332p3d99qt3ve8bd73vG3e97xtvve8bb73vHW+9771v3d+9X93fvV/d3/5f3d/+P9 + 3f/3/d3///7b///+2////tv///7b///+2////1f///9X////V////1f///+P////j////9/////f//// + 3/8oAAAAEAAAACAAAAABAAQAAAAAAIAAAAAAAAAAAAAAABAAAAAQAAAAAAAAAAAAgAAAgAAAAICAAIAA + AACAAIAAgIAAAICAgADAwMAAAAD/AAD/AAAA//8A/wAAAP8A/wD//wAA////AAAJAAwACwAMwAkAwMAL + AMDACQDAwAsAwAwJDADACwDADAkMAAwLDAAMCQwADAsMAADJwAAMCwwAAMnAAAwLDAAACQAADAsMAAAJ + AAAMCwwAAAAAAADLwAAAAAAAAMvAAAAAAAAAy8AAAAAAAADLwAAAAAAAAAsAAAAAAAAACwAA7u4AAG1t + AABtbQAAq20AAKurAACrqwAAx6sAAMerAADvqwAA76sAAP/HAAD/xwAA/8cAAP/HAAD/7wAA/+8AAA== - - 0, 0, 0, 0 + + 794, 481 - - 95, 55 + + PDIndexer - - 265, 32 + + toolStripProgressBar - - System.Windows.Forms.DataGridView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ToolStripProgressBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewImageColumn80 + + toolStripStatusLabelCalcTime - - + + System.Windows.Forms.ToolStripStatusLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - PeakColor + + toolStripStatusLabel1 - - 282, 38 + + System.Windows.Forms.ToolStripStatusLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + toolStripStatusLabel2 - - 386, 237 + + System.Windows.Forms.ToolStripStatusLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - labelD + + checkDataGridViewCheckBoxColumn2 - - tabPage2 + + System.Windows.Forms.DataGridViewCheckBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewTextBoxColumn64 + + colorDataGridViewTextBoxColumn - - Crystal - - - dataGridViewImageColumn34 - - - toolStripContainer1 - - - d: - - - Profile - - - Maximum value of verticall axis. -You can set the limit value in right-click menu. - - - False - - - 10 - - - 33 - - - 10 - - - comboBoxGradient - - - 10 - - - Crystal - - - 222, 28 - - - 4, 460 - - - False - - - 10 - - - 0 - - - toolStripContainer1.LeftToolStripPanel - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Segoe UI Symbol, 9.75pt - - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - toolStripSeparator3 - - - 3 - - - 94, 50 - - - 4, 4, 4, 4 - - - Profile - - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Profile - - - - AAABAAIAICAQAAAABADoAgAAJgAAABAQEAAAAAQAKAEAAA4DAAAoAAAAIAAAAEAAAAABAAQAAAAAAAAC - AAAAAAAAAAAAABAAAAAQAAAA7gQLAO7uUwAAAAAA////AIAAAAAzOP8AP/pNAICAgADAwMAAAAD/AAD/ - AAAA//8A/wAAAP8A/wD//wAA////ACIiUiIiIiIiImIiIiIiKyIiIlIiIiIiIiJiIiIiIisiIiJSIiIA - IiIiYiIiIAIrIgIiUiIgIgIiImIiIgIgKyACIlIiICICIiJiIiICICsgAiJSIgIiAiIiYiIiAiArICAi - UiICIiAiImIiICIiCwIgIlIiAiIgIiJiIiAiIgsCICJSIgIiICIiYiIgIiILAiAiUiAiIiAiImIiICIi - CwIgIlIgIiIgIiJiIiAiIgsCIgJSICIiICIiYiIgIiIrIiICUiAiIiICImIiAiIiKyIiAlICIiIiAiJi - IgIiIisiIgJSAiIiIgIiYiICIiIiIiIgUgIiIiICImIiAiIiIiIiIFAiIiIiAiJiIgIiIiIiIiJSIiIi - IgIiYiICIiIiIiIiIiIiIiIgImIgIiIiIiIiIiIiIiIiICJiICIiIiIiIiIiIiIiIiAiYiAiIiIiIiIi - IiIiIiIgImIgIiIiIiIiIiIiIiIiICJiICIiIiIiIiIiIiIiIiICYgIiIiIiIiIiIiIiIiIiAmICIiIi - IiIiIiIiIiIiIgJiAiIiIiIiIiIiIiIiIiICYgIiIiIiIiIiIiIiIiIiIGAiIiIiIiIiIiIiIiIiIiBg - IiIiIiIiIiIiIiIiIiIiYiIiIiIiIiIiIiIiIiIiImIiIiIiIiIiIiIiIiIiIiJiIiIiIiIi9//f+/f/ - 3/v3z9+bd7ffane332p3d99qt3ve8bd73vG3e97xtvve8bb73vHW+9771v3d+9X93fvV/d3/5f3d/+P9 - 3f/3/d3///7b///+2////tv///7b///+2////1f///9X////V////1f///+P////j////9/////f//// - 3/8oAAAAEAAAACAAAAABAAQAAAAAAIAAAAAAAAAAAAAAABAAAAAQAAAAAAAAAAAAgAAAgAAAAICAAIAA - AACAAIAAgIAAAICAgADAwMAAAAD/AAD/AAAA//8A/wAAAP8A/wD//wAA////AAAJAAwACwAMwAkAwMAL - AMDACQDAwAsAwAwJDADACwDADAkMAAwLDAAMCQwADAsMAADJwAAMCwwAAMnAAAwLDAAACQAADAsMAAAJ - AAAMCwwAAAAAAADLwAAAAAAAAMvAAAAAAAAAy8AAAAAAAADLwAAAAAAAAAsAAAAAAAAACwAA7u4AAG1t - AABtbQAAq20AAKurAACrqwAAx6sAAMerAADvqwAA76sAAP/HAAD/xwAA/8cAAP/HAAD/7wAA/+8AAA== - - - - 10 - - - 4, 5, 4, 5 - - - 0 - - - Fill - - - dataGridViewImageColumn67 - - - 20 - - - - - - System.Windows.Forms.ToolStripPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - closeToolStripMenuItem - - - - iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAS - dAAAEnQB3mYfeAAAAsNJREFUWEe9V7+LE0EYFfwDJH2wiM0hEYsrUwkHSsDCYotg6XGksLDb/yAEEewC - QS1XJI0IKYQUFlvYpFrURlIsCGd1LBYeh8Vz3rfzTcblYm6TTN4QsjOzuff9eN83c9e2QYIEIzPsdL8o - UKBtRt8Ou7w/0HMSZ2bQELu8P3TRRW4Gn5to7t8A32vfmOCIY2AwgPF56fUA5bDTcEhTQ9wEDtp/jM9d - RzjFFD0z7DQc1PuH8VfcH3xyhClSdMyw03DodCAk95JXeNQ7/4cwuBCLogw/nw/SY6gxiuClyPx3uzDt - pxABqjEKXxNBwNzzo4KrRiB4JfR6QJ4DsRkk6veBJFkawXMhaEtut0syVftoBDGCzwRbctBKYM41/5yr - JmTTwq8EjMcmXPFuDFIy5l/F5leFwo+AeQAajd0YwFwz3Jp/u+zSouA+tYD5XMhxcrKbKJCcUajWugrT - Tl1LxmQCHB4KOY2w25uDoeZpV+12FCJL007lksJ3hJif2UwMsdubIcvK8OsFxC4L6H1ViNSIeL9YAGdn - 3NzOADoiRGbw0LHLDlUdUCM+6VZCVKWTuBp+BaPj6+D7/B2KxvWlAdukgPklAb1fdftlivw0YDjEx+iG - uyFtXAm+9+tOOhqgUUCrhQ+Ll2K0zNmQjo7qG+B7f1nufWijEuEZTq7RaEZhIyGy8fC0Y1O56jnP96fH - 74Eokvf5WxeFOhFQch4uFN5Vb7vUAlM2ffPTvc/WzOYkjckathIMI0tOyTWEdnstmOvs7uPSCMPJNW1M - kopV5chuxlpmvl8nv0XttLwWOXu/+aIGGAm2aP5Nfj9PfuB2/gDZ+OnlYmSu5IJhBonr/rPpDh4TZrvk - QGMo5i/5L9HDt+gOLlqVfsJwU+XrlF4F611arsktPbfL/wW55tEtaVSfo5t4O3tSi3NnYGnmkxc4HT7D - X6dj/2jLlhYAAAAAAElFTkSuQmCC - - - - Crystal - - - 200 - - + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 - - - toolStripContainer1 - - - + + profileDataGridViewTextBoxColumn - + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewTextBoxColumn68 - - - 0 - - - 4, 4, 4, 4 + + bindingSourceProfile - - Import CIF, AMC... + + System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 176, 40 + + dataSet - - toolStripSeparator6 + + PDIndexer.DataSet, DataSet.Designer.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + checkDataGridViewCheckBoxColumn1 - - 20 + + System.Windows.Forms.DataGridViewCheckBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 PeakColor - - 0 - - - 20 - - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Segoe UI Symbol, 9.75pt - - - Segoe UI Symbol, 9.75pt - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 228, 28 - - - True - - - 261, 174 - - - Stress Analysis - - - 1 - - - 10 - - - Crystal - - - Cell Finder - - - toolStripStatusLabel2 - - - 0 - - - 4, 0 - - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Display the detailde profile parameters - - + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 10 - - - 69, 64 - - - 0 - - - PDIndexer - - - 100, 27 - - - label11 - - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + Crystal - - 10 - - - 194, 68 - - - label1 - - - 0, 68 - - - dataGridViewImageColumn81 - - - False - - - splitContainer1.Panel1 - - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - PeakColor - - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewTextBoxColumn43 + + bindingSourceCrystal - - Crystallography.Controls.HorizontalAxisUserControl, Crystallography.Controls, Version=2020.10.15.835, Culture=neutral, PublicKeyToken=null + + System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + toolStripButtonCrystalParameter - - プロファイルを読み込み後、横軸モードを変更します。 - + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewTextBoxColumn9 + + toolStripSeparator4 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 889, 53 + + toolStripButtonProfileParameter - - 5 + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 4, 4, 4 + + toolStripSeparator6 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewTextBoxColumn46 + + toolStripButtonEquationOfState - - + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 522, 0 + + toolStripSeparator8 - - Crystal + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 1000, 29 + + toolStripButtonFittingParameter - - optionToolStripMenuItem + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + toolStripSeparator5 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + toolStripButtonCellFinder - - NoControl + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - label5 + + toolStripSeparator11 - - 1 + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 5, 4, 5 + + toolStripButtonStressAnalysis - - Profile + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Segoe UI Symbol, 9.75pt + + toolStripSeparator10 - - Fill + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewImageColumn10 + + toolStripButtonAtomicPositonFinder - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + toolStripSeparator12 - - 63, 23 + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 22 + + toolStripButtonLPO - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 20 + + fileToolStripMenuItem - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Profile + + readPatternProfileToolStripMenuItem - - 4, 24 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - helpwebToolStripMenuItem + + savePatternProfileToolStripMenuItem - - 4, 4, 4, 4 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + toolStripMenuItemExportExcelFile - - dataGridViewTextBoxColumn5 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox1 + + asCSVcommaSeperatedFileToolStripMenuItem - - panel1 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewImageColumn84 + + asTSVtabSeparatedValuesFileToolStripMenuItem - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + + asGSASFileToolStripMenuItem - - 69, 31 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - toolStripSeparator4 + + toolStripSeparator1 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + readCrystalDataToolStripMenuItem - - label9 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + readAndAddToolStripMenuItem - - 4, 202 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + saveCrystalDataToolStripMenuItem - - GrowAndShrink + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - PDIndexer.DataSet, DataSet.Designer.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + + toolStripMenuItemImport - - watchReadClipboardToolStripMenuItem + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 28, 27 + + toolStripMenuItemExportCIF - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Profile + + resetInitialCrystalDataToolStripMenuItem - - + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - readCrystalDataToolStripMenuItem + + toolStripSeparator3 - - 4, 39 + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewImageColumn83 + + toolStripMenuItemPageSetup - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - toolStripSeparator5 + + toolStripMenuItemPrintPreview - - Atomic Position Finder + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tableLayoutPanel2 + + printToolStripMenuItem - - dataGridViewTextBoxColumn47 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + toolStripSeparator9 - - 1000, 29 + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Color + + コピーToolStripMenuItem - + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Main profile viewer - Left button drag: move a diffraction peak position of a checked & selected crystal - Right button click: Shrink - Right button drag: Zoom - Middle button drag: Translation - - - True + + BitmapToolStripMenuItem - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAS - dAAAEnQB3mYfeAAAAgNJREFUOE+lkutLk2EYxvePhJaHShFBUTEPiCieQOmDiEZgrEbpYGiCQxkqA80I - RUkUEZ0YRMS+DDI70MkTmzJnDc8iU8QT2mAEItnle90wHwTDyBduXnie5/rd133Q4ZKfAJqHFs9E08A8 - zD1emDpmYXjqRlnTFIrMk8iuGkNaxWekGEaQrHecBfw+/vPXODw6hj9whN2fh/Bt/8LSRgA3cxr/DeBZ - 9kvmTNMoHGNbIrYN+3Aj23IxgJkpds0doP3VstgmsNexhutZ9QrAms8T0zYzU5xXM46kcjsmvfvoeL2i - AeoUgA07T8yaaZuZKab1rzN74jgys1YB2O2gmBZzH49LODXrrJlnzEzxe9cOLH1ziMioVgCOiuIFX0CE - Q+/WYf+yieiCFrRp9tkwxnP7Kt5MbKGm6wfC000KwDlTXNLgEvHMkh+Db32o7fYivtQm1l9+3IBOp5P7 - yjYPwlKNCsAluWudxgvtknb5t9oWcL/VLU2Mvd2JFq3uqs7vAtE/ceNayiMF4KiYMSjmY2O7B4Ua+NaD - YQGEJumRbvyG1IcfBHI12aAAXM8R57aIWTNrLLY4tfNPiCvpR1SeVeu6WWzHFD6THSDwFMDdpmUG62NJ - PKM4Or9ZxBxb8H8l7g5CEu8pAOfM3WanSeeS8CFHxW4zM2umbWamOCShXAH+/wNOANABIDUxWnDPAAAA - AElFTkSuQmCC - + + copyAsMetafileToolStripMenuItem - - 1, 1, 1, 1 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + toolStripMenuItemSaveMetafile - - toolStripTextBoxDirectoryToWatch + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 129 + + toolStripSeparator2 - - Gray scale + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GrowAndShrink + + closeToolStripMenuItem - - 10 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + + optionToolStripMenuItem - - dataGridViewTextBoxColumn44 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - PeakColor + + toolTipToolStripMenuItem - - 5 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + watchReadClipboardToolStripMenuItem - - NoControl + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - checkDataGridViewCheckBoxColumn2 + + watchReadANewProfileToolStripMenuItem - - Segoe UI Symbol, 9.75pt + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Profile + + setDirectoryToTheWatchToolStripMenuItem - - tabPage2 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewImageColumn70 + + toolStripTextBoxDirectoryToWatch - - 10 + + System.Windows.Forms.ToolStripTextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 20 + + clearRegistryToolStripMenuItem - - 10 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - radioButtonRawCounts + + macroToolStripMenuItem - - dataGridViewTextBoxColumn97 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + editorToolStripMenuItem - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + helpToolStripMenuItem - - groupBox2 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - toolStripContainer1.TopToolStripPanel + + aboutMeToolStripMenuItem - - 0 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewTextBoxColumn91 + + programUpdatesToolStripMenuItem - - statusStrip1 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 4, 4, 4 + + hintToolStripMenuItem - - Crystal + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Gradient + + helpwebToolStripMenuItem - - 2 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Segoe UI Symbol, 9.75pt + + languageToolStripMenuItem - - 10 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - toolStripSeparator8 + + englishToolStripMenuItem - - checkBoxShowScaleLine + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Segoe UI Symbol, 9.75pt + + japaneseToolStripMenuItem - - dataGridViewImageColumn6 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 450, 375 + + toolTip - - + + System.Windows.Forms.ToolTip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + pageSetupDialog1 - - 192, 27 + + System.Windows.Forms.PageSetupDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewImageColumn9 + + printDialog1 - - + + System.Windows.Forms.PrintDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 0, 4, 0 + + dataGridViewTextBoxColumn1 - - 4, 26 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Segoe UI Symbol, 9.75pt + + dataGridViewTextBoxColumn2 - - System.Windows.Forms.Timer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 20 + + checkDataGridViewCheckBoxColumn - - 0, 2, 0, 0 + + System.Windows.Forms.DataGridViewCheckBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewImageColumn23 + + Check - - 0 + + System.Windows.Forms.DataGridViewCheckBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Magenta + + dataGridViewTextBoxColumn3 - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewTextBoxColumn48 + + dataGridViewTextBoxColumn4 - - 0, 2, 0, 0 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewImageColumn51 + + dataGridViewTextBoxColumn5 - - System.Windows.Forms.PageSetupDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - PeakColor + + dataGridViewTextBoxColumn6 - - + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + dataGridViewTextBoxColumn7 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - PeakColor + + dataGridViewTextBoxColumn8 - - flowLayoutPanel2 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - toolStripMenuItemImport + + dataGridViewTextBoxColumn9 - - Segoe UI Symbol, 9.75pt + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + dataGridViewTextBoxColumn10 - - 22 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - checkBoxProfileParameter + + dataGridViewTextBoxColumn11 - - Top + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Scale 2 + + dataGridViewTextBoxColumn12 - - 1 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 200, 70 + + dataGridViewTextBoxColumn13 - - dataGridViewTextBoxColumn49 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Top, Bottom, Left, Right + + dataGridViewTextBoxColumn14 + + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 dataGridViewTextBoxColumn15 - + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - toolStripMenuItemExportCIF + + dataGridViewTextBoxColumn16 - - toolStripContainer1.ContentPanel + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Crystal + + dataGridViewTextBoxColumn17 - - dataGridViewImageColumn54 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + dataGridViewTextBoxColumn18 - - 155, 50 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewImageColumn53 + + dataGridViewTextBoxColumn19 - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - White + + dataGridViewTextBoxColumn20 - - 4 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + dataGridViewTextBoxColumn21 - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4 + + dataGridViewTextBoxColumn22 - - 0 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + dataGridViewTextBoxColumn23 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.DataGridViewCheckBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + dataGridViewTextBoxColumn25 - - - iVBORw0KGgoAAAANSUhEUgAAACAAAAAhCAYAAAC4JqlRAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAS - dAAAEnQB3mYfeAAAA/NJREFUWEfFV21LlEEU9Yf0HwQ/SH3og+GHwA9BUYRgUBAISRESRoEgJCFFGAVB - hWD0gr3QC9GSFpa9GkiWRoFEkSQVGEYvGEinc87M7j4+u5u7RXrgss/cmbn3zJ07M3erigGvXgE1NYjN - xQe6u4Fly4BMZmlIoKkJOHgQaG9fIgJ1dcDkJNDQ8E8E8P07cOJEeTa0Wly65MHZ/U/mAWZnyzKE4WFg - z54wn7+orgZGRvJ2Pn0qtIPxcXjVtbXA9LR/ra+vz0+UMeZGbJaEoqZ5ePbMiYwrV4C2tryd1auBzs75 - dtDRAfT02IENNDYGAlu3BkNzc2ElCULFoCh53JkzwIYNQbhirFwZ7E1MBPsrVqQIaOWaLFEkaMB67p9J - Kawi09oKRcuTigAPH4ZxX77YKQYGgh05FZFTp4CuLqClBRgaCnYwOAhlvRsp4M0bZEOm/NAkkYjdBXAk - 49FVAvp37mdwrD6Rk00RXbcuEmC4pXSjCNDcnBvsreC3dTt2zBcZzxqNwA/m07k18GnQPI6JXVWOJonF - ZmnYaeIEeJt0RIuJ+j6/Bh4cCISH9gG9q4B39+bZ+Ct4NV+nFjSCuwz1yeWBwMWNwIvzwNOe/ALGzgEf - xyong6tbgJs7FybQt9YRwOQj4CyT78MocHtvngDJ4dbuygjgF7fhNJOR+xlVJeE9f8mEpRNcZ64ocpc3 - eR5m3gbdhfUVEtDEG9ssUVUU2iJcYzIqD7TSR4eC40jcuaDokJBOh3RlwRPv7w8ylb9W01BfNtzOhW8f - w3f/Ljv0/j8/DTw+DLy9UwGB0d6QTK/7oe+oLoAdUGIzB4wcByYyvEd4KkRS+fHkaAUEBvlQKbyzM1Bm - R3UBvO/c89jMAe+fhJyIc/HzK5SsoVOrU7gkcqQkSUtme86oTkJufFI0NzEuDZ+ieD8Iyg9FNXe+s+JO - qkC/HpmC9zIxPilxyL8DfSTAigx8vKJqcQE+/eCjCL4hUbW4AJ9xXKfwvYiqxQX4lIPPN3j5RdX/B47Q - 4UBwCFZSyd9KAP6lAA9FbBZACR4/8/Bq6Uwrd5sFkn9juxKAzz5YEpZKYOcXn4rYDABLOLHW0VPigY+Y - 9axVRM6DygBYDog8WPCUyh8vNL214P8Q8IYEi2MfPxY41rfxmzeoB5UBz6ctfyuPSMgdEY60FkUCuT6z - ZiHrBgHWoCLj7xgZd5QBR49/qPzNajx9mTkyvDAd7ewRV+KVvPVYZVVyEsCXOEte0DbgGIVFsttyzP03 - kbjNIWmYuW4UgbeHRbFW9keRcSZfnGY4unK4OQqdigxY35gsb1yWz6WdC+o343Kk2BGLsONETphEKkeW - AFVVvwHYB/NJj+Pj6QAAAABJRU5ErkJggg== - + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0, 0, 0, 0 + + dataGridViewImageColumn1 - - dataGridViewTextBoxColumn95 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + dataGridViewTextBoxColumn24 - - Crystal + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + dataGridViewImageColumn2 - - 3 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - After reading profile, change horizontanl axis + + dataGridViewTextBoxColumn26 - - 4 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + dataGridViewImageColumn3 - - 10 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 32 + + dataGridViewTextBoxColumn27 - - 4, 0, 4, 0 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewImageColumn19 + + dataGridViewTextBoxColumn30 - - Profile + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - horizontalAxisUserControl + + dataGridViewImageColumn4 - - Fill + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0, 2 + + dataGridViewTextBoxColumn28 - - dataGridViewTextBoxColumn92 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + dataGridViewImageColumn5 - - Crystal + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + dataGridViewTextBoxColumn29 - - as TSV (tab separated values) file + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + dataGridViewImageColumn6 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 32 + + dataGridViewTextBoxColumn31 - - PeakColor + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 269, 488 + + dataGridViewImageColumn7 - - dataGridViewImageColumn15 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + dataGridViewTextBoxColumn32 - - 4, 39 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 64, 24 + + dataGridViewImageColumn8 - - System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - checkBoxCrystalParameter + + dataGridViewTextBoxColumn33 - - System.Windows.Forms.DataGridViewCheckBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + dataGridViewImageColumn9 - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - PeakColor + + dataGridViewTextBoxColumn34 - - 10 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 112, 29 + + dataGridViewImageColumn10 - + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewImageColumn17 - - - 4, 0, 4, 0 + + dataGridViewTextBoxColumn35 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - PeakColor + + dataGridViewImageColumn11 - - 1 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + dataGridViewTextBoxColumn36 - - 10 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - PeakColor + + dataGridViewImageColumn12 - - Choose the scale-line's color + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox2 + + dataGridViewTextBoxColumn37 - - Negative Film + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + dataGridViewImageColumn13 - - 5 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewTextBoxColumn58 + + dataGridViewTextBoxColumn38 - - 2 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0, 0, 0, 0 + + dataGridViewImageColumn15 - - Segoe UI Symbol, 9.75pt + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + + dataGridViewTextBoxColumn40 - - 22 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + dataGridViewImageColumn14 - - Color + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewTextBoxColumn96 + + dataGridViewTextBoxColumn39 - - Magenta + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + dataGridViewImageColumn16 - - Maximum value of horizontal axis. -You can set the limit value in right-click menu. + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Color + + dataGridViewTextBoxColumn41 - - groupBox2 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + dataGridViewImageColumn17 - - Crystal + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + dataGridViewTextBoxColumn42 - - 10 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 22 + + dataGridViewImageColumn19 - - Crystal + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - macroToolStripMenuItem + + dataGridViewTextBoxColumn44 - - 10 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Choose the background color + + dataGridViewImageColumn18 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + dataGridViewTextBoxColumn43 - - 12, 2, 0, 0 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 122, 2 + + dataGridViewImageColumn20 - + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + dataGridViewTextBoxColumn45 - + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Color + + dataGridViewImageColumn21 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 125, 119 + + dataGridViewTextBoxColumn46 - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + dataGridViewImageColumn22 - - PeakColor + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 20 + + dataGridViewTextBoxColumn47 - - labelIntensity + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 1 + + dataGridViewImageColumn23 - + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 20 + + dataGridViewTextBoxColumn48 + + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + + dataGridViewImageColumn24 - + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 252, 21 + + dataGridViewTextBoxColumn49 - - Profile + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 4, 4, 4 + + dataGridViewImageColumn25 - - 212, 25 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Arial, 9pt + + dataGridViewTextBoxColumn50 - + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - colorControlScaleLine - - - 106, 29 + + dataGridViewImageColumn26 - - + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 261, 26 + + dataGridViewTextBoxColumn51 - - checkBoxAll + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 22 + + dataGridViewImageColumn27 - - dataGridViewImageColumn59 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + dataGridViewTextBoxColumn52 - - 112, 29 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - PeakColor + + dataGridViewImageColumn29 - - PeakColor + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + dataGridViewTextBoxColumn54 - - Color + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewTextBoxColumn94 + + dataGridViewImageColumn28 - - 22 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Fill + + dataGridViewTextBoxColumn53 - - 10 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Segoe UI Symbol, 9.75pt + + dataGridViewImageColumn30 - - Profile + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 20 + + dataGridViewTextBoxColumn55 - - splitContainer1 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - iVBORw0KGgoAAAANSUhEUgAAABMAAAASCAYAAAC5DOVpAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAA - vwAAAL8BYqQFcwAAAUpJREFUOE9jYAhq+Y8Lg8A1Bk04BgFs6uAYpMCmeiFWSf+OVf+fxlcSZRhYDkxC - AboCYgwDOeT7+WtgeQaYIhjQzp8JV0jIMBCAyf39+u0/w00RKzDn/fx1YEkYwGeYf/uq/z/vPUYRBwGG - ltWH///79w9DAgSSpmzGMAwEYPxfD59CRSAAHpsgcFvBBazoTddcMB8E0A0Dsxm1wGwYUMmaCvE6lI8T - YHMZLgCOAGph6hr2af2e//jwA8cEuGJs8sgYJTshg+vs+v8f2MfhjU0QQMk9IAIkAAN/v/9AUYwrAp5E - lYDFHjjEg/lgw8AsKLjGpA1WAMoeIIAt0Ub1rwfTMIAsBzbs358/KILGpXPANuHLTsjgoWsyWJ7hBr8Z - mPFx1XawBEwxIcNAGJR7kAE8o8NTMRImZBgMwwDYm9gUgDCxhoFw/tyd/wHjpZDiF9mN8AAAAABJRU5E - rkJggg== - + + dataGridViewImageColumn31 - + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Profile + + dataGridViewTextBoxColumn56 - - dataGridViewTextBoxColumn39 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 46 + + dataGridViewImageColumn32 - - dataGridViewImageColumn40 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + dataGridViewTextBoxColumn57 - + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - dataGridViewImageColumn73 + + dataGridViewImageColumn33 - - None + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - toolStripMenuItemPageSetup + + dataGridViewTextBoxColumn58 - - 134, 115 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Crystal + + dataGridViewImageColumn34 - - toolStripContainer1.RightToolStripPanel + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + dataGridViewTextBoxColumn59 - - Copy to Clipboard + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 135 + + dataGridViewImageColumn35 - - Color + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Tahoma, 8.25pt + + dataGridViewTextBoxColumn60 - - PeakColor + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 2 + + dataGridViewImageColumn36 - - 10 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + dataGridViewTextBoxColumn61 - - 22 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 30 + + dataGridViewImageColumn37 - + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 4, 4, 4 - - - 22 - - - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAS - dAAAEnQB3mYfeAAAAgNJREFUOE+lkutLk2EYxvePhJaHShFBUTEPiCieQOmDiEZgrEbpYGiCQxkqA80I - RUkUEZ0YRMS+DDI70MkTmzJnDc8iU8QT2mAEItnle90wHwTDyBduXnie5/rd133Q4ZKfAJqHFs9E08A8 - zD1emDpmYXjqRlnTFIrMk8iuGkNaxWekGEaQrHecBfw+/vPXODw6hj9whN2fh/Bt/8LSRgA3cxr/DeBZ - 9kvmTNMoHGNbIrYN+3Aj23IxgJkpds0doP3VstgmsNexhutZ9QrAms8T0zYzU5xXM46kcjsmvfvoeL2i - AeoUgA07T8yaaZuZKab1rzN74jgys1YB2O2gmBZzH49LODXrrJlnzEzxe9cOLH1ziMioVgCOiuIFX0CE - Q+/WYf+yieiCFrRp9tkwxnP7Kt5MbKGm6wfC000KwDlTXNLgEvHMkh+Db32o7fYivtQm1l9+3IBOp5P7 - yjYPwlKNCsAluWudxgvtknb5t9oWcL/VLU2Mvd2JFq3uqs7vAtE/ceNayiMF4KiYMSjmY2O7B4Ua+NaD - YQGEJumRbvyG1IcfBHI12aAAXM8R57aIWTNrLLY4tfNPiCvpR1SeVeu6WWzHFD6THSDwFMDdpmUG62NJ - PKM4Or9ZxBxb8H8l7g5CEu8pAOfM3WanSeeS8CFHxW4zM2umbWamOCShXAH+/wNOANABIDUxWnDPAAAA - AElFTkSuQmCC - - - - 9 + + dataGridViewTextBoxColumn62 - - 10 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + dataGridViewImageColumn38 - - 20 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Cold-Warm scale + + dataGridViewTextBoxColumn63 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewTextBoxColumn51 + + dataGridViewImageColumn39 - - 10 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - flowLayoutPanel1 + + dataGridViewTextBoxColumn64 - - 8 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + + dataGridViewImageColumn40 - - Color + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + dataGridViewTextBoxColumn65 - - Crystal + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - toolStripContainer1.TopToolStripPanel + + dataGridViewImageColumn41 - - 5 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewImageColumn85 + + dataGridViewTextBoxColumn66 - - 4, 5, 4, 5 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 20 + + dataGridViewImageColumn42 - - dataGridViewTextBoxColumn98 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 11 + + dataGridViewTextBoxColumn67 - - 10 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + dataGridViewImageColumn43 - - + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 4, 4, 4 + + dataGridViewTextBoxColumn68 - - 59, 27 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - PeakColor + + dataGridViewImageColumn44 - - 4, 4, 4, 4 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewTextBoxColumn35 + + dataGridViewTextBoxColumn69 - - Crystal + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 22 + + dataGridViewImageColumn45 - - tabPage3 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + dataGridViewTextBoxColumn70 - - 99, 27 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewTextBoxColumn99 + + dataGridViewImageColumn46 - - Color + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewTextBoxColumn57 + + dataGridViewTextBoxColumn71 - - 22 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewImageColumn71 + + dataGridViewImageColumn47 - - Crystal + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + dataGridViewTextBoxColumn72 - + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + dataGridViewImageColumn48 - - 10 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 25, 29 + + dataGridViewTextBoxColumn73 - - 68, 23 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + dataGridViewImageColumn49 - - label24 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 450, 360 + + dataGridViewTextBoxColumn74 - - toolStripButtonAtomicPositonFinder + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + timerBlinkDiffraction - - Maximum value of verticall axis. -You can set the limit value in right-click menu. + + System.Windows.Forms.Timer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + dataGridViewImageColumn51 - - tabPage3 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 20 + + dataGridViewTextBoxColumn76 - - 4, 4, 4, 4 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + dataGridViewImageColumn52 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Profile + + dataGridViewTextBoxColumn77 - - aboutMeToolStripMenuItem + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 1 + + dataGridViewImageColumn50 - - 42 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 22 + + dataGridViewTextBoxColumn75 - - Crystal + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Color + + dataGridViewImageColumn53 - + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + dataGridViewTextBoxColumn78 - - NoControl + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + dataGridViewImageColumn54 - - 128 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + dataGridViewTextBoxColumn79 - - 16, 105 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 22 + + dataGridViewImageColumn55 - - 4, 4, 4, 4 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + dataGridViewTextBoxColumn80 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + dataGridViewImageColumn56 - - dataGridViewImageColumn33 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Color + + dataGridViewTextBoxColumn81 + + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Arial, 9.75pt + + dataGridViewImageColumn57 - - 131 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - PeakColor + + dataGridViewTextBoxColumn82 - - toolStripStatusLabelCalcTime + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.DataGridView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + dataGridViewImageColumn58 - - Crystal + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + dataGridViewTextBoxColumn83 - - tableLayoutPanel2 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 0, 4, 0 + + dataGridViewImageColumn59 - - 10 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Profile + + dataGridViewTextBoxColumn84 - - Crystal + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - False + + dataGridViewImageColumn60 - - 10 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 3 + + dataGridViewTextBoxColumn85 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 dataGridViewImageColumn61 - - 4, 0, 4, 0 - - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Crystal + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Segoe UI Symbol, 9.75pt + + dataGridViewTextBoxColumn86 - - Read crystals (as a new list) + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewTextBoxColumn36 + + dataGridViewImageColumn62 - - 282, 38 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + dataGridViewTextBoxColumn87 - - 20 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + dataGridViewImageColumn63 - + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataSet + + dataGridViewTextBoxColumn88 - + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Segoe UI Symbol, 9.75pt - - - Segoe UI Symbol, 9pt - - - 1000, 29 + + dataGridViewImageColumn64 - - 23 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewTextBoxColumn18 + + dataGridViewTextBoxColumn89 - - 10 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Crystallography.Controls.NumericBox, Crystallography.Controls, Version=2020.10.15.835, Culture=neutral, PublicKeyToken=null + + dataGridViewImageColumn65 - + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - printDialog1 + + dataGridViewTextBoxColumn90 - - System.Windows.Forms.ToolTip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + dataGridViewImageColumn66 - + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + dataGridViewTextBoxColumn91 - - dataGridViewImageColumn63 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 4, 4, 4 + + dataGridViewImageColumn67 - - + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - PeakColor + + dataGridViewTextBoxColumn92 - - 10 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 5 + + dataGridViewImageColumn68 - - 20 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + dataGridViewTextBoxColumn93 - - Crystal list. - Diffraction peaks of the checked crystals are visible on the main profile viewer. - Right double clicks eneble/unable blinking mode. - Detailed crystal information can be checked by "Crystal Parameter". + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Segoe UI Symbol, 9.75pt + + dataGridViewImageColumn69 - + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + dataGridViewTextBoxColumn94 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewTextBoxColumn23 + + dataGridViewImageColumn70 - - 22 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - label21 + + dataGridViewTextBoxColumn95 - - 10 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewTextBoxColumn37 + + dataGridViewImageColumn71 - - dataGridViewImageColumn16 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - splitContainer1.Panel1 + + dataGridViewTextBoxColumn96 - - Segoe UI Symbol, 9.75pt + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 75, 23 + + dataGridViewImageColumn72 - - 10 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripContainer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + dataGridViewTextBoxColumn97 - - System.Windows.Forms.PrintDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Show scale line + + dataGridViewImageColumn73 - - Crystallography.Controls.NumericBox, Crystallography.Controls, Version=2020.10.15.835, Culture=neutral, PublicKeyToken=null + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + dataGridViewTextBoxColumn98 - - 4, 4, 4, 4 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Unrolled Image + + dataGridViewImageColumn74 - + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Crystal + + dataGridViewTextBoxColumn99 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 4, 4, 4 + + dataGridViewImageColumn75 - - toolTip + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + dataGridViewTextBoxColumn100 - + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + dataGridViewImageColumn76 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + dataGridViewTextBoxColumn101 - - dataGridViewImageColumn72 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0, 0 + + dataGridViewImageColumn77 - - 10 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + dataGridViewTextBoxColumn102 - - 10 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + dataGridViewImageColumn78 - - 20 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox1 + + dataGridViewTextBoxColumn103 - - Color + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 4, 4, 4 + + dataGridViewImageColumn79 - - Single Profile + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 22 + + dataGridViewTextBoxColumn104 - - dataGridViewTextBoxColumn30 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Segoe UI Symbol, 9.75pt + + dataGridViewImageColumn80 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Crystal + + dataGridViewTextBoxColumn105 - - 0 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Crystallography.Controls.ColorControl, Crystallography.Controls, Version=2020.10.15.835, Culture=neutral, PublicKeyToken=null + + dataGridViewImageColumn82 - - comboBoxScale1 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 6, 53 + + dataGridViewTextBoxColumn107 - - dataGridViewImageColumn47 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + dataGridViewImageColumn81 - - 22 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + dataGridViewTextBoxColumn106 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 4, 4, 4 + + dataGridViewImageColumn83 - + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - dataGridViewTextBoxColumn100 + + dataGridViewTextBoxColumn108 - - 4, 4, 4, 4 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + dataGridViewImageColumn84 - - Editor + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - FormMain + + dataGridViewTextBoxColumn109 - - flowLayoutPanel1 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 1 + + dataGridViewImageColumn85 - - Segoe UI Symbol, 9.75pt + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox3 + + dataGridViewTextBoxColumn110 - - 6, 39 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + dataGridViewImageColumn86 - - groupBox1 + + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + dataGridViewTextBoxColumn111 - - 20 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 269, 753 + + dataGridViewImageColumn87 - + System.Windows.Forms.DataGridViewImageColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Crystal - - - 1211, 870 + + dataGridViewTextBoxColumn112 - - Segoe UI Symbol, 9.75pt + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + FormMain - - True + + System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True - - - 762, 13 - - - True - - - 256, 13 - - - 116, 10 - - - True - - - 10, 10 - - - 618, 10 - - - 1114, 7 - - - 75 - - - 984, 9 - - - ja - - - 379, 10 - - - 17, 51 - - - 509, 9 - \ No newline at end of file diff --git a/PDIndexer/Properties/AssemblyInfo.cs b/PDIndexer/Properties/AssemblyInfo.cs index 7f16bdf..47a70c2 100644 --- a/PDIndexer/Properties/AssemblyInfo.cs +++ b/PDIndexer/Properties/AssemblyInfo.cs @@ -27,7 +27,7 @@ // ɂ悤ɁA'*' gāAׂĂ̒lw肷邩A // rhуrWԍlɂ邱Ƃł܂B -[assembly: AssemblyVersion("2020.10.15.0839")] +[assembly: AssemblyVersion("2020.10.16.0833")] // // AZuɏɂ́AgpL[w肵Ȃ΂Ȃ܂B @@ -57,6 +57,6 @@ [assembly: AssemblyDelaySign(false)] [assembly: AssemblyKeyFile("")] [assembly: AssemblyKeyName("")] -[assembly: AssemblyFileVersion("2020.10.15.0839")] +[assembly: AssemblyFileVersion("2020.10.16.0833")] [assembly: ComVisible(false)] diff --git a/PDIndexer/Version.cs b/PDIndexer/Version.cs index 8f61b6d..6a904c0 100644 --- a/PDIndexer/Version.cs +++ b/PDIndexer/Version.cs @@ -27,6 +27,7 @@ static public string RecentHistory /// static public string History = "History" + + "\r\n ver4.389(2020/10/16) Improved: Speed up drawing profiles. Added: New macro functions." + "\r\n ver4.388(2020/10/15) Added new EOS foumulae (4th BM, AP2, Keane)." + "\r\n ver4.387(2020/10/14) Added three EOS for Re (Thank you, Dr. Sakai), and fixed minor bugs." + "\r\n ver4.386(2020/09/04) Fixed minor bugs. Thank you, Dr. Farla!" +