From bae7077f5c91406082ae378b7f5098d60aae3dbf Mon Sep 17 00:00:00 2001 From: Michael Johne Date: Thu, 23 Nov 2023 11:09:43 +0100 Subject: [PATCH] Add files via upload --- AppInfoForm.cs | 8 +- AssemblyInfo.cs | 60 +- CheckMpcorbDatForm.cs | 19 +- CopyDataToClipboardForm.Designer.cs | 909 ++-- CopyDataToClipboardForm.resx | 50 +- DatabaseInformationForm.cs | 1 + DownloadUpdateForm.Designer.cs | 745 +-- DownloadUpdateForm.cs | 20 +- DownloadUpdateForm.resx | 68 +- ExportDataSheetForm.cs | 1 + GlobalSuppressions.cs | 8 + Planetoid-DB.csproj | 18 +- PlanetoidDBForm.Designer.cs | 6465 +++++++++++++-------------- PlanetoidDBForm.cs | 26 +- PlanetoidDBForm.resx | 50 +- Program.cs | 1 + SplashScreenForm.cs | 10 +- 17 files changed, 4183 insertions(+), 4276 deletions(-) create mode 100644 GlobalSuppressions.cs diff --git a/AppInfoForm.cs b/AppInfoForm.cs index 58e6f1d..0b8deb4 100644 --- a/AppInfoForm.cs +++ b/AppInfoForm.cs @@ -67,10 +67,10 @@ private void ClearStatusbar() /// private void AppInfoForm_Load(object sender, EventArgs e) { - labelTitle.Text = new AssemblyInfo().AssemblyProduct; - labelVersion.Text = string.Format(format: I10nStrings.VersionTemplate, arg0: new AssemblyInfo().AssemblyVersion); - labelDescription.Text = new AssemblyInfo().AssemblyDescription; - labelCopyright.Text = new AssemblyInfo().AssemblyCopyright; + labelTitle.Text = AssemblyInfo.AssemblyProduct; + labelVersion.Text = string.Format(format: I10nStrings.VersionTemplate, arg0: AssemblyInfo.AssemblyVersion); + labelDescription.Text = AssemblyInfo.AssemblyDescription; + labelCopyright.Text = AssemblyInfo.AssemblyCopyright; } /// diff --git a/AssemblyInfo.cs b/AssemblyInfo.cs index f27fc50..803e72d 100644 --- a/AssemblyInfo.cs +++ b/AssemblyInfo.cs @@ -1,28 +1,27 @@ -using System.Diagnostics; +using System.IO; using System.Reflection; namespace Planetoid_DB { /// - /// + /// Provide some assembly information /// - [DebuggerDisplay(value: "{" + nameof(GetDebuggerDisplay) + "(),nq}")] - - public class AssemblyInfo + public static class AssemblyInfo { - #region Assemblyattributaccessoren + #region Assembly attribute accessors /// - /// + /// Return the title of the assembly /// - public string AssemblyTitle + public static string AssemblyTitle { get { - object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(attributeType: typeof(AssemblyTitleAttribute), inherit: false); + object[] attributes = Assembly.GetExecutingAssembly() + .GetCustomAttributes(attributeType: typeof(AssemblyTitleAttribute), inherit: false); if (attributes.Length > 0) { - AssemblyTitleAttribute titleAttribute = (AssemblyTitleAttribute)attributes[0]; + AssemblyTitleAttribute titleAttribute = attributes[0] as AssemblyTitleAttribute; if (!string.IsNullOrEmpty(value: titleAttribute.Title)) { return titleAttribute.Title; @@ -33,64 +32,61 @@ public string AssemblyTitle } /// - /// + /// Return the version of the assembly /// - public string AssemblyVersion => Assembly.GetExecutingAssembly().GetName().Version.ToString(); + public static string AssemblyVersion => Assembly.GetExecutingAssembly().GetName().Version.ToString(); /// - /// + /// Return the description of the assembly /// - public string AssemblyDescription + public static string AssemblyDescription { get { - object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(attributeType: typeof(AssemblyDescriptionAttribute), inherit: false); + object[] attributes = Assembly.GetExecutingAssembly() + .GetCustomAttributes(attributeType: typeof(AssemblyDescriptionAttribute), inherit: false); return attributes.Length == 0 ? string.Empty : ((AssemblyDescriptionAttribute)attributes[0]).Description; } } /// - /// + /// Return the product name of the assembly /// - public string AssemblyProduct + public static string AssemblyProduct { get { - object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(attributeType: typeof(AssemblyProductAttribute), inherit: false); + object[] attributes = Assembly.GetExecutingAssembly() + .GetCustomAttributes(attributeType: typeof(AssemblyProductAttribute), inherit: false); return attributes.Length == 0 ? string.Empty : ((AssemblyProductAttribute)attributes[0]).Product; } } /// - /// + /// Return the copyright of the assembly /// - public string AssemblyCopyright + public static string AssemblyCopyright { get { - object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(attributeType: typeof(AssemblyCopyrightAttribute), inherit: false); + object[] attributes = Assembly.GetExecutingAssembly() + .GetCustomAttributes(attributeType: typeof(AssemblyCopyrightAttribute), inherit: false); return attributes.Length == 0 ? string.Empty : ((AssemblyCopyrightAttribute)attributes[0]).Copyright; } } /// - /// + /// Return the company name of the assembly /// - public string AssemblyCompany + public static string AssemblyCompany { get { - object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(attributeType: typeof(AssemblyCompanyAttribute), inherit: false); + object[] attributes = Assembly.GetExecutingAssembly() + .GetCustomAttributes(attributeType: typeof(AssemblyCompanyAttribute), inherit: false); return attributes.Length == 0 ? string.Empty : ((AssemblyCompanyAttribute)attributes[0]).Company; } } - - /// - /// - /// - /// - private string GetDebuggerDisplay() => ToString(); - #endregion } -} \ No newline at end of file +} diff --git a/CheckMpcorbDatForm.cs b/CheckMpcorbDatForm.cs index b0d8eb4..ab82c02 100644 --- a/CheckMpcorbDatForm.cs +++ b/CheckMpcorbDatForm.cs @@ -1,4 +1,5 @@ using System.Diagnostics; +using System.IO; using System.Net; using Krypton.Toolkit; @@ -66,23 +67,21 @@ private void ClearStatusbar() /// private static DateTime GetLastModified(Uri uri) { - HttpWebRequest req = (HttpWebRequest)WebRequest.Create(requestUri: uri); - HttpWebResponse resp = (HttpWebResponse)req.GetResponse(); - resp.Close(); - return resp.LastModified; + HttpWebRequest request = (HttpWebRequest)WebRequest.Create(requestUri: uri); + HttpWebResponse response = (HttpWebResponse)request.GetResponse(); + return response.StatusCode == HttpStatusCode.OK ? response.LastModified : new DateTime(year: 0, month: 0, day: 0, hour: 0, minute: 0, second: 0); } /// /// /// /// - /// - private static long GetContentLength(Uri uri) + /// + private long GetContentLength(Uri uri) { - HttpWebRequest req = (HttpWebRequest)WebRequest.Create(requestUri: uri); - HttpWebResponse resp = (HttpWebResponse)req.GetResponse(); - resp.Close(); - return Convert.ToInt64(value: resp.ContentLength); + HttpWebRequest request = (HttpWebRequest)WebRequest.Create(requestUri: uri); + HttpWebResponse response = (HttpWebResponse)request.GetResponse(); + return response.StatusCode == HttpStatusCode.OK ? Convert.ToInt64(value: response.ContentLength) : 0; } #endregion diff --git a/CopyDataToClipboardForm.Designer.cs b/CopyDataToClipboardForm.Designer.cs index 45ec9c0..3edc6ce 100644 --- a/CopyDataToClipboardForm.Designer.cs +++ b/CopyDataToClipboardForm.Designer.cs @@ -31,514 +31,560 @@ protected override void Dispose(bool disposing) /// private void InitializeComponent() { - this.components = new System.ComponentModel.Container(); + components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CopyDataToClipboardForm)); - this.buttonIndexNumber = new Krypton.Toolkit.KryptonButton(); - this.toolTip = new System.Windows.Forms.ToolTip(this.components); - this.buttonReadableDesignation = new Krypton.Toolkit.KryptonButton(); - this.buttonEpoch = new Krypton.Toolkit.KryptonButton(); - this.buttonMeanAnomaly = new Krypton.Toolkit.KryptonButton(); - this.buttonArgumentOfPerihelion = new Krypton.Toolkit.KryptonButton(); - this.buttonLongitudeOfTheAscendingNode = new Krypton.Toolkit.KryptonButton(); - this.buttonInclination = new Krypton.Toolkit.KryptonButton(); - this.buttonOrbitalEccentricity = new Krypton.Toolkit.KryptonButton(); - this.buttonMeanDailyMotion = new Krypton.Toolkit.KryptonButton(); - this.buttonSemimajorAxis = new Krypton.Toolkit.KryptonButton(); - this.buttonAbsoluteMagnitude = new Krypton.Toolkit.KryptonButton(); - this.buttonSlopeParameter = new Krypton.Toolkit.KryptonButton(); - this.buttonReference = new Krypton.Toolkit.KryptonButton(); - this.buttonObservationSpan = new Krypton.Toolkit.KryptonButton(); - this.buttonNumberOfObservations = new Krypton.Toolkit.KryptonButton(); - this.buttonNumberOfOppositions = new Krypton.Toolkit.KryptonButton(); - this.buttonFlags = new Krypton.Toolkit.KryptonButton(); - this.buttonComputername = new Krypton.Toolkit.KryptonButton(); - this.buttonRmsResidual = new Krypton.Toolkit.KryptonButton(); - this.buttonDateOfLastObservation = new Krypton.Toolkit.KryptonButton(); - this.panel = new Krypton.Toolkit.KryptonPanel(); - this.statusStrip = new Krypton.Toolkit.KryptonStatusStrip(); - this.labelInformation = new System.Windows.Forms.ToolStripStatusLabel(); - ((System.ComponentModel.ISupportInitialize)(this.panel)).BeginInit(); - this.panel.SuspendLayout(); - this.statusStrip.SuspendLayout(); - this.SuspendLayout(); + buttonIndexNumber = new Krypton.Toolkit.KryptonButton(); + toolTip = new ToolTip(components); + buttonReadableDesignation = new Krypton.Toolkit.KryptonButton(); + buttonEpoch = new Krypton.Toolkit.KryptonButton(); + buttonMeanAnomaly = new Krypton.Toolkit.KryptonButton(); + buttonArgumentOfPerihelion = new Krypton.Toolkit.KryptonButton(); + buttonLongitudeOfTheAscendingNode = new Krypton.Toolkit.KryptonButton(); + buttonInclination = new Krypton.Toolkit.KryptonButton(); + buttonOrbitalEccentricity = new Krypton.Toolkit.KryptonButton(); + buttonMeanDailyMotion = new Krypton.Toolkit.KryptonButton(); + buttonSemimajorAxis = new Krypton.Toolkit.KryptonButton(); + buttonAbsoluteMagnitude = new Krypton.Toolkit.KryptonButton(); + buttonSlopeParameter = new Krypton.Toolkit.KryptonButton(); + buttonReference = new Krypton.Toolkit.KryptonButton(); + buttonObservationSpan = new Krypton.Toolkit.KryptonButton(); + buttonNumberOfObservations = new Krypton.Toolkit.KryptonButton(); + buttonNumberOfOppositions = new Krypton.Toolkit.KryptonButton(); + buttonFlags = new Krypton.Toolkit.KryptonButton(); + buttonComputername = new Krypton.Toolkit.KryptonButton(); + buttonRmsResidual = new Krypton.Toolkit.KryptonButton(); + buttonDateOfLastObservation = new Krypton.Toolkit.KryptonButton(); + panel = new Krypton.Toolkit.KryptonPanel(); + statusStrip = new Krypton.Toolkit.KryptonStatusStrip(); + labelInformation = new ToolStripStatusLabel(); + toolStripContainer = new ToolStripContainer(); + ((System.ComponentModel.ISupportInitialize)panel).BeginInit(); + panel.SuspendLayout(); + statusStrip.SuspendLayout(); + toolStripContainer.BottomToolStripPanel.SuspendLayout(); + toolStripContainer.ContentPanel.SuspendLayout(); + toolStripContainer.SuspendLayout(); + SuspendLayout(); // // buttonIndexNumber // - this.buttonIndexNumber.AccessibleDescription = "Copy to clipboard: Index No."; - this.buttonIndexNumber.AccessibleName = "Copy to clipboard: Index No."; - this.buttonIndexNumber.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.buttonIndexNumber.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; - this.buttonIndexNumber.CornerRoundingRadius = -1F; - this.buttonIndexNumber.Location = new System.Drawing.Point(12, 12); - this.buttonIndexNumber.Name = "buttonIndexNumber"; - this.buttonIndexNumber.Size = new System.Drawing.Size(262, 25); - this.buttonIndexNumber.TabIndex = 0; - this.toolTip.SetToolTip(this.buttonIndexNumber, "Index No."); - this.buttonIndexNumber.Values.Text = "Index No."; - this.buttonIndexNumber.Click += new System.EventHandler(this.ButtonIndexNumber_Click); - this.buttonIndexNumber.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonIndexNumber.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.buttonIndexNumber.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonIndexNumber.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + buttonIndexNumber.AccessibleDescription = "Copy to clipboard: Index No."; + buttonIndexNumber.AccessibleName = "Copy to clipboard: Index No."; + buttonIndexNumber.AccessibleRole = AccessibleRole.PushButton; + buttonIndexNumber.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; + buttonIndexNumber.CornerRoundingRadius = -1F; + buttonIndexNumber.Location = new Point(14, 14); + buttonIndexNumber.Margin = new Padding(4, 3, 4, 3); + buttonIndexNumber.Name = "buttonIndexNumber"; + buttonIndexNumber.Size = new Size(306, 29); + buttonIndexNumber.TabIndex = 0; + toolTip.SetToolTip(buttonIndexNumber, "Index No."); + buttonIndexNumber.Values.Text = "Index No."; + buttonIndexNumber.Click += ButtonIndexNumber_Click; + buttonIndexNumber.Enter += SetStatusbar_Enter; + buttonIndexNumber.Leave += ClearStatusbar_Leave; + buttonIndexNumber.MouseEnter += SetStatusbar_Enter; + buttonIndexNumber.MouseLeave += ClearStatusbar_Leave; // // buttonReadableDesignation // - this.buttonReadableDesignation.AccessibleDescription = "Copy to clipboard: Readable designation"; - this.buttonReadableDesignation.AccessibleName = "Copy to clipboard: Readable designation"; - this.buttonReadableDesignation.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.buttonReadableDesignation.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; - this.buttonReadableDesignation.CornerRoundingRadius = -1F; - this.buttonReadableDesignation.Location = new System.Drawing.Point(12, 43); - this.buttonReadableDesignation.Name = "buttonReadableDesignation"; - this.buttonReadableDesignation.Size = new System.Drawing.Size(262, 25); - this.buttonReadableDesignation.TabIndex = 1; - this.toolTip.SetToolTip(this.buttonReadableDesignation, "Readable designation"); - this.buttonReadableDesignation.Values.Text = "Readable designation"; - this.buttonReadableDesignation.Click += new System.EventHandler(this.ButtonReadableDesignation_Click); - this.buttonReadableDesignation.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonReadableDesignation.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.buttonReadableDesignation.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonReadableDesignation.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + buttonReadableDesignation.AccessibleDescription = "Copy to clipboard: Readable designation"; + buttonReadableDesignation.AccessibleName = "Copy to clipboard: Readable designation"; + buttonReadableDesignation.AccessibleRole = AccessibleRole.PushButton; + buttonReadableDesignation.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; + buttonReadableDesignation.CornerRoundingRadius = -1F; + buttonReadableDesignation.Location = new Point(14, 50); + buttonReadableDesignation.Margin = new Padding(4, 3, 4, 3); + buttonReadableDesignation.Name = "buttonReadableDesignation"; + buttonReadableDesignation.Size = new Size(306, 29); + buttonReadableDesignation.TabIndex = 1; + toolTip.SetToolTip(buttonReadableDesignation, "Readable designation"); + buttonReadableDesignation.Values.Text = "Readable designation"; + buttonReadableDesignation.Click += ButtonReadableDesignation_Click; + buttonReadableDesignation.Enter += SetStatusbar_Enter; + buttonReadableDesignation.Leave += ClearStatusbar_Leave; + buttonReadableDesignation.MouseEnter += SetStatusbar_Enter; + buttonReadableDesignation.MouseLeave += ClearStatusbar_Leave; // // buttonEpoch // - this.buttonEpoch.AccessibleDescription = "Copy to clipboard: Epoch (in packed form, .0 TT)"; - this.buttonEpoch.AccessibleName = "Copy to clipboard: Epoch (in packed form, .0 TT)"; - this.buttonEpoch.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.buttonEpoch.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; - this.buttonEpoch.CornerRoundingRadius = -1F; - this.buttonEpoch.Location = new System.Drawing.Point(12, 74); - this.buttonEpoch.Name = "buttonEpoch"; - this.buttonEpoch.Size = new System.Drawing.Size(262, 25); - this.buttonEpoch.TabIndex = 2; - this.toolTip.SetToolTip(this.buttonEpoch, "Epoch (in packed form, .0 TT)"); - this.buttonEpoch.Values.Text = "Epoch (in packed form, .0 TT)"; - this.buttonEpoch.Click += new System.EventHandler(this.ButtonEpoch_Click); - this.buttonEpoch.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonEpoch.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.buttonEpoch.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonEpoch.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + buttonEpoch.AccessibleDescription = "Copy to clipboard: Epoch (in packed form, .0 TT)"; + buttonEpoch.AccessibleName = "Copy to clipboard: Epoch (in packed form, .0 TT)"; + buttonEpoch.AccessibleRole = AccessibleRole.PushButton; + buttonEpoch.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; + buttonEpoch.CornerRoundingRadius = -1F; + buttonEpoch.Location = new Point(14, 85); + buttonEpoch.Margin = new Padding(4, 3, 4, 3); + buttonEpoch.Name = "buttonEpoch"; + buttonEpoch.Size = new Size(306, 29); + buttonEpoch.TabIndex = 2; + toolTip.SetToolTip(buttonEpoch, "Epoch (in packed form, .0 TT)"); + buttonEpoch.Values.Text = "Epoch (in packed form, .0 TT)"; + buttonEpoch.Click += ButtonEpoch_Click; + buttonEpoch.Enter += SetStatusbar_Enter; + buttonEpoch.Leave += ClearStatusbar_Leave; + buttonEpoch.MouseEnter += SetStatusbar_Enter; + buttonEpoch.MouseLeave += ClearStatusbar_Leave; // // buttonMeanAnomaly // - this.buttonMeanAnomaly.AccessibleDescription = "Copy to clipboard: Mean anomaly at the epoch (degrees)"; - this.buttonMeanAnomaly.AccessibleName = "Copy to clipboard: Mean anomaly at the epoch (degrees)"; - this.buttonMeanAnomaly.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.buttonMeanAnomaly.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; - this.buttonMeanAnomaly.CornerRoundingRadius = -1F; - this.buttonMeanAnomaly.Location = new System.Drawing.Point(12, 105); - this.buttonMeanAnomaly.Name = "buttonMeanAnomaly"; - this.buttonMeanAnomaly.Size = new System.Drawing.Size(262, 25); - this.buttonMeanAnomaly.TabIndex = 3; - this.toolTip.SetToolTip(this.buttonMeanAnomaly, "Mean anomaly at the epoch (degrees)"); - this.buttonMeanAnomaly.Values.Text = "Mean anomaly at the epoch (°)"; - this.buttonMeanAnomaly.Click += new System.EventHandler(this.ButtonMeanAnomaly_Click); - this.buttonMeanAnomaly.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonMeanAnomaly.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.buttonMeanAnomaly.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonMeanAnomaly.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + buttonMeanAnomaly.AccessibleDescription = "Copy to clipboard: Mean anomaly at the epoch (degrees)"; + buttonMeanAnomaly.AccessibleName = "Copy to clipboard: Mean anomaly at the epoch (degrees)"; + buttonMeanAnomaly.AccessibleRole = AccessibleRole.PushButton; + buttonMeanAnomaly.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; + buttonMeanAnomaly.CornerRoundingRadius = -1F; + buttonMeanAnomaly.Location = new Point(14, 121); + buttonMeanAnomaly.Margin = new Padding(4, 3, 4, 3); + buttonMeanAnomaly.Name = "buttonMeanAnomaly"; + buttonMeanAnomaly.Size = new Size(306, 29); + buttonMeanAnomaly.TabIndex = 3; + toolTip.SetToolTip(buttonMeanAnomaly, "Mean anomaly at the epoch (degrees)"); + buttonMeanAnomaly.Values.Text = "Mean anomaly at the epoch (°)"; + buttonMeanAnomaly.Click += ButtonMeanAnomaly_Click; + buttonMeanAnomaly.Enter += SetStatusbar_Enter; + buttonMeanAnomaly.Leave += ClearStatusbar_Leave; + buttonMeanAnomaly.MouseEnter += SetStatusbar_Enter; + buttonMeanAnomaly.MouseLeave += ClearStatusbar_Leave; // // buttonArgumentOfPerihelion // - this.buttonArgumentOfPerihelion.AccessibleDescription = "Copy to clipboard: Argument of perihelion, J2000.0 (degrees)"; - this.buttonArgumentOfPerihelion.AccessibleName = "Copy to clipboard: Argument of perihelion, J2000.0 (degrees)"; - this.buttonArgumentOfPerihelion.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.buttonArgumentOfPerihelion.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; - this.buttonArgumentOfPerihelion.CornerRoundingRadius = -1F; - this.buttonArgumentOfPerihelion.Location = new System.Drawing.Point(12, 136); - this.buttonArgumentOfPerihelion.Name = "buttonArgumentOfPerihelion"; - this.buttonArgumentOfPerihelion.Size = new System.Drawing.Size(262, 25); - this.buttonArgumentOfPerihelion.TabIndex = 4; - this.toolTip.SetToolTip(this.buttonArgumentOfPerihelion, "Argument of perihelion, J2000.0 (degrees)"); - this.buttonArgumentOfPerihelion.Values.Text = "Argument of perihelion, J2000.0 (°)"; - this.buttonArgumentOfPerihelion.Click += new System.EventHandler(this.ButtonArgumentOfPerihelion_Click); - this.buttonArgumentOfPerihelion.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonArgumentOfPerihelion.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.buttonArgumentOfPerihelion.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonArgumentOfPerihelion.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + buttonArgumentOfPerihelion.AccessibleDescription = "Copy to clipboard: Argument of perihelion, J2000.0 (degrees)"; + buttonArgumentOfPerihelion.AccessibleName = "Copy to clipboard: Argument of perihelion, J2000.0 (degrees)"; + buttonArgumentOfPerihelion.AccessibleRole = AccessibleRole.PushButton; + buttonArgumentOfPerihelion.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; + buttonArgumentOfPerihelion.CornerRoundingRadius = -1F; + buttonArgumentOfPerihelion.Location = new Point(14, 157); + buttonArgumentOfPerihelion.Margin = new Padding(4, 3, 4, 3); + buttonArgumentOfPerihelion.Name = "buttonArgumentOfPerihelion"; + buttonArgumentOfPerihelion.Size = new Size(306, 29); + buttonArgumentOfPerihelion.TabIndex = 4; + toolTip.SetToolTip(buttonArgumentOfPerihelion, "Argument of perihelion, J2000.0 (degrees)"); + buttonArgumentOfPerihelion.Values.Text = "Argument of perihelion, J2000.0 (°)"; + buttonArgumentOfPerihelion.Click += ButtonArgumentOfPerihelion_Click; + buttonArgumentOfPerihelion.Enter += SetStatusbar_Enter; + buttonArgumentOfPerihelion.Leave += ClearStatusbar_Leave; + buttonArgumentOfPerihelion.MouseEnter += SetStatusbar_Enter; + buttonArgumentOfPerihelion.MouseLeave += ClearStatusbar_Leave; // // buttonLongitudeOfTheAscendingNode // - this.buttonLongitudeOfTheAscendingNode.AccessibleDescription = "Copy to clipboard: Longitude of the ascending node, J2000.0 (degrees)"; - this.buttonLongitudeOfTheAscendingNode.AccessibleName = "Copy to clipboard: Longitude of the ascending node, J2000.0 (degrees)"; - this.buttonLongitudeOfTheAscendingNode.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.buttonLongitudeOfTheAscendingNode.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; - this.buttonLongitudeOfTheAscendingNode.CornerRoundingRadius = -1F; - this.buttonLongitudeOfTheAscendingNode.Location = new System.Drawing.Point(12, 167); - this.buttonLongitudeOfTheAscendingNode.Name = "buttonLongitudeOfTheAscendingNode"; - this.buttonLongitudeOfTheAscendingNode.Size = new System.Drawing.Size(262, 25); - this.buttonLongitudeOfTheAscendingNode.TabIndex = 5; - this.toolTip.SetToolTip(this.buttonLongitudeOfTheAscendingNode, "Longitude of the ascending node, J2000.0 (degrees)"); - this.buttonLongitudeOfTheAscendingNode.Values.Text = "Longitude of the ascending node, J2000.0 (°)"; - this.buttonLongitudeOfTheAscendingNode.Click += new System.EventHandler(this.ButtonLongitudeOfTheAscendingNode_Click); - this.buttonLongitudeOfTheAscendingNode.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonLongitudeOfTheAscendingNode.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.buttonLongitudeOfTheAscendingNode.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonLongitudeOfTheAscendingNode.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + buttonLongitudeOfTheAscendingNode.AccessibleDescription = "Copy to clipboard: Longitude of the ascending node, J2000.0 (degrees)"; + buttonLongitudeOfTheAscendingNode.AccessibleName = "Copy to clipboard: Longitude of the ascending node, J2000.0 (degrees)"; + buttonLongitudeOfTheAscendingNode.AccessibleRole = AccessibleRole.PushButton; + buttonLongitudeOfTheAscendingNode.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; + buttonLongitudeOfTheAscendingNode.CornerRoundingRadius = -1F; + buttonLongitudeOfTheAscendingNode.Location = new Point(14, 193); + buttonLongitudeOfTheAscendingNode.Margin = new Padding(4, 3, 4, 3); + buttonLongitudeOfTheAscendingNode.Name = "buttonLongitudeOfTheAscendingNode"; + buttonLongitudeOfTheAscendingNode.Size = new Size(306, 29); + buttonLongitudeOfTheAscendingNode.TabIndex = 5; + toolTip.SetToolTip(buttonLongitudeOfTheAscendingNode, "Longitude of the ascending node, J2000.0 (degrees)"); + buttonLongitudeOfTheAscendingNode.Values.Text = "Longitude of the ascending node, J2000.0 (°)"; + buttonLongitudeOfTheAscendingNode.Click += ButtonLongitudeOfTheAscendingNode_Click; + buttonLongitudeOfTheAscendingNode.Enter += SetStatusbar_Enter; + buttonLongitudeOfTheAscendingNode.Leave += ClearStatusbar_Leave; + buttonLongitudeOfTheAscendingNode.MouseEnter += SetStatusbar_Enter; + buttonLongitudeOfTheAscendingNode.MouseLeave += ClearStatusbar_Leave; // // buttonInclination // - this.buttonInclination.AccessibleDescription = "Copy to clipboard: Inclination to the ecliptic, J2000.0 (degrees)"; - this.buttonInclination.AccessibleName = "Copy to clipboard: Inclination to the ecliptic, J2000.0 (degrees)"; - this.buttonInclination.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.buttonInclination.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; - this.buttonInclination.CornerRoundingRadius = -1F; - this.buttonInclination.Location = new System.Drawing.Point(12, 198); - this.buttonInclination.Name = "buttonInclination"; - this.buttonInclination.Size = new System.Drawing.Size(262, 25); - this.buttonInclination.TabIndex = 6; - this.toolTip.SetToolTip(this.buttonInclination, "Inclination to the ecliptic, J2000.0 (degrees)"); - this.buttonInclination.Values.Text = "Inclination to the ecliptic, J2000.0 (°)"; - this.buttonInclination.Click += new System.EventHandler(this.ButtonInclination_Click); - this.buttonInclination.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonInclination.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.buttonInclination.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonInclination.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + buttonInclination.AccessibleDescription = "Copy to clipboard: Inclination to the ecliptic, J2000.0 (degrees)"; + buttonInclination.AccessibleName = "Copy to clipboard: Inclination to the ecliptic, J2000.0 (degrees)"; + buttonInclination.AccessibleRole = AccessibleRole.PushButton; + buttonInclination.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; + buttonInclination.CornerRoundingRadius = -1F; + buttonInclination.Location = new Point(14, 228); + buttonInclination.Margin = new Padding(4, 3, 4, 3); + buttonInclination.Name = "buttonInclination"; + buttonInclination.Size = new Size(306, 29); + buttonInclination.TabIndex = 6; + toolTip.SetToolTip(buttonInclination, "Inclination to the ecliptic, J2000.0 (degrees)"); + buttonInclination.Values.Text = "Inclination to the ecliptic, J2000.0 (°)"; + buttonInclination.Click += ButtonInclination_Click; + buttonInclination.Enter += SetStatusbar_Enter; + buttonInclination.Leave += ClearStatusbar_Leave; + buttonInclination.MouseEnter += SetStatusbar_Enter; + buttonInclination.MouseLeave += ClearStatusbar_Leave; // // buttonOrbitalEccentricity // - this.buttonOrbitalEccentricity.AccessibleDescription = "Copy to clipboard: Orbital eccentricity"; - this.buttonOrbitalEccentricity.AccessibleName = "Copy to clipboard: Orbital eccentricity"; - this.buttonOrbitalEccentricity.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.buttonOrbitalEccentricity.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; - this.buttonOrbitalEccentricity.CornerRoundingRadius = -1F; - this.buttonOrbitalEccentricity.Location = new System.Drawing.Point(12, 229); - this.buttonOrbitalEccentricity.Name = "buttonOrbitalEccentricity"; - this.buttonOrbitalEccentricity.Size = new System.Drawing.Size(262, 25); - this.buttonOrbitalEccentricity.TabIndex = 7; - this.toolTip.SetToolTip(this.buttonOrbitalEccentricity, "Orbital eccentricity"); - this.buttonOrbitalEccentricity.Values.Text = "Orbital eccentricity"; - this.buttonOrbitalEccentricity.Click += new System.EventHandler(this.ButtonOrbitalEccentricity_Click); - this.buttonOrbitalEccentricity.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonOrbitalEccentricity.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.buttonOrbitalEccentricity.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonOrbitalEccentricity.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + buttonOrbitalEccentricity.AccessibleDescription = "Copy to clipboard: Orbital eccentricity"; + buttonOrbitalEccentricity.AccessibleName = "Copy to clipboard: Orbital eccentricity"; + buttonOrbitalEccentricity.AccessibleRole = AccessibleRole.PushButton; + buttonOrbitalEccentricity.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; + buttonOrbitalEccentricity.CornerRoundingRadius = -1F; + buttonOrbitalEccentricity.Location = new Point(14, 264); + buttonOrbitalEccentricity.Margin = new Padding(4, 3, 4, 3); + buttonOrbitalEccentricity.Name = "buttonOrbitalEccentricity"; + buttonOrbitalEccentricity.Size = new Size(306, 29); + buttonOrbitalEccentricity.TabIndex = 7; + toolTip.SetToolTip(buttonOrbitalEccentricity, "Orbital eccentricity"); + buttonOrbitalEccentricity.Values.Text = "Orbital eccentricity"; + buttonOrbitalEccentricity.Click += ButtonOrbitalEccentricity_Click; + buttonOrbitalEccentricity.Enter += SetStatusbar_Enter; + buttonOrbitalEccentricity.Leave += ClearStatusbar_Leave; + buttonOrbitalEccentricity.MouseEnter += SetStatusbar_Enter; + buttonOrbitalEccentricity.MouseLeave += ClearStatusbar_Leave; // // buttonMeanDailyMotion // - this.buttonMeanDailyMotion.AccessibleDescription = "Copy to clipboard: Mean daily motion (degrees per day)"; - this.buttonMeanDailyMotion.AccessibleName = "Copy to clipboard: Mean daily motion (degrees per day)"; - this.buttonMeanDailyMotion.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.buttonMeanDailyMotion.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; - this.buttonMeanDailyMotion.CornerRoundingRadius = -1F; - this.buttonMeanDailyMotion.Location = new System.Drawing.Point(12, 260); - this.buttonMeanDailyMotion.Name = "buttonMeanDailyMotion"; - this.buttonMeanDailyMotion.Size = new System.Drawing.Size(262, 25); - this.buttonMeanDailyMotion.TabIndex = 8; - this.toolTip.SetToolTip(this.buttonMeanDailyMotion, "Mean daily motion (degrees per day)"); - this.buttonMeanDailyMotion.Values.Text = "Mean daily motion (°/day)"; - this.buttonMeanDailyMotion.Click += new System.EventHandler(this.ButtonMeanDailyMotion_Click); - this.buttonMeanDailyMotion.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonMeanDailyMotion.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.buttonMeanDailyMotion.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonMeanDailyMotion.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + buttonMeanDailyMotion.AccessibleDescription = "Copy to clipboard: Mean daily motion (degrees per day)"; + buttonMeanDailyMotion.AccessibleName = "Copy to clipboard: Mean daily motion (degrees per day)"; + buttonMeanDailyMotion.AccessibleRole = AccessibleRole.PushButton; + buttonMeanDailyMotion.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; + buttonMeanDailyMotion.CornerRoundingRadius = -1F; + buttonMeanDailyMotion.Location = new Point(14, 300); + buttonMeanDailyMotion.Margin = new Padding(4, 3, 4, 3); + buttonMeanDailyMotion.Name = "buttonMeanDailyMotion"; + buttonMeanDailyMotion.Size = new Size(306, 29); + buttonMeanDailyMotion.TabIndex = 8; + toolTip.SetToolTip(buttonMeanDailyMotion, "Mean daily motion (degrees per day)"); + buttonMeanDailyMotion.Values.Text = "Mean daily motion (°/day)"; + buttonMeanDailyMotion.Click += ButtonMeanDailyMotion_Click; + buttonMeanDailyMotion.Enter += SetStatusbar_Enter; + buttonMeanDailyMotion.Leave += ClearStatusbar_Leave; + buttonMeanDailyMotion.MouseEnter += SetStatusbar_Enter; + buttonMeanDailyMotion.MouseLeave += ClearStatusbar_Leave; // // buttonSemimajorAxis // - this.buttonSemimajorAxis.AccessibleDescription = "Copy to clipboard: Semi-major axis (AU)"; - this.buttonSemimajorAxis.AccessibleName = "Copy to clipboard: Semi-major axis (AU)"; - this.buttonSemimajorAxis.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.buttonSemimajorAxis.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; - this.buttonSemimajorAxis.CornerRoundingRadius = -1F; - this.buttonSemimajorAxis.Location = new System.Drawing.Point(12, 291); - this.buttonSemimajorAxis.Name = "buttonSemimajorAxis"; - this.buttonSemimajorAxis.Size = new System.Drawing.Size(262, 25); - this.buttonSemimajorAxis.TabIndex = 9; - this.toolTip.SetToolTip(this.buttonSemimajorAxis, "Semi-major axis (AU)"); - this.buttonSemimajorAxis.Values.Text = "Semi-major axis (AU)"; - this.buttonSemimajorAxis.Click += new System.EventHandler(this.ButtonSemimajorAxis_Click); - this.buttonSemimajorAxis.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonSemimajorAxis.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.buttonSemimajorAxis.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonSemimajorAxis.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + buttonSemimajorAxis.AccessibleDescription = "Copy to clipboard: Semi-major axis (AU)"; + buttonSemimajorAxis.AccessibleName = "Copy to clipboard: Semi-major axis (AU)"; + buttonSemimajorAxis.AccessibleRole = AccessibleRole.PushButton; + buttonSemimajorAxis.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; + buttonSemimajorAxis.CornerRoundingRadius = -1F; + buttonSemimajorAxis.Location = new Point(14, 336); + buttonSemimajorAxis.Margin = new Padding(4, 3, 4, 3); + buttonSemimajorAxis.Name = "buttonSemimajorAxis"; + buttonSemimajorAxis.Size = new Size(306, 29); + buttonSemimajorAxis.TabIndex = 9; + toolTip.SetToolTip(buttonSemimajorAxis, "Semi-major axis (AU)"); + buttonSemimajorAxis.Values.Text = "Semi-major axis (AU)"; + buttonSemimajorAxis.Click += ButtonSemimajorAxis_Click; + buttonSemimajorAxis.Enter += SetStatusbar_Enter; + buttonSemimajorAxis.Leave += ClearStatusbar_Leave; + buttonSemimajorAxis.MouseEnter += SetStatusbar_Enter; + buttonSemimajorAxis.MouseLeave += ClearStatusbar_Leave; // // buttonAbsoluteMagnitude // - this.buttonAbsoluteMagnitude.AccessibleDescription = "Copy to clipboard: Absolute magnitude, H"; - this.buttonAbsoluteMagnitude.AccessibleName = "Copy to clipboard: Absolute magnitude, H"; - this.buttonAbsoluteMagnitude.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.buttonAbsoluteMagnitude.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; - this.buttonAbsoluteMagnitude.CornerRoundingRadius = -1F; - this.buttonAbsoluteMagnitude.Location = new System.Drawing.Point(280, 12); - this.buttonAbsoluteMagnitude.Name = "buttonAbsoluteMagnitude"; - this.buttonAbsoluteMagnitude.Size = new System.Drawing.Size(262, 25); - this.buttonAbsoluteMagnitude.TabIndex = 10; - this.toolTip.SetToolTip(this.buttonAbsoluteMagnitude, "Absolute magnitude, H"); - this.buttonAbsoluteMagnitude.Values.Text = "Absolute magnitude, H"; - this.buttonAbsoluteMagnitude.Click += new System.EventHandler(this.ButtonAbsoluteMagnitude_Click); - this.buttonAbsoluteMagnitude.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonAbsoluteMagnitude.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.buttonAbsoluteMagnitude.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonAbsoluteMagnitude.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + buttonAbsoluteMagnitude.AccessibleDescription = "Copy to clipboard: Absolute magnitude, H"; + buttonAbsoluteMagnitude.AccessibleName = "Copy to clipboard: Absolute magnitude, H"; + buttonAbsoluteMagnitude.AccessibleRole = AccessibleRole.PushButton; + buttonAbsoluteMagnitude.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; + buttonAbsoluteMagnitude.CornerRoundingRadius = -1F; + buttonAbsoluteMagnitude.Location = new Point(327, 14); + buttonAbsoluteMagnitude.Margin = new Padding(4, 3, 4, 3); + buttonAbsoluteMagnitude.Name = "buttonAbsoluteMagnitude"; + buttonAbsoluteMagnitude.Size = new Size(306, 29); + buttonAbsoluteMagnitude.TabIndex = 10; + toolTip.SetToolTip(buttonAbsoluteMagnitude, "Absolute magnitude, H"); + buttonAbsoluteMagnitude.Values.Text = "Absolute magnitude, H"; + buttonAbsoluteMagnitude.Click += ButtonAbsoluteMagnitude_Click; + buttonAbsoluteMagnitude.Enter += SetStatusbar_Enter; + buttonAbsoluteMagnitude.Leave += ClearStatusbar_Leave; + buttonAbsoluteMagnitude.MouseEnter += SetStatusbar_Enter; + buttonAbsoluteMagnitude.MouseLeave += ClearStatusbar_Leave; // // buttonSlopeParameter // - this.buttonSlopeParameter.AccessibleDescription = "Copy to clipboard: Slope parameter, G"; - this.buttonSlopeParameter.AccessibleName = "Copy to clipboard: Slope parameter, G"; - this.buttonSlopeParameter.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.buttonSlopeParameter.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; - this.buttonSlopeParameter.CornerRoundingRadius = -1F; - this.buttonSlopeParameter.Location = new System.Drawing.Point(280, 43); - this.buttonSlopeParameter.Name = "buttonSlopeParameter"; - this.buttonSlopeParameter.Size = new System.Drawing.Size(262, 25); - this.buttonSlopeParameter.TabIndex = 11; - this.toolTip.SetToolTip(this.buttonSlopeParameter, "Slope parameter, G"); - this.buttonSlopeParameter.Values.Text = "Slope parameter, G"; - this.buttonSlopeParameter.Click += new System.EventHandler(this.ButtonSlopeParameter_Click); - this.buttonSlopeParameter.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonSlopeParameter.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.buttonSlopeParameter.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonSlopeParameter.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + buttonSlopeParameter.AccessibleDescription = "Copy to clipboard: Slope parameter, G"; + buttonSlopeParameter.AccessibleName = "Copy to clipboard: Slope parameter, G"; + buttonSlopeParameter.AccessibleRole = AccessibleRole.PushButton; + buttonSlopeParameter.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; + buttonSlopeParameter.CornerRoundingRadius = -1F; + buttonSlopeParameter.Location = new Point(327, 50); + buttonSlopeParameter.Margin = new Padding(4, 3, 4, 3); + buttonSlopeParameter.Name = "buttonSlopeParameter"; + buttonSlopeParameter.Size = new Size(306, 29); + buttonSlopeParameter.TabIndex = 11; + toolTip.SetToolTip(buttonSlopeParameter, "Slope parameter, G"); + buttonSlopeParameter.Values.Text = "Slope parameter, G"; + buttonSlopeParameter.Click += ButtonSlopeParameter_Click; + buttonSlopeParameter.Enter += SetStatusbar_Enter; + buttonSlopeParameter.Leave += ClearStatusbar_Leave; + buttonSlopeParameter.MouseEnter += SetStatusbar_Enter; + buttonSlopeParameter.MouseLeave += ClearStatusbar_Leave; // // buttonReference // - this.buttonReference.AccessibleDescription = "Copy to clipboard: Reference"; - this.buttonReference.AccessibleName = "Copy to clipboard: Reference"; - this.buttonReference.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.buttonReference.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; - this.buttonReference.CornerRoundingRadius = -1F; - this.buttonReference.Location = new System.Drawing.Point(280, 74); - this.buttonReference.Name = "buttonReference"; - this.buttonReference.Size = new System.Drawing.Size(262, 25); - this.buttonReference.TabIndex = 12; - this.toolTip.SetToolTip(this.buttonReference, "Reference"); - this.buttonReference.Values.Text = "Reference"; - this.buttonReference.Click += new System.EventHandler(this.ButtonReference_Click); - this.buttonReference.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonReference.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.buttonReference.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonReference.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + buttonReference.AccessibleDescription = "Copy to clipboard: Reference"; + buttonReference.AccessibleName = "Copy to clipboard: Reference"; + buttonReference.AccessibleRole = AccessibleRole.PushButton; + buttonReference.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; + buttonReference.CornerRoundingRadius = -1F; + buttonReference.Location = new Point(327, 85); + buttonReference.Margin = new Padding(4, 3, 4, 3); + buttonReference.Name = "buttonReference"; + buttonReference.Size = new Size(306, 29); + buttonReference.TabIndex = 12; + toolTip.SetToolTip(buttonReference, "Reference"); + buttonReference.Values.Text = "Reference"; + buttonReference.Click += ButtonReference_Click; + buttonReference.Enter += SetStatusbar_Enter; + buttonReference.Leave += ClearStatusbar_Leave; + buttonReference.MouseEnter += SetStatusbar_Enter; + buttonReference.MouseLeave += ClearStatusbar_Leave; // // buttonObservationSpan // - this.buttonObservationSpan.AccessibleDescription = "Copy to clipboard: Observation span"; - this.buttonObservationSpan.AccessibleName = "Copy to clipboard: Observation span"; - this.buttonObservationSpan.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.buttonObservationSpan.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; - this.buttonObservationSpan.CornerRoundingRadius = -1F; - this.buttonObservationSpan.Location = new System.Drawing.Point(280, 167); - this.buttonObservationSpan.Name = "buttonObservationSpan"; - this.buttonObservationSpan.Size = new System.Drawing.Size(262, 25); - this.buttonObservationSpan.TabIndex = 15; - this.toolTip.SetToolTip(this.buttonObservationSpan, "Observation span"); - this.buttonObservationSpan.Values.Text = "Observation span"; - this.buttonObservationSpan.Click += new System.EventHandler(this.ButtonObservationSpan_Click); - this.buttonObservationSpan.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonObservationSpan.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.buttonObservationSpan.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonObservationSpan.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + buttonObservationSpan.AccessibleDescription = "Copy to clipboard: Observation span"; + buttonObservationSpan.AccessibleName = "Copy to clipboard: Observation span"; + buttonObservationSpan.AccessibleRole = AccessibleRole.PushButton; + buttonObservationSpan.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; + buttonObservationSpan.CornerRoundingRadius = -1F; + buttonObservationSpan.Location = new Point(327, 193); + buttonObservationSpan.Margin = new Padding(4, 3, 4, 3); + buttonObservationSpan.Name = "buttonObservationSpan"; + buttonObservationSpan.Size = new Size(306, 29); + buttonObservationSpan.TabIndex = 15; + toolTip.SetToolTip(buttonObservationSpan, "Observation span"); + buttonObservationSpan.Values.Text = "Observation span"; + buttonObservationSpan.Click += ButtonObservationSpan_Click; + buttonObservationSpan.Enter += SetStatusbar_Enter; + buttonObservationSpan.Leave += ClearStatusbar_Leave; + buttonObservationSpan.MouseEnter += SetStatusbar_Enter; + buttonObservationSpan.MouseLeave += ClearStatusbar_Leave; // // buttonNumberOfObservations // - this.buttonNumberOfObservations.AccessibleDescription = "Copy to clipboard: Number of observations"; - this.buttonNumberOfObservations.AccessibleName = "Copy to clipboard: Number of observations"; - this.buttonNumberOfObservations.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.buttonNumberOfObservations.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; - this.buttonNumberOfObservations.CornerRoundingRadius = -1F; - this.buttonNumberOfObservations.Location = new System.Drawing.Point(280, 136); - this.buttonNumberOfObservations.Name = "buttonNumberOfObservations"; - this.buttonNumberOfObservations.Size = new System.Drawing.Size(262, 25); - this.buttonNumberOfObservations.TabIndex = 14; - this.toolTip.SetToolTip(this.buttonNumberOfObservations, "Number of observations"); - this.buttonNumberOfObservations.Values.Text = "Number of observations"; - this.buttonNumberOfObservations.Click += new System.EventHandler(this.ButtonNumberOfObservations_Click); - this.buttonNumberOfObservations.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonNumberOfObservations.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.buttonNumberOfObservations.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonNumberOfObservations.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + buttonNumberOfObservations.AccessibleDescription = "Copy to clipboard: Number of observations"; + buttonNumberOfObservations.AccessibleName = "Copy to clipboard: Number of observations"; + buttonNumberOfObservations.AccessibleRole = AccessibleRole.PushButton; + buttonNumberOfObservations.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; + buttonNumberOfObservations.CornerRoundingRadius = -1F; + buttonNumberOfObservations.Location = new Point(327, 157); + buttonNumberOfObservations.Margin = new Padding(4, 3, 4, 3); + buttonNumberOfObservations.Name = "buttonNumberOfObservations"; + buttonNumberOfObservations.Size = new Size(306, 29); + buttonNumberOfObservations.TabIndex = 14; + toolTip.SetToolTip(buttonNumberOfObservations, "Number of observations"); + buttonNumberOfObservations.Values.Text = "Number of observations"; + buttonNumberOfObservations.Click += ButtonNumberOfObservations_Click; + buttonNumberOfObservations.Enter += SetStatusbar_Enter; + buttonNumberOfObservations.Leave += ClearStatusbar_Leave; + buttonNumberOfObservations.MouseEnter += SetStatusbar_Enter; + buttonNumberOfObservations.MouseLeave += ClearStatusbar_Leave; // // buttonNumberOfOppositions // - this.buttonNumberOfOppositions.AccessibleDescription = "Copy to clipboard: Number of oppositions"; - this.buttonNumberOfOppositions.AccessibleName = "Copy to clipboard: Number of oppositions"; - this.buttonNumberOfOppositions.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.buttonNumberOfOppositions.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; - this.buttonNumberOfOppositions.CornerRoundingRadius = -1F; - this.buttonNumberOfOppositions.Location = new System.Drawing.Point(280, 105); - this.buttonNumberOfOppositions.Name = "buttonNumberOfOppositions"; - this.buttonNumberOfOppositions.Size = new System.Drawing.Size(262, 25); - this.buttonNumberOfOppositions.TabIndex = 13; - this.toolTip.SetToolTip(this.buttonNumberOfOppositions, "Number of oppositions"); - this.buttonNumberOfOppositions.Values.Text = "Number of oppositions"; - this.buttonNumberOfOppositions.Click += new System.EventHandler(this.ButtonNumberOfOppositions_Click); - this.buttonNumberOfOppositions.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonNumberOfOppositions.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.buttonNumberOfOppositions.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonNumberOfOppositions.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + buttonNumberOfOppositions.AccessibleDescription = "Copy to clipboard: Number of oppositions"; + buttonNumberOfOppositions.AccessibleName = "Copy to clipboard: Number of oppositions"; + buttonNumberOfOppositions.AccessibleRole = AccessibleRole.PushButton; + buttonNumberOfOppositions.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; + buttonNumberOfOppositions.CornerRoundingRadius = -1F; + buttonNumberOfOppositions.Location = new Point(327, 121); + buttonNumberOfOppositions.Margin = new Padding(4, 3, 4, 3); + buttonNumberOfOppositions.Name = "buttonNumberOfOppositions"; + buttonNumberOfOppositions.Size = new Size(306, 29); + buttonNumberOfOppositions.TabIndex = 13; + toolTip.SetToolTip(buttonNumberOfOppositions, "Number of oppositions"); + buttonNumberOfOppositions.Values.Text = "Number of oppositions"; + buttonNumberOfOppositions.Click += ButtonNumberOfOppositions_Click; + buttonNumberOfOppositions.Enter += SetStatusbar_Enter; + buttonNumberOfOppositions.Leave += ClearStatusbar_Leave; + buttonNumberOfOppositions.MouseEnter += SetStatusbar_Enter; + buttonNumberOfOppositions.MouseLeave += ClearStatusbar_Leave; // // buttonFlags // - this.buttonFlags.AccessibleDescription = "Copy to clipboard: 4-hexdigit flags"; - this.buttonFlags.AccessibleName = "Copy to clipboard: 4-hexdigit flags"; - this.buttonFlags.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.buttonFlags.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; - this.buttonFlags.CornerRoundingRadius = -1F; - this.buttonFlags.Location = new System.Drawing.Point(280, 260); - this.buttonFlags.Name = "buttonFlags"; - this.buttonFlags.Size = new System.Drawing.Size(262, 25); - this.buttonFlags.TabIndex = 18; - this.toolTip.SetToolTip(this.buttonFlags, "4-hexdigit flags"); - this.buttonFlags.Values.Text = "4-hexdigit flags"; - this.buttonFlags.Click += new System.EventHandler(this.ButtonFlags_Click); - this.buttonFlags.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonFlags.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.buttonFlags.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonFlags.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + buttonFlags.AccessibleDescription = "Copy to clipboard: 4-hexdigit flags"; + buttonFlags.AccessibleName = "Copy to clipboard: 4-hexdigit flags"; + buttonFlags.AccessibleRole = AccessibleRole.PushButton; + buttonFlags.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; + buttonFlags.CornerRoundingRadius = -1F; + buttonFlags.Location = new Point(327, 300); + buttonFlags.Margin = new Padding(4, 3, 4, 3); + buttonFlags.Name = "buttonFlags"; + buttonFlags.Size = new Size(306, 29); + buttonFlags.TabIndex = 18; + toolTip.SetToolTip(buttonFlags, "4-hexdigit flags"); + buttonFlags.Values.Text = "4-hexdigit flags"; + buttonFlags.Click += ButtonFlags_Click; + buttonFlags.Enter += SetStatusbar_Enter; + buttonFlags.Leave += ClearStatusbar_Leave; + buttonFlags.MouseEnter += SetStatusbar_Enter; + buttonFlags.MouseLeave += ClearStatusbar_Leave; // // buttonComputername // - this.buttonComputername.AccessibleDescription = "Copy to clipboard: Computer name"; - this.buttonComputername.AccessibleName = "Copy to clipboard: Computer name"; - this.buttonComputername.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.buttonComputername.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; - this.buttonComputername.CornerRoundingRadius = -1F; - this.buttonComputername.Location = new System.Drawing.Point(280, 229); - this.buttonComputername.Name = "buttonComputername"; - this.buttonComputername.Size = new System.Drawing.Size(262, 25); - this.buttonComputername.TabIndex = 17; - this.toolTip.SetToolTip(this.buttonComputername, "Computer name"); - this.buttonComputername.Values.Text = "Computer name"; - this.buttonComputername.Click += new System.EventHandler(this.ButtonComputername_Click); - this.buttonComputername.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonComputername.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.buttonComputername.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonComputername.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + buttonComputername.AccessibleDescription = "Copy to clipboard: Computer name"; + buttonComputername.AccessibleName = "Copy to clipboard: Computer name"; + buttonComputername.AccessibleRole = AccessibleRole.PushButton; + buttonComputername.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; + buttonComputername.CornerRoundingRadius = -1F; + buttonComputername.Location = new Point(327, 264); + buttonComputername.Margin = new Padding(4, 3, 4, 3); + buttonComputername.Name = "buttonComputername"; + buttonComputername.Size = new Size(306, 29); + buttonComputername.TabIndex = 17; + toolTip.SetToolTip(buttonComputername, "Computer name"); + buttonComputername.Values.Text = "Computer name"; + buttonComputername.Click += ButtonComputername_Click; + buttonComputername.Enter += SetStatusbar_Enter; + buttonComputername.Leave += ClearStatusbar_Leave; + buttonComputername.MouseEnter += SetStatusbar_Enter; + buttonComputername.MouseLeave += ClearStatusbar_Leave; // // buttonRmsResidual // - this.buttonRmsResidual.AccessibleDescription = "Copy to clipboard: r.m.s. residual (\")"; - this.buttonRmsResidual.AccessibleName = "Copy to clipboard: r.m.s. residual (\")"; - this.buttonRmsResidual.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.buttonRmsResidual.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; - this.buttonRmsResidual.CornerRoundingRadius = -1F; - this.buttonRmsResidual.Location = new System.Drawing.Point(280, 198); - this.buttonRmsResidual.Name = "buttonRmsResidual"; - this.buttonRmsResidual.Size = new System.Drawing.Size(262, 25); - this.buttonRmsResidual.TabIndex = 16; - this.toolTip.SetToolTip(this.buttonRmsResidual, "r.m.s. residual (\")"); - this.buttonRmsResidual.Values.Text = "r.m.s. residual (\")"; - this.buttonRmsResidual.Click += new System.EventHandler(this.ButtonRmsResidual_Click); - this.buttonRmsResidual.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonRmsResidual.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.buttonRmsResidual.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonRmsResidual.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + buttonRmsResidual.AccessibleDescription = "Copy to clipboard: r.m.s. residual (\")"; + buttonRmsResidual.AccessibleName = "Copy to clipboard: r.m.s. residual (\")"; + buttonRmsResidual.AccessibleRole = AccessibleRole.PushButton; + buttonRmsResidual.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; + buttonRmsResidual.CornerRoundingRadius = -1F; + buttonRmsResidual.Location = new Point(327, 228); + buttonRmsResidual.Margin = new Padding(4, 3, 4, 3); + buttonRmsResidual.Name = "buttonRmsResidual"; + buttonRmsResidual.Size = new Size(306, 29); + buttonRmsResidual.TabIndex = 16; + toolTip.SetToolTip(buttonRmsResidual, "r.m.s. residual (\")"); + buttonRmsResidual.Values.Text = "r.m.s. residual (\")"; + buttonRmsResidual.Click += ButtonRmsResidual_Click; + buttonRmsResidual.Enter += SetStatusbar_Enter; + buttonRmsResidual.Leave += ClearStatusbar_Leave; + buttonRmsResidual.MouseEnter += SetStatusbar_Enter; + buttonRmsResidual.MouseLeave += ClearStatusbar_Leave; // // buttonDateOfLastObservation // - this.buttonDateOfLastObservation.AccessibleDescription = "Copy to clipboard: Date of last observation (YYYMMDD)"; - this.buttonDateOfLastObservation.AccessibleName = "Copy to clipboard: Date of last observation (YYYMMDD)"; - this.buttonDateOfLastObservation.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.buttonDateOfLastObservation.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; - this.buttonDateOfLastObservation.CornerRoundingRadius = -1F; - this.buttonDateOfLastObservation.Location = new System.Drawing.Point(280, 291); - this.buttonDateOfLastObservation.Name = "buttonDateOfLastObservation"; - this.buttonDateOfLastObservation.Size = new System.Drawing.Size(262, 25); - this.buttonDateOfLastObservation.TabIndex = 19; - this.toolTip.SetToolTip(this.buttonDateOfLastObservation, "Date of last observation (YYYMMDD)"); - this.buttonDateOfLastObservation.Values.Text = "Date of last observation (YYYMMDD)"; - this.buttonDateOfLastObservation.Click += new System.EventHandler(this.ButtonDateOfLastObservation_Click); - this.buttonDateOfLastObservation.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonDateOfLastObservation.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.buttonDateOfLastObservation.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonDateOfLastObservation.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + buttonDateOfLastObservation.AccessibleDescription = "Copy to clipboard: Date of last observation (YYYMMDD)"; + buttonDateOfLastObservation.AccessibleName = "Copy to clipboard: Date of last observation (YYYMMDD)"; + buttonDateOfLastObservation.AccessibleRole = AccessibleRole.PushButton; + buttonDateOfLastObservation.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form; + buttonDateOfLastObservation.CornerRoundingRadius = -1F; + buttonDateOfLastObservation.Location = new Point(327, 336); + buttonDateOfLastObservation.Margin = new Padding(4, 3, 4, 3); + buttonDateOfLastObservation.Name = "buttonDateOfLastObservation"; + buttonDateOfLastObservation.Size = new Size(306, 29); + buttonDateOfLastObservation.TabIndex = 19; + toolTip.SetToolTip(buttonDateOfLastObservation, "Date of last observation (YYYMMDD)"); + buttonDateOfLastObservation.Values.Text = "Date of last observation (YYYMMDD)"; + buttonDateOfLastObservation.Click += ButtonDateOfLastObservation_Click; + buttonDateOfLastObservation.Enter += SetStatusbar_Enter; + buttonDateOfLastObservation.Leave += ClearStatusbar_Leave; + buttonDateOfLastObservation.MouseEnter += SetStatusbar_Enter; + buttonDateOfLastObservation.MouseLeave += ClearStatusbar_Leave; // // panel // - this.panel.AccessibleDescription = "Groups the data"; - this.panel.AccessibleName = "pane"; - this.panel.AccessibleRole = System.Windows.Forms.AccessibleRole.Pane; - this.panel.Controls.Add(this.statusStrip); - this.panel.Controls.Add(this.buttonDateOfLastObservation); - this.panel.Controls.Add(this.buttonFlags); - this.panel.Controls.Add(this.buttonComputername); - this.panel.Controls.Add(this.buttonRmsResidual); - this.panel.Controls.Add(this.buttonObservationSpan); - this.panel.Controls.Add(this.buttonNumberOfObservations); - this.panel.Controls.Add(this.buttonNumberOfOppositions); - this.panel.Controls.Add(this.buttonReference); - this.panel.Controls.Add(this.buttonSlopeParameter); - this.panel.Controls.Add(this.buttonAbsoluteMagnitude); - this.panel.Controls.Add(this.buttonSemimajorAxis); - this.panel.Controls.Add(this.buttonMeanDailyMotion); - this.panel.Controls.Add(this.buttonOrbitalEccentricity); - this.panel.Controls.Add(this.buttonInclination); - this.panel.Controls.Add(this.buttonArgumentOfPerihelion); - this.panel.Controls.Add(this.buttonLongitudeOfTheAscendingNode); - this.panel.Controls.Add(this.buttonEpoch); - this.panel.Controls.Add(this.buttonMeanAnomaly); - this.panel.Controls.Add(this.buttonIndexNumber); - this.panel.Controls.Add(this.buttonReadableDesignation); - this.panel.Dock = System.Windows.Forms.DockStyle.Fill; - this.panel.Location = new System.Drawing.Point(0, 0); - this.panel.Name = "panel"; - this.panel.PanelBackStyle = Krypton.Toolkit.PaletteBackStyle.FormMain; - this.panel.Size = new System.Drawing.Size(552, 346); - this.panel.TabIndex = 0; - this.panel.TabStop = true; + panel.AccessibleDescription = "Groups the data"; + panel.AccessibleName = "pane"; + panel.AccessibleRole = AccessibleRole.Pane; + panel.Controls.Add(buttonDateOfLastObservation); + panel.Controls.Add(buttonFlags); + panel.Controls.Add(buttonComputername); + panel.Controls.Add(buttonRmsResidual); + panel.Controls.Add(buttonObservationSpan); + panel.Controls.Add(buttonNumberOfObservations); + panel.Controls.Add(buttonNumberOfOppositions); + panel.Controls.Add(buttonReference); + panel.Controls.Add(buttonSlopeParameter); + panel.Controls.Add(buttonAbsoluteMagnitude); + panel.Controls.Add(buttonSemimajorAxis); + panel.Controls.Add(buttonMeanDailyMotion); + panel.Controls.Add(buttonOrbitalEccentricity); + panel.Controls.Add(buttonInclination); + panel.Controls.Add(buttonArgumentOfPerihelion); + panel.Controls.Add(buttonLongitudeOfTheAscendingNode); + panel.Controls.Add(buttonEpoch); + panel.Controls.Add(buttonMeanAnomaly); + panel.Controls.Add(buttonIndexNumber); + panel.Controls.Add(buttonReadableDesignation); + panel.Dock = DockStyle.Fill; + panel.Location = new Point(0, 0); + panel.Margin = new Padding(4, 3, 4, 3); + panel.Name = "panel"; + panel.PanelBackStyle = Krypton.Toolkit.PaletteBackStyle.FormMain; + panel.Size = new Size(644, 377); + panel.TabIndex = 0; + panel.TabStop = true; // // statusStrip // - this.statusStrip.AccessibleDescription = "Shows some information"; - this.statusStrip.AccessibleName = "Status bar of some information"; - this.statusStrip.AccessibleRole = System.Windows.Forms.AccessibleRole.StatusBar; - this.statusStrip.Font = new System.Drawing.Font("Segoe UI", 9F); - this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.labelInformation}); - this.statusStrip.Location = new System.Drawing.Point(0, 324); - this.statusStrip.Name = "statusStrip"; - this.statusStrip.ProgressBars = null; - this.statusStrip.RenderMode = System.Windows.Forms.ToolStripRenderMode.ManagerRenderMode; - this.statusStrip.Size = new System.Drawing.Size(552, 22); - this.statusStrip.SizingGrip = false; - this.statusStrip.TabIndex = 20; - this.statusStrip.Text = "status bar"; + statusStrip.AccessibleDescription = "Shows some information"; + statusStrip.AccessibleName = "Status bar of some information"; + statusStrip.AccessibleRole = AccessibleRole.StatusBar; + statusStrip.Dock = DockStyle.None; + statusStrip.Font = new Font("Segoe UI", 9F, FontStyle.Regular, GraphicsUnit.Point); + statusStrip.Items.AddRange(new ToolStripItem[] { labelInformation }); + statusStrip.Location = new Point(0, 0); + statusStrip.Name = "statusStrip"; + statusStrip.Padding = new Padding(1, 0, 16, 0); + statusStrip.ProgressBars = null; + statusStrip.RenderMode = ToolStripRenderMode.ManagerRenderMode; + statusStrip.Size = new Size(644, 22); + statusStrip.SizingGrip = false; + statusStrip.TabIndex = 20; + statusStrip.Text = "status bar"; // // labelInformation // - this.labelInformation.AccessibleDescription = "Shows some information"; - this.labelInformation.AccessibleName = "Shows some information"; - this.labelInformation.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelInformation.AutoToolTip = true; - this.labelInformation.Image = global::Planetoid_DB.Properties.Resources.silk_lightbulb; - this.labelInformation.Margin = new System.Windows.Forms.Padding(5, 3, 0, 2); - this.labelInformation.Name = "labelInformation"; - this.labelInformation.Size = new System.Drawing.Size(144, 17); - this.labelInformation.Text = "some information here"; - this.labelInformation.ToolTipText = "Shows some information"; + labelInformation.AccessibleDescription = "Shows some information"; + labelInformation.AccessibleName = "Shows some information"; + labelInformation.AccessibleRole = AccessibleRole.StaticText; + labelInformation.AutoToolTip = true; + labelInformation.Image = Properties.Resources.silk_lightbulb; + labelInformation.Margin = new Padding(5, 3, 0, 2); + labelInformation.Name = "labelInformation"; + labelInformation.Size = new Size(144, 17); + labelInformation.Text = "some information here"; + labelInformation.ToolTipText = "Shows some information"; + // + // toolStripContainer + // + // + // toolStripContainer.BottomToolStripPanel + // + toolStripContainer.BottomToolStripPanel.Controls.Add(statusStrip); + // + // toolStripContainer.ContentPanel + // + toolStripContainer.ContentPanel.Controls.Add(panel); + toolStripContainer.ContentPanel.Size = new Size(644, 377); + toolStripContainer.Dock = DockStyle.Fill; + toolStripContainer.Location = new Point(0, 0); + toolStripContainer.Name = "toolStripContainer"; + toolStripContainer.Size = new Size(644, 399); + toolStripContainer.TabIndex = 1; // // CopyDataToClipboardForm // - this.AccessibleDescription = "Copy data to clipboard"; - this.AccessibleName = "Copy data to clipboard"; - this.AccessibleRole = System.Windows.Forms.AccessibleRole.Dialog; - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(552, 346); - this.Controls.Add(this.panel); - this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "CopyDataToClipboardForm"; - this.ShowInTaskbar = false; - this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; - this.Text = "Copy data to clipboard"; - this.toolTip.SetToolTip(this, "Copy data to clipboard"); - this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.CopyDataToClipboardForm_FormClosed); - this.Load += new System.EventHandler(this.CopyDataToClipboardForm_Load); - ((System.ComponentModel.ISupportInitialize)(this.panel)).EndInit(); - this.panel.ResumeLayout(false); - this.panel.PerformLayout(); - this.statusStrip.ResumeLayout(false); - this.statusStrip.PerformLayout(); - this.ResumeLayout(false); - + AccessibleDescription = "Copy data to clipboard"; + AccessibleName = "Copy data to clipboard"; + AccessibleRole = AccessibleRole.Dialog; + AutoScaleDimensions = new SizeF(7F, 15F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(644, 399); + Controls.Add(toolStripContainer); + FormBorderStyle = FormBorderStyle.FixedToolWindow; + Icon = (Icon)resources.GetObject("$this.Icon"); + Margin = new Padding(4, 3, 4, 3); + MaximizeBox = false; + MinimizeBox = false; + Name = "CopyDataToClipboardForm"; + ShowInTaskbar = false; + StartPosition = FormStartPosition.CenterScreen; + Text = "Copy data to clipboard"; + toolTip.SetToolTip(this, "Copy data to clipboard"); + FormClosed += CopyDataToClipboardForm_FormClosed; + Load += CopyDataToClipboardForm_Load; + ((System.ComponentModel.ISupportInitialize)panel).EndInit(); + panel.ResumeLayout(false); + statusStrip.ResumeLayout(false); + statusStrip.PerformLayout(); + toolStripContainer.BottomToolStripPanel.ResumeLayout(false); + toolStripContainer.BottomToolStripPanel.PerformLayout(); + toolStripContainer.ContentPanel.ResumeLayout(false); + toolStripContainer.ResumeLayout(false); + toolStripContainer.PerformLayout(); + ResumeLayout(false); } #endregion private Krypton.Toolkit.KryptonButton buttonIndexNumber; - private System.Windows.Forms.ToolTip toolTip; + private ToolTip toolTip; private Krypton.Toolkit.KryptonButton buttonReadableDesignation; private Krypton.Toolkit.KryptonPanel panel; private Krypton.Toolkit.KryptonButton buttonArgumentOfPerihelion; @@ -560,6 +606,7 @@ private void InitializeComponent() private Krypton.Toolkit.KryptonButton buttonNumberOfObservations; private Krypton.Toolkit.KryptonButton buttonNumberOfOppositions; private Krypton.Toolkit.KryptonStatusStrip statusStrip; - private System.Windows.Forms.ToolStripStatusLabel labelInformation; + private ToolStripStatusLabel labelInformation; + private ToolStripContainer toolStripContainer; } } \ No newline at end of file diff --git a/CopyDataToClipboardForm.resx b/CopyDataToClipboardForm.resx index 8f36df5..53eeb7e 100644 --- a/CopyDataToClipboardForm.resx +++ b/CopyDataToClipboardForm.resx @@ -1,17 +1,17 @@  - diff --git a/DatabaseInformationForm.cs b/DatabaseInformationForm.cs index de7a921..6879ff9 100644 --- a/DatabaseInformationForm.cs +++ b/DatabaseInformationForm.cs @@ -1,5 +1,6 @@ using System.Diagnostics; using System.Globalization; +using System.IO; using Krypton.Toolkit; namespace Planetoid_DB diff --git a/DownloadUpdateForm.Designer.cs b/DownloadUpdateForm.Designer.cs index 9df4550..893d2d1 100644 --- a/DownloadUpdateForm.Designer.cs +++ b/DownloadUpdateForm.Designer.cs @@ -2,432 +2,457 @@ namespace Planetoid_DB { - partial class DownloadUpdateForm - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; + partial class DownloadUpdateForm + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } - #region Windows Form Designer generated code + #region Windows Form Designer generated code - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.components = new System.ComponentModel.Container(); + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DownloadUpdateForm)); - this.progressBarDownload = new Krypton.Toolkit.KryptonProgressBar(); - this.labelStatusValue = new Krypton.Toolkit.KryptonLabel(); - this.labelDownload = new Krypton.Toolkit.KryptonLabel(); - this.buttonCancelDownload = new Krypton.Toolkit.KryptonButton(); - this.buttonDownload = new Krypton.Toolkit.KryptonButton(); - this.labelSourceValue = new Krypton.Toolkit.KryptonLabel(); - this.buttonCheckForUpdate = new Krypton.Toolkit.KryptonButton(); - this.labelDateValue = new Krypton.Toolkit.KryptonLabel(); - this.labelSizeValue = new Krypton.Toolkit.KryptonLabel(); - this.toolTip = new System.Windows.Forms.ToolTip(this.components); - this.labelStatusText = new Krypton.Toolkit.KryptonLabel(); - this.labelDateText = new Krypton.Toolkit.KryptonLabel(); - this.labelSourceText = new Krypton.Toolkit.KryptonLabel(); - this.labelSizeText = new Krypton.Toolkit.KryptonLabel(); - this.tableLayoutPanel = new Krypton.Toolkit.KryptonTableLayoutPanel(); - this.panel = new Krypton.Toolkit.KryptonPanel(); - this.statusStrip = new Krypton.Toolkit.KryptonStatusStrip(); - this.labelInformation = new System.Windows.Forms.ToolStripStatusLabel(); - this.tableLayoutPanel.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.panel)).BeginInit(); - this.panel.SuspendLayout(); - this.statusStrip.SuspendLayout(); - this.SuspendLayout(); + progressBarDownload = new KryptonProgressBar(); + labelStatusValue = new KryptonLabel(); + labelDownload = new KryptonLabel(); + buttonCancelDownload = new KryptonButton(); + buttonDownload = new KryptonButton(); + labelSourceValue = new KryptonLabel(); + buttonCheckForUpdate = new KryptonButton(); + labelDateValue = new KryptonLabel(); + labelSizeValue = new KryptonLabel(); + toolTip = new ToolTip(components); + labelStatusText = new KryptonLabel(); + labelDateText = new KryptonLabel(); + labelSourceText = new KryptonLabel(); + labelSizeText = new KryptonLabel(); + tableLayoutPanel = new KryptonTableLayoutPanel(); + panel = new KryptonPanel(); + statusStrip = new KryptonStatusStrip(); + labelInformation = new ToolStripStatusLabel(); + toolStripContainer = new ToolStripContainer(); + tableLayoutPanel.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)panel).BeginInit(); + panel.SuspendLayout(); + statusStrip.SuspendLayout(); + toolStripContainer.BottomToolStripPanel.SuspendLayout(); + toolStripContainer.ContentPanel.SuspendLayout(); + toolStripContainer.SuspendLayout(); + SuspendLayout(); // // progressBarDownload // - this.progressBarDownload.AccessibleDescription = "Shows the progress of the download"; - this.progressBarDownload.AccessibleName = "Progress of the download"; - this.progressBarDownload.AccessibleRole = System.Windows.Forms.AccessibleRole.ProgressBar; - this.progressBarDownload.Location = new System.Drawing.Point(12, 121); - this.progressBarDownload.Name = "progressBarDownload"; - this.progressBarDownload.Size = new System.Drawing.Size(408, 18); - this.progressBarDownload.TabIndex = 1; - this.toolTip.SetToolTip(this.progressBarDownload, "Shows the progress of the download"); - this.progressBarDownload.UseKrypton = true; - this.progressBarDownload.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.progressBarDownload.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + progressBarDownload.AccessibleDescription = "Shows the progress of the download"; + progressBarDownload.AccessibleName = "Progress of the download"; + progressBarDownload.AccessibleRole = AccessibleRole.ProgressBar; + progressBarDownload.Location = new Point(12, 121); + progressBarDownload.Name = "progressBarDownload"; + progressBarDownload.Size = new Size(408, 18); + progressBarDownload.TabIndex = 1; + toolTip.SetToolTip(progressBarDownload, "Shows the progress of the download"); + progressBarDownload.UseKrypton = true; + progressBarDownload.MouseEnter += SetStatusbar_Enter; + progressBarDownload.MouseLeave += ClearStatusbar_Leave; // // labelStatusValue // - this.labelStatusValue.AccessibleDescription = "Shows the status of the download"; - this.labelStatusValue.AccessibleName = "Status of the download"; - this.labelStatusValue.AccessibleRole = System.Windows.Forms.AccessibleRole.Text; - this.labelStatusValue.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelStatusValue.Font = new System.Drawing.Font("Segoe UI", 8.5F); - this.labelStatusValue.Location = new System.Drawing.Point(59, 3); - this.labelStatusValue.Name = "labelStatusValue"; - this.labelStatusValue.Size = new System.Drawing.Size(411, 20); - this.labelStatusValue.TabIndex = 1; - this.toolTip.SetToolTip(this.labelStatusValue, "Shows the status of the download"); - this.labelStatusValue.Values.Text = "..."; - this.labelStatusValue.DoubleClick += new System.EventHandler(this.CopyToClipboard_DoubleClick); - this.labelStatusValue.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelStatusValue.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelStatusValue.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelStatusValue.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelStatusValue.AccessibleDescription = "Shows the status of the download"; + labelStatusValue.AccessibleName = "Status of the download"; + labelStatusValue.AccessibleRole = AccessibleRole.Text; + labelStatusValue.Dock = DockStyle.Fill; + labelStatusValue.Font = new Font("Segoe UI", 8.5F, FontStyle.Regular, GraphicsUnit.Point); + labelStatusValue.Location = new Point(59, 3); + labelStatusValue.Name = "labelStatusValue"; + labelStatusValue.Size = new Size(411, 20); + labelStatusValue.TabIndex = 1; + toolTip.SetToolTip(labelStatusValue, "Shows the status of the download"); + labelStatusValue.Values.Text = "..."; + labelStatusValue.DoubleClick += CopyToClipboard_DoubleClick; + labelStatusValue.Enter += SetStatusbar_Enter; + labelStatusValue.Leave += ClearStatusbar_Leave; + labelStatusValue.MouseEnter += SetStatusbar_Enter; + labelStatusValue.MouseLeave += ClearStatusbar_Leave; // // labelDownload // - this.labelDownload.AccessibleDescription = "Shows the percent of the downloaded bytes"; - this.labelDownload.AccessibleName = "Download in percent"; - this.labelDownload.AccessibleRole = System.Windows.Forms.AccessibleRole.Text; - this.labelDownload.Font = new System.Drawing.Font("Segoe UI", 8.5F); - this.labelDownload.Location = new System.Drawing.Point(426, 124); - this.labelDownload.Name = "labelDownload"; - this.labelDownload.Size = new System.Drawing.Size(41, 20); - this.labelDownload.TabIndex = 2; - this.toolTip.SetToolTip(this.labelDownload, "Shows the percent of the downloaded bytes"); - this.labelDownload.Values.Text = "xxx %"; - this.labelDownload.DoubleClick += new System.EventHandler(this.CopyToClipboard_DoubleClick); - this.labelDownload.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelDownload.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelDownload.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelDownload.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelDownload.AccessibleDescription = "Shows the percent of the downloaded bytes"; + labelDownload.AccessibleName = "Download in percent"; + labelDownload.AccessibleRole = AccessibleRole.Text; + labelDownload.Font = new Font("Segoe UI", 8.5F, FontStyle.Regular, GraphicsUnit.Point); + labelDownload.Location = new Point(426, 124); + labelDownload.Name = "labelDownload"; + labelDownload.Size = new Size(41, 20); + labelDownload.TabIndex = 2; + toolTip.SetToolTip(labelDownload, "Shows the percent of the downloaded bytes"); + labelDownload.Values.Text = "xxx %"; + labelDownload.DoubleClick += CopyToClipboard_DoubleClick; + labelDownload.Enter += SetStatusbar_Enter; + labelDownload.Leave += ClearStatusbar_Leave; + labelDownload.MouseEnter += SetStatusbar_Enter; + labelDownload.MouseLeave += ClearStatusbar_Leave; // // buttonCancelDownload // - this.buttonCancelDownload.AccessibleDescription = "Cancels the download"; - this.buttonCancelDownload.AccessibleName = "Cancel download"; - this.buttonCancelDownload.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.buttonCancelDownload.CornerRoundingRadius = -1F; - this.buttonCancelDownload.Font = new System.Drawing.Font("Segoe UI", 8.5F); - this.buttonCancelDownload.Location = new System.Drawing.Point(333, 155); - this.buttonCancelDownload.Name = "buttonCancelDownload"; - this.buttonCancelDownload.Size = new System.Drawing.Size(128, 36); - this.buttonCancelDownload.TabIndex = 5; - this.toolTip.SetToolTip(this.buttonCancelDownload, "Cancel download"); - this.buttonCancelDownload.Values.Image = global::Planetoid_DB.Properties.Resources.silk_cancel; - this.buttonCancelDownload.Values.Text = "&Cancel download"; - this.buttonCancelDownload.Click += new System.EventHandler(this.ButtonCancelDownload_Click); - this.buttonCancelDownload.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonCancelDownload.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.buttonCancelDownload.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonCancelDownload.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + buttonCancelDownload.AccessibleDescription = "Cancels the download"; + buttonCancelDownload.AccessibleName = "Cancel download"; + buttonCancelDownload.AccessibleRole = AccessibleRole.PushButton; + buttonCancelDownload.CornerRoundingRadius = -1F; + buttonCancelDownload.Font = new Font("Segoe UI", 8.5F, FontStyle.Regular, GraphicsUnit.Point); + buttonCancelDownload.Location = new Point(333, 155); + buttonCancelDownload.Name = "buttonCancelDownload"; + buttonCancelDownload.Size = new Size(128, 36); + buttonCancelDownload.TabIndex = 5; + toolTip.SetToolTip(buttonCancelDownload, "Cancel download"); + buttonCancelDownload.Values.Image = Properties.Resources.silk_cancel; + buttonCancelDownload.Values.Text = "&Cancel download"; + buttonCancelDownload.Click += ButtonCancelDownload_Click; + buttonCancelDownload.Enter += SetStatusbar_Enter; + buttonCancelDownload.Leave += ClearStatusbar_Leave; + buttonCancelDownload.MouseEnter += SetStatusbar_Enter; + buttonCancelDownload.MouseLeave += ClearStatusbar_Leave; // // buttonDownload // - this.buttonDownload.AccessibleDescription = "Downloads the database"; - this.buttonDownload.AccessibleName = "Download MPCORB.DAT"; - this.buttonDownload.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.buttonDownload.CornerRoundingRadius = -1F; - this.buttonDownload.Font = new System.Drawing.Font("Segoe UI", 8.5F); - this.buttonDownload.Location = new System.Drawing.Point(150, 155); - this.buttonDownload.Name = "buttonDownload"; - this.buttonDownload.Size = new System.Drawing.Size(177, 36); - this.buttonDownload.TabIndex = 4; - this.toolTip.SetToolTip(this.buttonDownload, "Download MPCORB.DAT"); - this.buttonDownload.Values.Image = global::Planetoid_DB.Properties.Resources.silk_package_go; - this.buttonDownload.Values.Text = "&Download MPCORB.DAT"; - this.buttonDownload.Click += new System.EventHandler(this.ButtonDownload_Click); - this.buttonDownload.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonDownload.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.buttonDownload.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonDownload.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + buttonDownload.AccessibleDescription = "Downloads the database"; + buttonDownload.AccessibleName = "Download MPCORB.DAT"; + buttonDownload.AccessibleRole = AccessibleRole.PushButton; + buttonDownload.CornerRoundingRadius = -1F; + buttonDownload.Font = new Font("Segoe UI", 8.5F, FontStyle.Regular, GraphicsUnit.Point); + buttonDownload.Location = new Point(150, 155); + buttonDownload.Name = "buttonDownload"; + buttonDownload.Size = new Size(177, 36); + buttonDownload.TabIndex = 4; + toolTip.SetToolTip(buttonDownload, "Download MPCORB.DAT"); + buttonDownload.Values.Image = Properties.Resources.silk_package_go; + buttonDownload.Values.Text = "&Download MPCORB.DAT"; + buttonDownload.Click += ButtonDownload_Click; + buttonDownload.Enter += SetStatusbar_Enter; + buttonDownload.Leave += ClearStatusbar_Leave; + buttonDownload.MouseEnter += SetStatusbar_Enter; + buttonDownload.MouseLeave += ClearStatusbar_Leave; // // labelSourceValue // - this.labelSourceValue.AccessibleDescription = "Shows the download source"; - this.labelSourceValue.AccessibleName = "Source of the download"; - this.labelSourceValue.AccessibleRole = System.Windows.Forms.AccessibleRole.Text; - this.labelSourceValue.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelSourceValue.Font = new System.Drawing.Font("Segoe UI", 8.5F); - this.labelSourceValue.Location = new System.Drawing.Point(59, 55); - this.labelSourceValue.Name = "labelSourceValue"; - this.labelSourceValue.Size = new System.Drawing.Size(411, 20); - this.labelSourceValue.TabIndex = 5; - this.toolTip.SetToolTip(this.labelSourceValue, "Shows the download source"); - this.labelSourceValue.Values.Text = "..."; - this.labelSourceValue.DoubleClick += new System.EventHandler(this.CopyToClipboard_DoubleClick); - this.labelSourceValue.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelSourceValue.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelSourceValue.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelSourceValue.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelSourceValue.AccessibleDescription = "Shows the download source"; + labelSourceValue.AccessibleName = "Source of the download"; + labelSourceValue.AccessibleRole = AccessibleRole.Text; + labelSourceValue.Dock = DockStyle.Fill; + labelSourceValue.Font = new Font("Segoe UI", 8.5F, FontStyle.Regular, GraphicsUnit.Point); + labelSourceValue.Location = new Point(59, 55); + labelSourceValue.Name = "labelSourceValue"; + labelSourceValue.Size = new Size(411, 20); + labelSourceValue.TabIndex = 5; + toolTip.SetToolTip(labelSourceValue, "Shows the download source"); + labelSourceValue.Values.Text = "..."; + labelSourceValue.DoubleClick += CopyToClipboard_DoubleClick; + labelSourceValue.Enter += SetStatusbar_Enter; + labelSourceValue.Leave += ClearStatusbar_Leave; + labelSourceValue.MouseEnter += SetStatusbar_Enter; + labelSourceValue.MouseLeave += ClearStatusbar_Leave; // // buttonCheckForUpdate // - this.buttonCheckForUpdate.AccessibleDescription = "Checks updates of the database"; - this.buttonCheckForUpdate.AccessibleName = "Check updates"; - this.buttonCheckForUpdate.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.buttonCheckForUpdate.CornerRoundingRadius = -1F; - this.buttonCheckForUpdate.Font = new System.Drawing.Font("Segoe UI", 8.5F); - this.buttonCheckForUpdate.Location = new System.Drawing.Point(12, 155); - this.buttonCheckForUpdate.Name = "buttonCheckForUpdate"; - this.buttonCheckForUpdate.Size = new System.Drawing.Size(132, 36); - this.buttonCheckForUpdate.TabIndex = 3; - this.toolTip.SetToolTip(this.buttonCheckForUpdate, "Check updates"); - this.buttonCheckForUpdate.Values.Image = global::Planetoid_DB.Properties.Resources.silk_lightning; - this.buttonCheckForUpdate.Values.Text = "C&heck for update"; - this.buttonCheckForUpdate.Click += new System.EventHandler(this.ButtonCheckForUpdate_Click); - this.buttonCheckForUpdate.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonCheckForUpdate.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.buttonCheckForUpdate.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.buttonCheckForUpdate.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + buttonCheckForUpdate.AccessibleDescription = "Checks updates of the database"; + buttonCheckForUpdate.AccessibleName = "Check updates"; + buttonCheckForUpdate.AccessibleRole = AccessibleRole.PushButton; + buttonCheckForUpdate.CornerRoundingRadius = -1F; + buttonCheckForUpdate.Font = new Font("Segoe UI", 8.5F, FontStyle.Regular, GraphicsUnit.Point); + buttonCheckForUpdate.Location = new Point(12, 155); + buttonCheckForUpdate.Name = "buttonCheckForUpdate"; + buttonCheckForUpdate.Size = new Size(132, 36); + buttonCheckForUpdate.TabIndex = 3; + toolTip.SetToolTip(buttonCheckForUpdate, "Check updates"); + buttonCheckForUpdate.Values.Image = Properties.Resources.silk_lightning; + buttonCheckForUpdate.Values.Text = "C&heck for update"; + buttonCheckForUpdate.Click += ButtonCheckForUpdate_Click; + buttonCheckForUpdate.Enter += SetStatusbar_Enter; + buttonCheckForUpdate.Leave += ClearStatusbar_Leave; + buttonCheckForUpdate.MouseEnter += SetStatusbar_Enter; + buttonCheckForUpdate.MouseLeave += ClearStatusbar_Leave; // // labelDateValue // - this.labelDateValue.AccessibleDescription = "Shows the last modified date of the download file"; - this.labelDateValue.AccessibleName = "Date of the download file"; - this.labelDateValue.AccessibleRole = System.Windows.Forms.AccessibleRole.Text; - this.labelDateValue.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelDateValue.Font = new System.Drawing.Font("Segoe UI", 8.5F); - this.labelDateValue.Location = new System.Drawing.Point(59, 29); - this.labelDateValue.Name = "labelDateValue"; - this.labelDateValue.Size = new System.Drawing.Size(411, 20); - this.labelDateValue.TabIndex = 3; - this.toolTip.SetToolTip(this.labelDateValue, "Shows the last modified date of the download"); - this.labelDateValue.Values.Text = "..."; - this.labelDateValue.DoubleClick += new System.EventHandler(this.CopyToClipboard_DoubleClick); - this.labelDateValue.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelDateValue.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelDateValue.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelDateValue.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelDateValue.AccessibleDescription = "Shows the last modified date of the download file"; + labelDateValue.AccessibleName = "Date of the download file"; + labelDateValue.AccessibleRole = AccessibleRole.Text; + labelDateValue.Dock = DockStyle.Fill; + labelDateValue.Font = new Font("Segoe UI", 8.5F, FontStyle.Regular, GraphicsUnit.Point); + labelDateValue.Location = new Point(59, 29); + labelDateValue.Name = "labelDateValue"; + labelDateValue.Size = new Size(411, 20); + labelDateValue.TabIndex = 3; + toolTip.SetToolTip(labelDateValue, "Shows the last modified date of the download"); + labelDateValue.Values.Text = "..."; + labelDateValue.DoubleClick += CopyToClipboard_DoubleClick; + labelDateValue.Enter += SetStatusbar_Enter; + labelDateValue.Leave += ClearStatusbar_Leave; + labelDateValue.MouseEnter += SetStatusbar_Enter; + labelDateValue.MouseLeave += ClearStatusbar_Leave; // // labelSizeValue // - this.labelSizeValue.AccessibleDescription = "Shows the file size of the download"; - this.labelSizeValue.AccessibleName = "Size of the dowload file"; - this.labelSizeValue.AccessibleRole = System.Windows.Forms.AccessibleRole.Text; - this.labelSizeValue.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelSizeValue.Font = new System.Drawing.Font("Segoe UI", 8.5F); - this.labelSizeValue.Location = new System.Drawing.Point(59, 81); - this.labelSizeValue.Name = "labelSizeValue"; - this.labelSizeValue.Size = new System.Drawing.Size(411, 22); - this.labelSizeValue.TabIndex = 7; - this.toolTip.SetToolTip(this.labelSizeValue, "Shows the file size of the download"); - this.labelSizeValue.Values.Text = "..."; - this.labelSizeValue.DoubleClick += new System.EventHandler(this.CopyToClipboard_DoubleClick); - this.labelSizeValue.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelSizeValue.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelSizeValue.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelSizeValue.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelSizeValue.AccessibleDescription = "Shows the file size of the download"; + labelSizeValue.AccessibleName = "Size of the dowload file"; + labelSizeValue.AccessibleRole = AccessibleRole.Text; + labelSizeValue.Dock = DockStyle.Fill; + labelSizeValue.Font = new Font("Segoe UI", 8.5F, FontStyle.Regular, GraphicsUnit.Point); + labelSizeValue.Location = new Point(59, 81); + labelSizeValue.Name = "labelSizeValue"; + labelSizeValue.Size = new Size(411, 22); + labelSizeValue.TabIndex = 7; + toolTip.SetToolTip(labelSizeValue, "Shows the file size of the download"); + labelSizeValue.Values.Text = "..."; + labelSizeValue.DoubleClick += CopyToClipboard_DoubleClick; + labelSizeValue.Enter += SetStatusbar_Enter; + labelSizeValue.Leave += ClearStatusbar_Leave; + labelSizeValue.MouseEnter += SetStatusbar_Enter; + labelSizeValue.MouseLeave += ClearStatusbar_Leave; // // labelStatusText // - this.labelStatusText.AccessibleDescription = "Status of the download"; - this.labelStatusText.AccessibleName = "Status"; - this.labelStatusText.AccessibleRole = System.Windows.Forms.AccessibleRole.Text; - this.labelStatusText.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelStatusText.Location = new System.Drawing.Point(3, 3); - this.labelStatusText.Name = "labelStatusText"; - this.labelStatusText.Size = new System.Drawing.Size(50, 20); - this.labelStatusText.TabIndex = 0; - this.toolTip.SetToolTip(this.labelStatusText, "Status"); - this.labelStatusText.Values.Text = "Status:"; - this.labelStatusText.DoubleClick += new System.EventHandler(this.CopyToClipboard_DoubleClick); - this.labelStatusText.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelStatusText.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelStatusText.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelStatusText.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelStatusText.AccessibleDescription = "Status of the download"; + labelStatusText.AccessibleName = "Status"; + labelStatusText.AccessibleRole = AccessibleRole.Text; + labelStatusText.Dock = DockStyle.Fill; + labelStatusText.Location = new Point(3, 3); + labelStatusText.Name = "labelStatusText"; + labelStatusText.Size = new Size(50, 20); + labelStatusText.TabIndex = 0; + toolTip.SetToolTip(labelStatusText, "Status"); + labelStatusText.Values.Text = "Status:"; + labelStatusText.DoubleClick += CopyToClipboard_DoubleClick; + labelStatusText.Enter += SetStatusbar_Enter; + labelStatusText.Leave += ClearStatusbar_Leave; + labelStatusText.MouseEnter += SetStatusbar_Enter; + labelStatusText.MouseLeave += ClearStatusbar_Leave; // // labelDateText // - this.labelDateText.AccessibleDescription = "Date of the download file"; - this.labelDateText.AccessibleName = "Date"; - this.labelDateText.AccessibleRole = System.Windows.Forms.AccessibleRole.Text; - this.labelDateText.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelDateText.Location = new System.Drawing.Point(3, 29); - this.labelDateText.Name = "labelDateText"; - this.labelDateText.Size = new System.Drawing.Size(50, 20); - this.labelDateText.TabIndex = 2; - this.toolTip.SetToolTip(this.labelDateText, "Date"); - this.labelDateText.Values.Text = "Date:"; - this.labelDateText.DoubleClick += new System.EventHandler(this.CopyToClipboard_DoubleClick); - this.labelDateText.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelDateText.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelDateText.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelDateText.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelDateText.AccessibleDescription = "Date of the download file"; + labelDateText.AccessibleName = "Date"; + labelDateText.AccessibleRole = AccessibleRole.Text; + labelDateText.Dock = DockStyle.Fill; + labelDateText.Location = new Point(3, 29); + labelDateText.Name = "labelDateText"; + labelDateText.Size = new Size(50, 20); + labelDateText.TabIndex = 2; + toolTip.SetToolTip(labelDateText, "Date"); + labelDateText.Values.Text = "Date:"; + labelDateText.DoubleClick += CopyToClipboard_DoubleClick; + labelDateText.Enter += SetStatusbar_Enter; + labelDateText.Leave += ClearStatusbar_Leave; + labelDateText.MouseEnter += SetStatusbar_Enter; + labelDateText.MouseLeave += ClearStatusbar_Leave; // // labelSourceText // - this.labelSourceText.AccessibleDescription = "Shows the download source"; - this.labelSourceText.AccessibleName = "Source"; - this.labelSourceText.AccessibleRole = System.Windows.Forms.AccessibleRole.Text; - this.labelSourceText.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelSourceText.Location = new System.Drawing.Point(3, 55); - this.labelSourceText.Name = "labelSourceText"; - this.labelSourceText.Size = new System.Drawing.Size(50, 20); - this.labelSourceText.TabIndex = 4; - this.toolTip.SetToolTip(this.labelSourceText, "Source"); - this.labelSourceText.Values.Text = "Source:"; - this.labelSourceText.DoubleClick += new System.EventHandler(this.CopyToClipboard_DoubleClick); - this.labelSourceText.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelSourceText.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelSourceText.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelSourceText.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelSourceText.AccessibleDescription = "Shows the download source"; + labelSourceText.AccessibleName = "Source"; + labelSourceText.AccessibleRole = AccessibleRole.Text; + labelSourceText.Dock = DockStyle.Fill; + labelSourceText.Location = new Point(3, 55); + labelSourceText.Name = "labelSourceText"; + labelSourceText.Size = new Size(50, 20); + labelSourceText.TabIndex = 4; + toolTip.SetToolTip(labelSourceText, "Source"); + labelSourceText.Values.Text = "Source:"; + labelSourceText.DoubleClick += CopyToClipboard_DoubleClick; + labelSourceText.Enter += SetStatusbar_Enter; + labelSourceText.Leave += ClearStatusbar_Leave; + labelSourceText.MouseEnter += SetStatusbar_Enter; + labelSourceText.MouseLeave += ClearStatusbar_Leave; // // labelSizeText // - this.labelSizeText.AccessibleDescription = "Shows the file size of the download"; - this.labelSizeText.AccessibleName = "Size"; - this.labelSizeText.AccessibleRole = System.Windows.Forms.AccessibleRole.Text; - this.labelSizeText.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelSizeText.Location = new System.Drawing.Point(3, 81); - this.labelSizeText.Name = "labelSizeText"; - this.labelSizeText.Size = new System.Drawing.Size(50, 22); - this.labelSizeText.TabIndex = 6; - this.toolTip.SetToolTip(this.labelSizeText, "Size"); - this.labelSizeText.Values.Text = "Size:"; - this.labelSizeText.DoubleClick += new System.EventHandler(this.CopyToClipboard_DoubleClick); - this.labelSizeText.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelSizeText.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelSizeText.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelSizeText.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelSizeText.AccessibleDescription = "Shows the file size of the download"; + labelSizeText.AccessibleName = "Size"; + labelSizeText.AccessibleRole = AccessibleRole.Text; + labelSizeText.Dock = DockStyle.Fill; + labelSizeText.Location = new Point(3, 81); + labelSizeText.Name = "labelSizeText"; + labelSizeText.Size = new Size(50, 22); + labelSizeText.TabIndex = 6; + toolTip.SetToolTip(labelSizeText, "Size"); + labelSizeText.Values.Text = "Size:"; + labelSizeText.DoubleClick += CopyToClipboard_DoubleClick; + labelSizeText.Enter += SetStatusbar_Enter; + labelSizeText.Leave += ClearStatusbar_Leave; + labelSizeText.MouseEnter += SetStatusbar_Enter; + labelSizeText.MouseLeave += ClearStatusbar_Leave; // // tableLayoutPanel // - this.tableLayoutPanel.AccessibleDescription = "Groups the data"; - this.tableLayoutPanel.AccessibleName = "Information"; - this.tableLayoutPanel.AccessibleRole = System.Windows.Forms.AccessibleRole.Pane; - this.tableLayoutPanel.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableLayoutPanel.BackgroundImage"))); - this.tableLayoutPanel.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.tableLayoutPanel.ColumnCount = 2; - this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanel.Controls.Add(this.labelStatusText, 0, 0); - this.tableLayoutPanel.Controls.Add(this.labelSizeValue, 1, 3); - this.tableLayoutPanel.Controls.Add(this.labelSizeText, 0, 3); - this.tableLayoutPanel.Controls.Add(this.labelDateValue, 1, 1); - this.tableLayoutPanel.Controls.Add(this.labelSourceValue, 1, 2); - this.tableLayoutPanel.Controls.Add(this.labelDateText, 0, 1); - this.tableLayoutPanel.Controls.Add(this.labelSourceText, 0, 2); - this.tableLayoutPanel.Controls.Add(this.labelStatusValue, 1, 0); - this.tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Top; - this.tableLayoutPanel.Location = new System.Drawing.Point(0, 0); - this.tableLayoutPanel.Name = "tableLayoutPanel"; - this.tableLayoutPanel.RowCount = 4; - this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanel.Size = new System.Drawing.Size(473, 106); - this.tableLayoutPanel.TabIndex = 0; - this.toolTip.SetToolTip(this.tableLayoutPanel, "Groups the data"); + tableLayoutPanel.AccessibleDescription = "Groups the data"; + tableLayoutPanel.AccessibleName = "Information"; + tableLayoutPanel.AccessibleRole = AccessibleRole.Pane; + tableLayoutPanel.BackgroundImage = (Image)resources.GetObject("tableLayoutPanel.BackgroundImage"); + tableLayoutPanel.BackgroundImageLayout = ImageLayout.None; + tableLayoutPanel.ColumnCount = 2; + tableLayoutPanel.ColumnStyles.Add(new ColumnStyle()); + tableLayoutPanel.ColumnStyles.Add(new ColumnStyle()); + tableLayoutPanel.Controls.Add(labelStatusText, 0, 0); + tableLayoutPanel.Controls.Add(labelSizeValue, 1, 3); + tableLayoutPanel.Controls.Add(labelSizeText, 0, 3); + tableLayoutPanel.Controls.Add(labelDateValue, 1, 1); + tableLayoutPanel.Controls.Add(labelSourceValue, 1, 2); + tableLayoutPanel.Controls.Add(labelDateText, 0, 1); + tableLayoutPanel.Controls.Add(labelSourceText, 0, 2); + tableLayoutPanel.Controls.Add(labelStatusValue, 1, 0); + tableLayoutPanel.Dock = DockStyle.Top; + tableLayoutPanel.Location = new Point(0, 0); + tableLayoutPanel.Name = "tableLayoutPanel"; + tableLayoutPanel.RowCount = 4; + tableLayoutPanel.RowStyles.Add(new RowStyle()); + tableLayoutPanel.RowStyles.Add(new RowStyle()); + tableLayoutPanel.RowStyles.Add(new RowStyle()); + tableLayoutPanel.RowStyles.Add(new RowStyle()); + tableLayoutPanel.Size = new Size(473, 106); + tableLayoutPanel.TabIndex = 0; + toolTip.SetToolTip(tableLayoutPanel, "Groups the data"); // // panel // - this.panel.AccessibleDescription = "Groups the data"; - this.panel.AccessibleName = "pane"; - this.panel.AccessibleRole = System.Windows.Forms.AccessibleRole.Pane; - this.panel.Controls.Add(this.statusStrip); - this.panel.Controls.Add(this.tableLayoutPanel); - this.panel.Controls.Add(this.progressBarDownload); - this.panel.Controls.Add(this.labelDownload); - this.panel.Controls.Add(this.buttonCheckForUpdate); - this.panel.Controls.Add(this.buttonCancelDownload); - this.panel.Controls.Add(this.buttonDownload); - this.panel.Dock = System.Windows.Forms.DockStyle.Fill; - this.panel.Location = new System.Drawing.Point(0, 0); - this.panel.Name = "panel"; - this.panel.PanelBackStyle = Krypton.Toolkit.PaletteBackStyle.FormMain; - this.panel.Size = new System.Drawing.Size(473, 216); - this.panel.TabIndex = 0; - this.panel.TabStop = true; + panel.AccessibleDescription = "Groups the data"; + panel.AccessibleName = "pane"; + panel.AccessibleRole = AccessibleRole.Pane; + panel.Controls.Add(tableLayoutPanel); + panel.Controls.Add(progressBarDownload); + panel.Controls.Add(labelDownload); + panel.Controls.Add(buttonCheckForUpdate); + panel.Controls.Add(buttonCancelDownload); + panel.Controls.Add(buttonDownload); + panel.Dock = DockStyle.Fill; + panel.Location = new Point(0, 0); + panel.Name = "panel"; + panel.PanelBackStyle = PaletteBackStyle.FormMain; + panel.Size = new Size(473, 194); + panel.TabIndex = 0; + panel.TabStop = true; // // statusStrip // - this.statusStrip.AccessibleDescription = "Showss some information"; - this.statusStrip.AccessibleName = "Status bar of some information"; - this.statusStrip.AccessibleRole = System.Windows.Forms.AccessibleRole.StatusBar; - this.statusStrip.Font = new System.Drawing.Font("Segoe UI", 9F); - this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.labelInformation}); - this.statusStrip.Location = new System.Drawing.Point(0, 194); - this.statusStrip.Name = "statusStrip"; - this.statusStrip.ProgressBars = null; - this.statusStrip.RenderMode = System.Windows.Forms.ToolStripRenderMode.ManagerRenderMode; - this.statusStrip.Size = new System.Drawing.Size(473, 22); - this.statusStrip.SizingGrip = false; - this.statusStrip.TabIndex = 6; - this.statusStrip.Text = "status bar"; + statusStrip.AccessibleDescription = "Showss some information"; + statusStrip.AccessibleName = "Status bar of some information"; + statusStrip.AccessibleRole = AccessibleRole.StatusBar; + statusStrip.Dock = DockStyle.None; + statusStrip.Font = new Font("Segoe UI", 9F, FontStyle.Regular, GraphicsUnit.Point); + statusStrip.Items.AddRange(new ToolStripItem[] { labelInformation }); + statusStrip.Location = new Point(0, 0); + statusStrip.Name = "statusStrip"; + statusStrip.ProgressBars = null; + statusStrip.RenderMode = ToolStripRenderMode.ManagerRenderMode; + statusStrip.Size = new Size(473, 22); + statusStrip.SizingGrip = false; + statusStrip.TabIndex = 6; + statusStrip.Text = "status bar"; // // labelInformation // - this.labelInformation.AccessibleDescription = "Shows some information"; - this.labelInformation.AccessibleName = "Shows some information"; - this.labelInformation.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelInformation.AutoToolTip = true; - this.labelInformation.Image = global::Planetoid_DB.Properties.Resources.silk_lightbulb; - this.labelInformation.Margin = new System.Windows.Forms.Padding(5, 3, 0, 2); - this.labelInformation.Name = "labelInformation"; - this.labelInformation.Size = new System.Drawing.Size(144, 17); - this.labelInformation.Text = "some information here"; - this.labelInformation.ToolTipText = "Shows some information"; + labelInformation.AccessibleDescription = "Shows some information"; + labelInformation.AccessibleName = "Shows some information"; + labelInformation.AccessibleRole = AccessibleRole.StaticText; + labelInformation.AutoToolTip = true; + labelInformation.Image = Properties.Resources.silk_lightbulb; + labelInformation.Margin = new Padding(5, 3, 0, 2); + labelInformation.Name = "labelInformation"; + labelInformation.Size = new Size(144, 17); + labelInformation.Text = "some information here"; + labelInformation.ToolTipText = "Shows some information"; + // + // toolStripContainer + // + // + // toolStripContainer.BottomToolStripPanel + // + toolStripContainer.BottomToolStripPanel.Controls.Add(statusStrip); + // + // toolStripContainer.ContentPanel + // + toolStripContainer.ContentPanel.Controls.Add(panel); + toolStripContainer.ContentPanel.Size = new Size(473, 194); + toolStripContainer.Dock = DockStyle.Fill; + toolStripContainer.Location = new Point(0, 0); + toolStripContainer.Name = "toolStripContainer"; + toolStripContainer.Size = new Size(473, 216); + toolStripContainer.TabIndex = 1; // // DownloadUpdateForm // - this.AccessibleDescription = "Downloads the MPCORB.DAT"; - this.AccessibleName = "Download MPCORB.DAT"; - this.AccessibleRole = System.Windows.Forms.AccessibleRole.Dialog; - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(473, 216); - this.Controls.Add(this.panel); - this.Font = new System.Drawing.Font("Segoe UI", 8.5F); - this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "DownloadUpdateForm"; - this.ShowInTaskbar = false; - this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; - this.Text = "Download MPCORB.DAT"; - this.toolTip.SetToolTip(this, "Download MPCORB.DAT"); - this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.DownloadUpdateForm_FormClosing); - this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.DownloadUpdateForm_FormClosed); - this.Load += new System.EventHandler(this.DownloadUpdateForm_Load); - this.tableLayoutPanel.ResumeLayout(false); - this.tableLayoutPanel.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.panel)).EndInit(); - this.panel.ResumeLayout(false); - this.panel.PerformLayout(); - this.statusStrip.ResumeLayout(false); - this.statusStrip.PerformLayout(); - this.ResumeLayout(false); - - } + AccessibleDescription = "Downloads the MPCORB.DAT"; + AccessibleName = "Download MPCORB.DAT"; + AccessibleRole = AccessibleRole.Dialog; + AutoScaleDimensions = new SizeF(6F, 13F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(473, 216); + Controls.Add(toolStripContainer); + Font = new Font("Segoe UI", 8.5F, FontStyle.Regular, GraphicsUnit.Point); + FormBorderStyle = FormBorderStyle.FixedToolWindow; + Icon = (Icon)resources.GetObject("$this.Icon"); + MaximizeBox = false; + MinimizeBox = false; + Name = "DownloadUpdateForm"; + ShowInTaskbar = false; + StartPosition = FormStartPosition.CenterParent; + Text = "Download MPCORB.DAT"; + toolTip.SetToolTip(this, "Download MPCORB.DAT"); + FormClosing += DownloadUpdateForm_FormClosing; + FormClosed += DownloadUpdateForm_FormClosed; + Load += DownloadUpdateForm_Load; + tableLayoutPanel.ResumeLayout(false); + tableLayoutPanel.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)panel).EndInit(); + panel.ResumeLayout(false); + panel.PerformLayout(); + statusStrip.ResumeLayout(false); + statusStrip.PerformLayout(); + toolStripContainer.BottomToolStripPanel.ResumeLayout(false); + toolStripContainer.BottomToolStripPanel.PerformLayout(); + toolStripContainer.ContentPanel.ResumeLayout(false); + toolStripContainer.ResumeLayout(false); + toolStripContainer.PerformLayout(); + ResumeLayout(false); + } - #endregion + #endregion - private KryptonButton buttonDownload; - private KryptonLabel labelStatusValue; - private KryptonLabel labelDownload; - private KryptonButton buttonCancelDownload; - private KryptonLabel labelSourceValue; - private KryptonButton buttonCheckForUpdate; - private KryptonLabel labelDateValue; - private KryptonLabel labelSizeValue; - private System.Windows.Forms.ToolTip toolTip; + private KryptonButton buttonDownload; + private KryptonLabel labelStatusValue; + private KryptonLabel labelDownload; + private KryptonButton buttonCancelDownload; + private KryptonLabel labelSourceValue; + private KryptonButton buttonCheckForUpdate; + private KryptonLabel labelDateValue; + private KryptonLabel labelSizeValue; + private ToolTip toolTip; private KryptonLabel labelStatusText; private KryptonLabel labelDateText; private KryptonLabel labelSourceText; private KryptonLabel labelSizeText; private KryptonTableLayoutPanel tableLayoutPanel; - private KryptonPanel panel; + private KryptonPanel panel; private KryptonStatusStrip statusStrip; - private System.Windows.Forms.ToolStripStatusLabel labelInformation; + private ToolStripStatusLabel labelInformation; private KryptonProgressBar progressBarDownload; + private ToolStripContainer toolStripContainer; } } \ No newline at end of file diff --git a/DownloadUpdateForm.cs b/DownloadUpdateForm.cs index ab31194..774df76 100644 --- a/DownloadUpdateForm.cs +++ b/DownloadUpdateForm.cs @@ -1,7 +1,9 @@ using System.ComponentModel; using System.Diagnostics; using System.Globalization; +using System.IO; using System.Net; +using System.Net.Http; using System.Net.NetworkInformation; using Krypton.Toolkit; @@ -18,6 +20,8 @@ public partial class DownloadUpdateForm : KryptonForm private readonly Uri uriMPCORB = new(uriString: Properties.Resources.MpcorbUrl); private readonly WebClient webClient = new(); + private static readonly HttpClient client = new(); + #region Constructor /// @@ -42,10 +46,9 @@ public partial class DownloadUpdateForm : KryptonForm /// private static DateTime GetLastModified(Uri uri) { - HttpWebRequest req = (HttpWebRequest)WebRequest.Create(requestUri: uri); - HttpWebResponse resp = (HttpWebResponse)req.GetResponse(); - resp.Close(); - return resp.LastModified; + HttpWebRequest request = (HttpWebRequest)WebRequest.Create(requestUri: uri); + HttpWebResponse response = (HttpWebResponse)request.GetResponse(); + return response.StatusCode == HttpStatusCode.OK ? response.LastModified : new DateTime(year: 0, month: 0, day: 0, hour: 0, minute: 0, second: 0); } /// @@ -53,12 +56,11 @@ private static DateTime GetLastModified(Uri uri) /// /// /// - private static long GetContentLength(Uri uri) + private long GetContentLength(Uri uri) { - HttpWebRequest req = (HttpWebRequest)WebRequest.Create(requestUri: uri); - HttpWebResponse resp = (HttpWebResponse)req.GetResponse(); - resp.Close(); - return Convert.ToInt64(value: resp.ContentLength); + HttpWebRequest request = (HttpWebRequest)WebRequest.Create(requestUri: uri); + HttpWebResponse response = (HttpWebResponse)request.GetResponse(); + return response.StatusCode == HttpStatusCode.OK ? Convert.ToInt64(value: response.ContentLength) : 0; } /// diff --git a/DownloadUpdateForm.resx b/DownloadUpdateForm.resx index 9274c8a..22ec1fd 100644 --- a/DownloadUpdateForm.resx +++ b/DownloadUpdateForm.resx @@ -1,17 +1,17 @@ - @@ -124,16 +124,14 @@ iVBORw0KGgoAAAANSUhEUgAAAdkAAABqCAYAAADwbittAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wgAADsIBFShKgAAAAihJREFUeF7t2LFNRUEMAEHafTXSA2XQxkdYgsiZ/2YTjHQnF7CyPz6/vl/P8/zz - 9/f39/f3f8//4+8BALzPb19FFgACIgsAkYnsNgAA7myyABBwLgaAiMgCQGQiuw0AgDubLAAEnIsBICKy - ABCZyG4DAODOJgsAAediAIiILABEJrLbAAC4s8kCQMC5GAAiIgsAkYnsNgAA7myyABBwLgaAiMgCQGQi - uw0AgDubLAAEnIsBICKyABCZyG4DAODOJgsAAediAIiILABEJrLbAAC4s8kCQMC5GAAiIgsAkYnsNgAA - 7myyABBwLgaAiMgCQGQiuw0AgDubLAAEnIsBICKyABCZyG4DAODOJgsAAediAIiILABEJrLbAAC4s8kC - QMC5GAAiIgsAkYnsNgAA7myyABBwLgaAiMgCQGQiuw0AgDubLAAEnIsBICKyABCZyG4DAODOJgsAAedi - AIiILABEJrLbAAC4s8kCQMC5GAAiIgsAkYnsNgAA7myyABBwLgaAiMgCQGQiuw0AgDubLAAEnIsBICKy - ABCZyG4DAODOJgsAAediAIiILABEJrLbAAC4s8kCQMC5GAAiIgsAkYnsNgAA7myyABBwLgaAiMgCQGQi - uw0AgDubLAAEnIsBICKyABCZyG4DAODOJgsAAediAIiILABEJrLbAAC4s8kCQMC5GAAiIgsAkYnsNgAA - 7myyABBwLgaAiMgCQERkASAksgAQeJ7n9QO9bnOs98rOdQAAAABJRU5ErkJggg== + wgAADsIBFShKgAAAAa1JREFUeF7t1TEBACAQACH7V7KDMb6GlvA2BjKw9pkLAPwnWQCISBYAIpIFgIhk + ASAiWQCISBYAIpIFgIhkASAiWQCISBYAIpIFgIhkASAiWQCISBYAIpIFgIhkASAiWQCISBYAIpIFgIhk + ASAiWQCISBYAIpIFgIhkASAiWQCISBYAIpIFgIhkASAiWQCISBYAIpIFgIhkASAiWQCISBYAIpIFgIhk + ASAiWQCISBYAIpIFgIhkASAiWQCISBYAIpIFgIhkASAiWQCISBYAIpIFgIhkASAiWQCISBYAIpIFgIhk + ASAiWQCISBYAIpIFgIhkASAiWQCISBYAIpIFgIhkASAiWQCISBYAIpIFgIhkASAiWQCISBYAIpIFgIhk + ASAiWQCISBYAIpIFgIhkASAiWQCISBYAIpIFgIhkASAiWQCISBYAIpIFgIhkASAiWQCISBYAIpIFgIhk + ASAiWQCISBYAIpIFgIhkASAiWQCISBYAIpIFgIhkASAiWQCISBYAIpIFgIhkASAiWQCISBYAIpIFgIhk + ASAiWQCISBYAIpIFgIhkASAiWQBIzH005Nz+BmRYRgAAAABJRU5ErkJggg== diff --git a/ExportDataSheetForm.cs b/ExportDataSheetForm.cs index 3388059..0a6ef4d 100644 --- a/ExportDataSheetForm.cs +++ b/ExportDataSheetForm.cs @@ -1,5 +1,6 @@ using System.Collections; using System.Diagnostics; +using System.IO; using Krypton.Toolkit; namespace Planetoid_DB diff --git a/GlobalSuppressions.cs b/GlobalSuppressions.cs new file mode 100644 index 0000000..901f3da --- /dev/null +++ b/GlobalSuppressions.cs @@ -0,0 +1,8 @@ +// This file is used by Code Analysis to maintain SuppressMessage +// attributes that are applied to this project. +// Project-level suppressions either have no target or are given +// a specific target and scoped to a namespace, type, member, etc. + +using System.Diagnostics.CodeAnalysis; + +[assembly: SuppressMessage("Performance", "CA1806:Methodenergebnisse nicht ignorieren", Justification = "", Scope = "member", Target = "~M:Planetoid_DB.Program.Main")] diff --git a/Planetoid-DB.csproj b/Planetoid-DB.csproj index 9a8ca50..568815a 100644 --- a/Planetoid-DB.csproj +++ b/Planetoid-DB.csproj @@ -11,7 +11,6 @@ Planetoid_DB.Program Planetoid-DB-3.ico True - Planetoid-DB 0.7.0.25 Mijo Software Viewer for the MPC Orbit (MPCORB) Database @@ -19,53 +18,66 @@ PlanetoidDB3.png https://planetoid-db.de README.md - https://github.com/Mijo-Software/Planetoid-DB.git https://github.com/Mijo-Software/Planetoid-DB csharp;astronomy;mpc;minor-planets;planetoid;minor-planet-center en - False + True LICENSE true + True + False + $(AssemblyName) + Michael Johne @ Mijo Software 9999 + True 9999 + True 9999 + True 9999 + True 9999 + True 9999 + True 9999 + True 9999 + True 9999 + True 9999 + True diff --git a/PlanetoidDBForm.Designer.cs b/PlanetoidDBForm.Designer.cs index b305b49..cb93e92 100644 --- a/PlanetoidDBForm.Designer.cs +++ b/PlanetoidDBForm.Designer.cs @@ -25,4011 +25,3834 @@ protected override void Dispose(bool disposing) base.Dispose(disposing); } - #region Vom Windows Form-Designer generierter Code + #region Vom Windows Form-Designer generierter Code - /// - /// Erforderliche Methode für die Designerunterstützung. - /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden. - /// - private void InitializeComponent() - { - this.components = new System.ComponentModel.Container(); + /// + /// Erforderliche Methode für die Designerunterstützung. + /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden. + /// + private void InitializeComponent() + { + components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PlanetoidDBForm)); - this.contextMenuNavigationStep = new System.Windows.Forms.ContextMenuStrip(this.components); - this.menuitemNavigateStep10 = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemNavigateStep100 = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemNavigateStep1000 = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemNavigateStep10000 = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemNavigateStep100000 = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemNavigateSomeDataBackward = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemNavigateSomeDataForward = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSplitButtonStepForward = new System.Windows.Forms.ToolStripSplitButton(); - this.toolStripSplitButtonStepBackward = new System.Windows.Forms.ToolStripSplitButton(); - this.tableLayoutPanelData = new Krypton.Toolkit.KryptonTableLayoutPanel(); - this.labelIndexData = new Krypton.Toolkit.KryptonLabel(); - this.labelReadableDesignationData = new Krypton.Toolkit.KryptonLabel(); - this.labelEpochData = new Krypton.Toolkit.KryptonLabel(); - this.labelMeanAnomalyAtTheEpochData = new Krypton.Toolkit.KryptonLabel(); - this.labelArgumentOfPerihelionData = new Krypton.Toolkit.KryptonLabel(); - this.labelLongitudeOfTheAscendingNodeData = new Krypton.Toolkit.KryptonLabel(); - this.labelInclinationToTheEclipticData = new Krypton.Toolkit.KryptonLabel(); - this.labelOrbitalEccentricityData = new Krypton.Toolkit.KryptonLabel(); - this.labelMeanDailyMotionData = new Krypton.Toolkit.KryptonLabel(); - this.labelSemiMajorAxisData = new Krypton.Toolkit.KryptonLabel(); - this.labelAbsoluteMagnitudeData = new Krypton.Toolkit.KryptonLabel(); - this.labelSlopeParameterData = new Krypton.Toolkit.KryptonLabel(); - this.labelReferenceData = new Krypton.Toolkit.KryptonLabel(); - this.labelNumberOfOppositionsData = new Krypton.Toolkit.KryptonLabel(); - this.labelNumberOfObservationsData = new Krypton.Toolkit.KryptonLabel(); - this.labelObservationSpanData = new Krypton.Toolkit.KryptonLabel(); - this.labelRmsResidualData = new Krypton.Toolkit.KryptonLabel(); - this.labelComputerNameData = new Krypton.Toolkit.KryptonLabel(); - this.labelFlagsData = new Krypton.Toolkit.KryptonLabel(); - this.labelDateLastObservationData = new Krypton.Toolkit.KryptonLabel(); - this.labelIndexDesc = new Krypton.Toolkit.KryptonLabel(); - this.labelReadableDesignationDesc = new Krypton.Toolkit.KryptonLabel(); - this.labelEpochDesc = new Krypton.Toolkit.KryptonLabel(); - this.labelMeanAnomalyAtTheEpochDesc = new Krypton.Toolkit.KryptonLabel(); - this.labelArgumentOfPerihelionDesc = new Krypton.Toolkit.KryptonLabel(); - this.labelLongitudeOfTheAscendingNodeDesc = new Krypton.Toolkit.KryptonLabel(); - this.labelInclinationToTheEclipticDesc = new Krypton.Toolkit.KryptonLabel(); - this.labelOrbitalEccentricityDesc = new Krypton.Toolkit.KryptonLabel(); - this.labelMeanDailyMotionDesc = new Krypton.Toolkit.KryptonLabel(); - this.labelSemiMajorAxisDesc = new Krypton.Toolkit.KryptonLabel(); - this.labelAbsoluteMagnitudeDesc = new Krypton.Toolkit.KryptonLabel(); - this.labelSlopeParameterDesc = new Krypton.Toolkit.KryptonLabel(); - this.labelReferenceDesc = new Krypton.Toolkit.KryptonLabel(); - this.labelNumberOfOppositionsDesc = new Krypton.Toolkit.KryptonLabel(); - this.labelNumberOfObservationsDesc = new Krypton.Toolkit.KryptonLabel(); - this.labelObservationSpanDesc = new Krypton.Toolkit.KryptonLabel(); - this.labelRmsResidualDesc = new Krypton.Toolkit.KryptonLabel(); - this.labelComputerNameDesc = new Krypton.Toolkit.KryptonLabel(); - this.labelFlagsDesc = new Krypton.Toolkit.KryptonLabel(); - this.labelDateLastObservationDesc = new Krypton.Toolkit.KryptonLabel(); - this.toolTip = new System.Windows.Forms.ToolTip(this.components); - this.contextMenuTopTenRecords = new System.Windows.Forms.ContextMenuStrip(this.components); - this.menuitemRecordsSortDirection = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemRecordsSortDirectionAscending = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemRecordsSortDirectionDescending = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator12 = new System.Windows.Forms.ToolStripSeparator(); - this.menuitemRecordsMeanAnomalyAtTheEpoch = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemRecordsArgumentOfPerihelion = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemRecordsLongitudeOfTheAscendingNode = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemRecordsInclination = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemRecordsOrbitalEccentricity = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemRecordsMeanDailyMotion = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemRecordsSemiMajorAxis = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemRecordsAbsoluteMagnitude = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemRecordsSlopeParameter = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemRecordsNumberOfOppositions = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemRecordsNumberOfObservations = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemRecordsObservationSpan = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemRecordsRmsResidual = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemRecordsComputername = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemRecordsDateOfTheLastObservation = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemRecords = new System.Windows.Forms.ToolStripMenuItem(); - this.contextMenuDistributions = new System.Windows.Forms.ContextMenuStrip(this.components); - this.menuitemDistributionMeanAnomalyAtTheEpoch = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemDistributionArgumentOfPerihelion = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemDistributionLongitudeOfTheAscendingNode = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemDistributionInclination = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemDistributionOrbitalEccentricity = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemDistributionMeanDailyMotion = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemDistributionSemiMajorAxis = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemDistributionAbsoluteMagnitude = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemDistributionSlopeParameter = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemDistributionNumberOfOppositions = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemDistributionNumberOfObservations = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemDistributionObservationSpan = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemDistributionRmsResidual = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemDistributionComputerName = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemDistribution = new System.Windows.Forms.ToolStripMenuItem(); - this.contextMenuCopyToClipboardOrbitalElements = new System.Windows.Forms.ContextMenuStrip(this.components); - this.menuitemCopyToClipboardIndexNumber = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemCopyToClipboardReadableDesignation = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemCopyToClipboardEpoch = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemCopyToClipboardMeanAnomalyAtTheEpoch = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemCopyToClipboardArgumentOfPerihelion = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemCopyToClipboardLongitudeOfTheAscendingNode = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemCopyToClipboardInclinationToTheEcliptic = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemCopyToClipboardOrbitalEccentricity = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemCopyToClipboardMeanDailyMotion = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemCopyToClipboardSemiMajorAxis = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemCopyToClipboardAbsoluteMagnitude = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemCopyToClipboardSlopeParameter = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemCopyToClipboardReference = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemCopyToClipboardNumberOfOppositions = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemCopyToClipboardNumberOfObservations = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemCopyToClipboardObservationSpan = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemCopyToClipboardRmsResidual = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemCopyToClipboardComputerName = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemCopyToClipboardDateOfTheLastObservation = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemCopyToClipboardFlags = new System.Windows.Forms.ToolStripMenuItem(); - this.splitbuttonCopyToClipboard = new System.Windows.Forms.ToolStripSplitButton(); - this.menu = new System.Windows.Forms.MenuStrip(); - this.menuitemFile = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemOpenALocalMpcorbdatFile = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator13 = new System.Windows.Forms.ToolStripSeparator(); - this.menuitemExportDataEntry = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemPrint = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparatorFile1 = new System.Windows.Forms.ToolStripSeparator(); - this.menuitemRestart = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemExit = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemEdit = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemCopytoClipboard = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemSearch = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemNavigation = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemRandomMinorPlanet = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparatorNavigation1 = new System.Windows.Forms.ToolStripSeparator(); - this.menuitemNavigateToTheBeginning = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemNavigateToThePreviousData = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemNavigateToTheNextData = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemNavigateToTheEnd = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemTools = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemDerivatedOrbitElements = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemFilter = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparatorTools1 = new System.Windows.Forms.ToolStripSeparator(); - this.toolStripSeparator10 = new System.Windows.Forms.ToolStripSeparator(); - this.toolStripSeparatorTools2 = new System.Windows.Forms.ToolStripSeparator(); - this.menuitemDatabaseInformation = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemTableMode = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemTerminology = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemUpdate = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemCheckMpcorbDat = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemDownloadMpcorbDat = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemOptions = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemSettings = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemStyle = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemIconsetSilk = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemIconsetFugue = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemIconsetFatcow = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparatorOptions = new System.Windows.Forms.ToolStripSeparator(); - this.menuitemOptionStayOnTop = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemOptionEnabledCopyingByDoubleClicking = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemOptionEnableLinkingToTerminology = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemHelp = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemAbout = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparatorMisc1 = new System.Windows.Forms.ToolStripSeparator(); - this.menuitemOpenWebsitePDB = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemOpenWebsiteMPC = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemOpenMPCORBWebsite = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripContainer = new System.Windows.Forms.ToolStripContainer(); - this.statusBar = new Krypton.Toolkit.KryptonStatusStrip(); - this.toolStripStatusLabelUpdate = new System.Windows.Forms.ToolStripStatusLabel(); - this.toolStripStatusLabelBackgroundDownload = new System.Windows.Forms.ToolStripStatusLabel(); - this.toolStripProgressBarBackgroundDownload = new System.Windows.Forms.ToolStripProgressBar(); - this.toolStripStatusLabelCancelBackgroundDownload = new System.Windows.Forms.ToolStripStatusLabel(); - this.labelInformation = new System.Windows.Forms.ToolStripStatusLabel(); - this.toolStripIcons = new System.Windows.Forms.ToolStrip(); - this.toolStripButtonOpen = new System.Windows.Forms.ToolStripButton(); - this.toolStripButtonExport = new System.Windows.Forms.ToolStripButton(); - this.toolStripButtonPrint = new System.Windows.Forms.ToolStripButton(); - this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator(); - this.toolStripButtonDatabaseInformation = new System.Windows.Forms.ToolStripButton(); - this.toolStripButtonTableMode = new System.Windows.Forms.ToolStripButton(); - this.toolStripButtonTerminology = new System.Windows.Forms.ToolStripButton(); - this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator(); - this.splitbuttonTopTenRecords = new System.Windows.Forms.ToolStripSplitButton(); - this.splitbuttonDistribution = new System.Windows.Forms.ToolStripSplitButton(); - this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator(); - this.toolStripButtonCheckMpcorbDat = new System.Windows.Forms.ToolStripButton(); - this.toolStripButtonDownloadMpcorbDat = new System.Windows.Forms.ToolStripButton(); - this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); - this.toolStripButtonAbout = new System.Windows.Forms.ToolStripButton(); - this.toolStripButtonOpenWebsitePDB = new System.Windows.Forms.ToolStripButton(); - this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); - this.toolStripLabelQuickSearch = new System.Windows.Forms.ToolStripLabel(); - this.toolStripTextBoxSearch = new System.Windows.Forms.ToolStripTextBox(); - this.splitbuttonSearch = new System.Windows.Forms.ToolStripSplitButton(); - this.menuitemSearchIndex = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemSearchReadableDesignation = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemSearchEpoch = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemSearchMeanAnomalyAtTheEpoch = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemSearchArgumentOfPerihelion = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemSearchLongitudeOfTheAscendingNode = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemSearchInclination = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemSearchOrbitalEccentricity = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemSearchMeanDailyMotion = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemSearchSemiMajorAxis = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemSearchAbsoluteMagnitude = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemSearchSlopeParameter = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemSearchReference = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemSearchNumberOfOppositions = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemSearchNumberOfObservations = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemSearchObservationSpan = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemSearchRmsResidual = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemSearchComputerName = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemSearchDateOfTheLastObservation = new System.Windows.Forms.ToolStripMenuItem(); - this.menuitemSearchFlags = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripNavigation = new System.Windows.Forms.ToolStrip(); - this.toolStripButtonLoadRandomMinorPlanet = new System.Windows.Forms.ToolStripButton(); - this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator(); - this.toolStripButtonStepToBegin = new System.Windows.Forms.ToolStripButton(); - this.toolStripButtonStepBackwardOne = new System.Windows.Forms.ToolStripButton(); - this.toolStripButtonStepForwardOne = new System.Windows.Forms.ToolStripButton(); - this.toolStripButtonStepToEnd = new System.Windows.Forms.ToolStripButton(); - this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator(); - this.toolStripLabelGoToIndex = new System.Windows.Forms.ToolStripLabel(); - this.toolStripTextBoxGotoIndex = new System.Windows.Forms.ToolStripTextBox(); - this.toolStripButtonGoToIndex = new System.Windows.Forms.ToolStripButton(); - this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator(); - this.toolStripLabelIndexPosition = new System.Windows.Forms.ToolStripLabel(); - this.toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator(); - this.toolStripButtonDerivatedOrbitElements = new System.Windows.Forms.ToolStripButton(); - this.toolStripButtonFilter = new System.Windows.Forms.ToolStripButton(); - this.toolStripSeparatorOptions2 = new System.Windows.Forms.ToolStripSeparator(); - this.toolStripSeparatorOptions1 = new System.Windows.Forms.ToolStripSeparator(); - this.backgroundWorkerLoadingDatabase = new System.ComponentModel.BackgroundWorker(); - this.timerBlinkForUpdateAvailable = new System.Windows.Forms.Timer(this.components); - this.timerCheckForNewMpcorbDatFile = new System.Windows.Forms.Timer(this.components); - this.contextMenuNavigationStep.SuspendLayout(); - this.tableLayoutPanelData.SuspendLayout(); - this.contextMenuTopTenRecords.SuspendLayout(); - this.contextMenuDistributions.SuspendLayout(); - this.contextMenuCopyToClipboardOrbitalElements.SuspendLayout(); - this.menu.SuspendLayout(); - this.toolStripContainer.BottomToolStripPanel.SuspendLayout(); - this.toolStripContainer.ContentPanel.SuspendLayout(); - this.toolStripContainer.TopToolStripPanel.SuspendLayout(); - this.toolStripContainer.SuspendLayout(); - this.statusBar.SuspendLayout(); - this.toolStripIcons.SuspendLayout(); - this.toolStripNavigation.SuspendLayout(); - this.SuspendLayout(); + contextMenuNavigationStep = new ContextMenuStrip(components); + menuitemNavigateStep10 = new ToolStripMenuItem(); + menuitemNavigateStep100 = new ToolStripMenuItem(); + menuitemNavigateStep1000 = new ToolStripMenuItem(); + menuitemNavigateStep10000 = new ToolStripMenuItem(); + menuitemNavigateStep100000 = new ToolStripMenuItem(); + toolStripSplitButtonStepBackward = new ToolStripSplitButton(); + menuitemNavigateSomeDataBackward = new ToolStripMenuItem(); + menuitemNavigateSomeDataForward = new ToolStripMenuItem(); + toolStripSplitButtonStepForward = new ToolStripSplitButton(); + tableLayoutPanelData = new KryptonTableLayoutPanel(); + labelIndexData = new KryptonLabel(); + labelReadableDesignationData = new KryptonLabel(); + labelEpochData = new KryptonLabel(); + labelMeanAnomalyAtTheEpochData = new KryptonLabel(); + labelArgumentOfPerihelionData = new KryptonLabel(); + labelLongitudeOfTheAscendingNodeData = new KryptonLabel(); + labelInclinationToTheEclipticData = new KryptonLabel(); + labelOrbitalEccentricityData = new KryptonLabel(); + labelMeanDailyMotionData = new KryptonLabel(); + labelSemiMajorAxisData = new KryptonLabel(); + labelAbsoluteMagnitudeData = new KryptonLabel(); + labelSlopeParameterData = new KryptonLabel(); + labelReferenceData = new KryptonLabel(); + labelNumberOfOppositionsData = new KryptonLabel(); + labelNumberOfObservationsData = new KryptonLabel(); + labelObservationSpanData = new KryptonLabel(); + labelRmsResidualData = new KryptonLabel(); + labelComputerNameData = new KryptonLabel(); + labelFlagsData = new KryptonLabel(); + labelDateLastObservationData = new KryptonLabel(); + labelIndexDesc = new KryptonLabel(); + labelReadableDesignationDesc = new KryptonLabel(); + labelEpochDesc = new KryptonLabel(); + labelMeanAnomalyAtTheEpochDesc = new KryptonLabel(); + labelArgumentOfPerihelionDesc = new KryptonLabel(); + labelLongitudeOfTheAscendingNodeDesc = new KryptonLabel(); + labelInclinationToTheEclipticDesc = new KryptonLabel(); + labelOrbitalEccentricityDesc = new KryptonLabel(); + labelMeanDailyMotionDesc = new KryptonLabel(); + labelSemiMajorAxisDesc = new KryptonLabel(); + labelAbsoluteMagnitudeDesc = new KryptonLabel(); + labelSlopeParameterDesc = new KryptonLabel(); + labelReferenceDesc = new KryptonLabel(); + labelNumberOfOppositionsDesc = new KryptonLabel(); + labelNumberOfObservationsDesc = new KryptonLabel(); + labelObservationSpanDesc = new KryptonLabel(); + labelRmsResidualDesc = new KryptonLabel(); + labelComputerNameDesc = new KryptonLabel(); + labelFlagsDesc = new KryptonLabel(); + labelDateLastObservationDesc = new KryptonLabel(); + toolTip = new ToolTip(components); + contextMenuTopTenRecords = new ContextMenuStrip(components); + menuitemRecordsSortDirection = new ToolStripMenuItem(); + menuitemRecordsSortDirectionAscending = new ToolStripMenuItem(); + menuitemRecordsSortDirectionDescending = new ToolStripMenuItem(); + toolStripSeparator12 = new ToolStripSeparator(); + menuitemRecordsMeanAnomalyAtTheEpoch = new ToolStripMenuItem(); + menuitemRecordsArgumentOfPerihelion = new ToolStripMenuItem(); + menuitemRecordsLongitudeOfTheAscendingNode = new ToolStripMenuItem(); + menuitemRecordsInclination = new ToolStripMenuItem(); + menuitemRecordsOrbitalEccentricity = new ToolStripMenuItem(); + menuitemRecordsMeanDailyMotion = new ToolStripMenuItem(); + menuitemRecordsSemiMajorAxis = new ToolStripMenuItem(); + menuitemRecordsAbsoluteMagnitude = new ToolStripMenuItem(); + menuitemRecordsSlopeParameter = new ToolStripMenuItem(); + menuitemRecordsNumberOfOppositions = new ToolStripMenuItem(); + menuitemRecordsNumberOfObservations = new ToolStripMenuItem(); + menuitemRecordsObservationSpan = new ToolStripMenuItem(); + menuitemRecordsRmsResidual = new ToolStripMenuItem(); + menuitemRecordsComputername = new ToolStripMenuItem(); + menuitemRecordsDateOfTheLastObservation = new ToolStripMenuItem(); + splitbuttonTopTenRecords = new ToolStripSplitButton(); + contextMenuDistributions = new ContextMenuStrip(components); + menuitemDistributionMeanAnomalyAtTheEpoch = new ToolStripMenuItem(); + menuitemDistributionArgumentOfPerihelion = new ToolStripMenuItem(); + menuitemDistributionLongitudeOfTheAscendingNode = new ToolStripMenuItem(); + menuitemDistributionInclination = new ToolStripMenuItem(); + menuitemDistributionOrbitalEccentricity = new ToolStripMenuItem(); + menuitemDistributionMeanDailyMotion = new ToolStripMenuItem(); + menuitemDistributionSemiMajorAxis = new ToolStripMenuItem(); + menuitemDistributionAbsoluteMagnitude = new ToolStripMenuItem(); + menuitemDistributionSlopeParameter = new ToolStripMenuItem(); + menuitemDistributionNumberOfOppositions = new ToolStripMenuItem(); + menuitemDistributionNumberOfObservations = new ToolStripMenuItem(); + menuitemDistributionObservationSpan = new ToolStripMenuItem(); + menuitemDistributionRmsResidual = new ToolStripMenuItem(); + menuitemDistributionComputerName = new ToolStripMenuItem(); + splitbuttonDistribution = new ToolStripSplitButton(); + contextMenuCopyToClipboardOrbitalElements = new ContextMenuStrip(components); + menuitemCopyToClipboardIndexNumber = new ToolStripMenuItem(); + menuitemCopyToClipboardReadableDesignation = new ToolStripMenuItem(); + menuitemCopyToClipboardEpoch = new ToolStripMenuItem(); + menuitemCopyToClipboardMeanAnomalyAtTheEpoch = new ToolStripMenuItem(); + menuitemCopyToClipboardArgumentOfPerihelion = new ToolStripMenuItem(); + menuitemCopyToClipboardLongitudeOfTheAscendingNode = new ToolStripMenuItem(); + menuitemCopyToClipboardInclinationToTheEcliptic = new ToolStripMenuItem(); + menuitemCopyToClipboardOrbitalEccentricity = new ToolStripMenuItem(); + menuitemCopyToClipboardMeanDailyMotion = new ToolStripMenuItem(); + menuitemCopyToClipboardSemiMajorAxis = new ToolStripMenuItem(); + menuitemCopyToClipboardAbsoluteMagnitude = new ToolStripMenuItem(); + menuitemCopyToClipboardSlopeParameter = new ToolStripMenuItem(); + menuitemCopyToClipboardReference = new ToolStripMenuItem(); + menuitemCopyToClipboardNumberOfOppositions = new ToolStripMenuItem(); + menuitemCopyToClipboardNumberOfObservations = new ToolStripMenuItem(); + menuitemCopyToClipboardObservationSpan = new ToolStripMenuItem(); + menuitemCopyToClipboardRmsResidual = new ToolStripMenuItem(); + menuitemCopyToClipboardComputerName = new ToolStripMenuItem(); + menuitemCopyToClipboardDateOfTheLastObservation = new ToolStripMenuItem(); + menuitemCopyToClipboardFlags = new ToolStripMenuItem(); + menuitemCopytoClipboard = new ToolStripMenuItem(); + menu = new MenuStrip(); + menuitemFile = new ToolStripMenuItem(); + menuitemOpenALocalMpcorbdatFile = new ToolStripMenuItem(); + toolStripSeparator13 = new ToolStripSeparator(); + menuitemExportDataEntry = new ToolStripMenuItem(); + menuitemPrint = new ToolStripMenuItem(); + toolStripSeparatorFile1 = new ToolStripSeparator(); + menuitemRestart = new ToolStripMenuItem(); + menuitemExit = new ToolStripMenuItem(); + menuitemEdit = new ToolStripMenuItem(); + menuitemSearch = new ToolStripMenuItem(); + menuitemNavigation = new ToolStripMenuItem(); + menuitemRandomMinorPlanet = new ToolStripMenuItem(); + toolStripSeparatorNavigation1 = new ToolStripSeparator(); + menuitemNavigateToTheBeginning = new ToolStripMenuItem(); + menuitemNavigateToThePreviousData = new ToolStripMenuItem(); + menuitemNavigateToTheNextData = new ToolStripMenuItem(); + menuitemNavigateToTheEnd = new ToolStripMenuItem(); + menuitemTools = new ToolStripMenuItem(); + menuitemDerivatedOrbitElements = new ToolStripMenuItem(); + menuitemFilter = new ToolStripMenuItem(); + toolStripSeparatorTools1 = new ToolStripSeparator(); + menuitemRecords = new ToolStripMenuItem(); + toolStripSeparator10 = new ToolStripSeparator(); + menuitemDistribution = new ToolStripMenuItem(); + toolStripSeparatorTools2 = new ToolStripSeparator(); + menuitemDatabaseInformation = new ToolStripMenuItem(); + menuitemTableMode = new ToolStripMenuItem(); + menuitemTerminology = new ToolStripMenuItem(); + menuitemUpdate = new ToolStripMenuItem(); + menuitemCheckMpcorbDat = new ToolStripMenuItem(); + menuitemDownloadMpcorbDat = new ToolStripMenuItem(); + menuitemOptions = new ToolStripMenuItem(); + menuitemSettings = new ToolStripMenuItem(); + menuitemStyle = new ToolStripMenuItem(); + menuitemIconsetSilk = new ToolStripMenuItem(); + menuitemIconsetFugue = new ToolStripMenuItem(); + menuitemIconsetFatcow = new ToolStripMenuItem(); + toolStripSeparatorOptions = new ToolStripSeparator(); + menuitemOptionStayOnTop = new ToolStripMenuItem(); + menuitemOptionEnabledCopyingByDoubleClicking = new ToolStripMenuItem(); + menuitemOptionEnableLinkingToTerminology = new ToolStripMenuItem(); + menuitemHelp = new ToolStripMenuItem(); + menuitemAbout = new ToolStripMenuItem(); + toolStripSeparatorMisc1 = new ToolStripSeparator(); + menuitemOpenWebsitePDB = new ToolStripMenuItem(); + menuitemOpenWebsiteMPC = new ToolStripMenuItem(); + menuitemOpenMPCORBWebsite = new ToolStripMenuItem(); + toolStripContainer = new ToolStripContainer(); + statusBar = new KryptonStatusStrip(); + toolStripStatusLabelUpdate = new ToolStripStatusLabel(); + toolStripStatusLabelBackgroundDownload = new ToolStripStatusLabel(); + toolStripProgressBarBackgroundDownload = new ToolStripProgressBar(); + toolStripStatusLabelCancelBackgroundDownload = new ToolStripStatusLabel(); + labelInformation = new ToolStripStatusLabel(); + toolStripIcons = new ToolStrip(); + toolStripButtonOpen = new ToolStripButton(); + toolStripButtonExport = new ToolStripButton(); + toolStripButtonPrint = new ToolStripButton(); + splitbuttonCopyToClipboard = new ToolStripSplitButton(); + toolStripSeparator4 = new ToolStripSeparator(); + toolStripButtonDatabaseInformation = new ToolStripButton(); + toolStripButtonTableMode = new ToolStripButton(); + toolStripButtonTerminology = new ToolStripButton(); + toolStripSeparator3 = new ToolStripSeparator(); + toolStripSeparator5 = new ToolStripSeparator(); + toolStripButtonCheckMpcorbDat = new ToolStripButton(); + toolStripButtonDownloadMpcorbDat = new ToolStripButton(); + toolStripSeparator1 = new ToolStripSeparator(); + toolStripButtonAbout = new ToolStripButton(); + toolStripButtonOpenWebsitePDB = new ToolStripButton(); + toolStripSeparator2 = new ToolStripSeparator(); + toolStripLabelQuickSearch = new ToolStripLabel(); + toolStripTextBoxSearch = new ToolStripTextBox(); + splitbuttonSearch = new ToolStripSplitButton(); + menuitemSearchIndex = new ToolStripMenuItem(); + menuitemSearchReadableDesignation = new ToolStripMenuItem(); + menuitemSearchEpoch = new ToolStripMenuItem(); + menuitemSearchMeanAnomalyAtTheEpoch = new ToolStripMenuItem(); + menuitemSearchArgumentOfPerihelion = new ToolStripMenuItem(); + menuitemSearchLongitudeOfTheAscendingNode = new ToolStripMenuItem(); + menuitemSearchInclination = new ToolStripMenuItem(); + menuitemSearchOrbitalEccentricity = new ToolStripMenuItem(); + menuitemSearchMeanDailyMotion = new ToolStripMenuItem(); + menuitemSearchSemiMajorAxis = new ToolStripMenuItem(); + menuitemSearchAbsoluteMagnitude = new ToolStripMenuItem(); + menuitemSearchSlopeParameter = new ToolStripMenuItem(); + menuitemSearchReference = new ToolStripMenuItem(); + menuitemSearchNumberOfOppositions = new ToolStripMenuItem(); + menuitemSearchNumberOfObservations = new ToolStripMenuItem(); + menuitemSearchObservationSpan = new ToolStripMenuItem(); + menuitemSearchRmsResidual = new ToolStripMenuItem(); + menuitemSearchComputerName = new ToolStripMenuItem(); + menuitemSearchDateOfTheLastObservation = new ToolStripMenuItem(); + menuitemSearchFlags = new ToolStripMenuItem(); + toolStripNavigation = new ToolStrip(); + toolStripButtonLoadRandomMinorPlanet = new ToolStripButton(); + toolStripSeparator8 = new ToolStripSeparator(); + toolStripButtonStepToBegin = new ToolStripButton(); + toolStripButtonStepBackwardOne = new ToolStripButton(); + toolStripButtonStepForwardOne = new ToolStripButton(); + toolStripButtonStepToEnd = new ToolStripButton(); + toolStripSeparator6 = new ToolStripSeparator(); + toolStripLabelGoToIndex = new ToolStripLabel(); + toolStripTextBoxGotoIndex = new ToolStripTextBox(); + toolStripButtonGoToIndex = new ToolStripButton(); + toolStripSeparator7 = new ToolStripSeparator(); + toolStripLabelIndexPosition = new ToolStripLabel(); + toolStripSeparator9 = new ToolStripSeparator(); + toolStripButtonDerivatedOrbitElements = new ToolStripButton(); + toolStripButtonFilter = new ToolStripButton(); + toolStripSeparatorOptions2 = new ToolStripSeparator(); + toolStripSeparatorOptions1 = new ToolStripSeparator(); + backgroundWorkerLoadingDatabase = new System.ComponentModel.BackgroundWorker(); + timerBlinkForUpdateAvailable = new System.Windows.Forms.Timer(components); + timerCheckForNewMpcorbDatFile = new System.Windows.Forms.Timer(components); + contextMenuNavigationStep.SuspendLayout(); + tableLayoutPanelData.SuspendLayout(); + contextMenuTopTenRecords.SuspendLayout(); + contextMenuDistributions.SuspendLayout(); + contextMenuCopyToClipboardOrbitalElements.SuspendLayout(); + menu.SuspendLayout(); + toolStripContainer.BottomToolStripPanel.SuspendLayout(); + toolStripContainer.ContentPanel.SuspendLayout(); + toolStripContainer.TopToolStripPanel.SuspendLayout(); + toolStripContainer.SuspendLayout(); + statusBar.SuspendLayout(); + toolStripIcons.SuspendLayout(); + toolStripNavigation.SuspendLayout(); + SuspendLayout(); // // contextMenuNavigationStep // - this.contextMenuNavigationStep.AccessibleDescription = "Shows the context menu of data items"; - this.contextMenuNavigationStep.AccessibleName = "Context menu of items"; - this.contextMenuNavigationStep.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuPopup; - this.contextMenuNavigationStep.Font = new System.Drawing.Font("Segoe UI", 9F); - this.contextMenuNavigationStep.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.menuitemNavigateStep10, - this.menuitemNavigateStep100, - this.menuitemNavigateStep1000, - this.menuitemNavigateStep10000, - this.menuitemNavigateStep100000}); - this.contextMenuNavigationStep.Name = "contextMenu"; - this.contextMenuNavigationStep.OwnerItem = this.toolStripSplitButtonStepBackward; - this.contextMenuNavigationStep.ShowCheckMargin = true; - this.contextMenuNavigationStep.ShowImageMargin = false; - this.contextMenuNavigationStep.Size = new System.Drawing.Size(111, 114); - this.contextMenuNavigationStep.TabStop = true; - this.contextMenuNavigationStep.Text = "Navigation step"; - this.toolTip.SetToolTip(this.contextMenuNavigationStep, "Show the context name of data items"); - this.contextMenuNavigationStep.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.contextMenuNavigationStep.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + contextMenuNavigationStep.AccessibleDescription = "Shows the context menu of data items"; + contextMenuNavigationStep.AccessibleName = "Context menu of items"; + contextMenuNavigationStep.AccessibleRole = AccessibleRole.MenuPopup; + contextMenuNavigationStep.Font = new Font("Segoe UI", 9F, FontStyle.Regular, GraphicsUnit.Point); + contextMenuNavigationStep.Items.AddRange(new ToolStripItem[] { menuitemNavigateStep10, menuitemNavigateStep100, menuitemNavigateStep1000, menuitemNavigateStep10000, menuitemNavigateStep100000 }); + contextMenuNavigationStep.Name = "contextMenu"; + contextMenuNavigationStep.OwnerItem = toolStripSplitButtonStepForward; + contextMenuNavigationStep.ShowCheckMargin = true; + contextMenuNavigationStep.ShowImageMargin = false; + contextMenuNavigationStep.Size = new Size(111, 114); + contextMenuNavigationStep.TabStop = true; + contextMenuNavigationStep.Text = "Navigation step"; + toolTip.SetToolTip(contextMenuNavigationStep, "Show the context name of data items"); + contextMenuNavigationStep.MouseEnter += SetStatusbar_Enter; + contextMenuNavigationStep.MouseLeave += ClearStatusbar_Leave; // // menuitemNavigateStep10 // - this.menuitemNavigateStep10.AccessibleDescription = "Jumps 10 items backward/forward"; - this.menuitemNavigateStep10.AccessibleName = "Jumps 10 items backward/forward"; - this.menuitemNavigateStep10.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemNavigateStep10.CheckOnClick = true; - this.menuitemNavigateStep10.Name = "menuitemNavigateStep10"; - this.menuitemNavigateStep10.Size = new System.Drawing.Size(110, 22); - this.menuitemNavigateStep10.Text = "10"; - this.menuitemNavigateStep10.ToolTipText = "Jump 10 items backward/forward"; - this.menuitemNavigateStep10.Click += new System.EventHandler(this.ToolStripMenuItem10_Click); - this.menuitemNavigateStep10.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemNavigateStep10.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemNavigateStep10.AccessibleDescription = "Jumps 10 items backward/forward"; + menuitemNavigateStep10.AccessibleName = "Jumps 10 items backward/forward"; + menuitemNavigateStep10.AccessibleRole = AccessibleRole.MenuItem; + menuitemNavigateStep10.CheckOnClick = true; + menuitemNavigateStep10.Name = "menuitemNavigateStep10"; + menuitemNavigateStep10.Size = new Size(110, 22); + menuitemNavigateStep10.Text = "10"; + menuitemNavigateStep10.ToolTipText = "Jump 10 items backward/forward"; + menuitemNavigateStep10.Click += ToolStripMenuItem10_Click; + menuitemNavigateStep10.MouseEnter += SetStatusbar_Enter; + menuitemNavigateStep10.MouseLeave += ClearStatusbar_Leave; // // menuitemNavigateStep100 // - this.menuitemNavigateStep100.AccessibleDescription = "Jumps 100 items backward/forward"; - this.menuitemNavigateStep100.AccessibleName = "Jumps 100 items backward/forward"; - this.menuitemNavigateStep100.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemNavigateStep100.Checked = true; - this.menuitemNavigateStep100.CheckOnClick = true; - this.menuitemNavigateStep100.CheckState = System.Windows.Forms.CheckState.Checked; - this.menuitemNavigateStep100.Name = "menuitemNavigateStep100"; - this.menuitemNavigateStep100.Size = new System.Drawing.Size(110, 22); - this.menuitemNavigateStep100.Text = "100"; - this.menuitemNavigateStep100.ToolTipText = "Jump 100 items backward/forward"; - this.menuitemNavigateStep100.Click += new System.EventHandler(this.ToolStripMenuItem100_Click); - this.menuitemNavigateStep100.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemNavigateStep100.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemNavigateStep100.AccessibleDescription = "Jumps 100 items backward/forward"; + menuitemNavigateStep100.AccessibleName = "Jumps 100 items backward/forward"; + menuitemNavigateStep100.AccessibleRole = AccessibleRole.MenuItem; + menuitemNavigateStep100.Checked = true; + menuitemNavigateStep100.CheckOnClick = true; + menuitemNavigateStep100.CheckState = CheckState.Checked; + menuitemNavigateStep100.Name = "menuitemNavigateStep100"; + menuitemNavigateStep100.Size = new Size(110, 22); + menuitemNavigateStep100.Text = "100"; + menuitemNavigateStep100.ToolTipText = "Jump 100 items backward/forward"; + menuitemNavigateStep100.Click += ToolStripMenuItem100_Click; + menuitemNavigateStep100.MouseEnter += SetStatusbar_Enter; + menuitemNavigateStep100.MouseLeave += ClearStatusbar_Leave; // // menuitemNavigateStep1000 // - this.menuitemNavigateStep1000.AccessibleDescription = "Jumps 1000 items backward/forward"; - this.menuitemNavigateStep1000.AccessibleName = "Jumps 1000 items backward/forward"; - this.menuitemNavigateStep1000.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemNavigateStep1000.CheckOnClick = true; - this.menuitemNavigateStep1000.Name = "menuitemNavigateStep1000"; - this.menuitemNavigateStep1000.Size = new System.Drawing.Size(110, 22); - this.menuitemNavigateStep1000.Text = "1000"; - this.menuitemNavigateStep1000.ToolTipText = "Jump 1000 items backward/forward"; - this.menuitemNavigateStep1000.Click += new System.EventHandler(this.ToolStripMenuItem1000_Click); - this.menuitemNavigateStep1000.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemNavigateStep1000.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemNavigateStep1000.AccessibleDescription = "Jumps 1000 items backward/forward"; + menuitemNavigateStep1000.AccessibleName = "Jumps 1000 items backward/forward"; + menuitemNavigateStep1000.AccessibleRole = AccessibleRole.MenuItem; + menuitemNavigateStep1000.CheckOnClick = true; + menuitemNavigateStep1000.Name = "menuitemNavigateStep1000"; + menuitemNavigateStep1000.Size = new Size(110, 22); + menuitemNavigateStep1000.Text = "1000"; + menuitemNavigateStep1000.ToolTipText = "Jump 1000 items backward/forward"; + menuitemNavigateStep1000.Click += ToolStripMenuItem1000_Click; + menuitemNavigateStep1000.MouseEnter += SetStatusbar_Enter; + menuitemNavigateStep1000.MouseLeave += ClearStatusbar_Leave; // // menuitemNavigateStep10000 // - this.menuitemNavigateStep10000.AccessibleDescription = "Jumps 10000 items backward/forward"; - this.menuitemNavigateStep10000.AccessibleName = "Jumps 10000 items backward/forward"; - this.menuitemNavigateStep10000.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemNavigateStep10000.CheckOnClick = true; - this.menuitemNavigateStep10000.Name = "menuitemNavigateStep10000"; - this.menuitemNavigateStep10000.Size = new System.Drawing.Size(110, 22); - this.menuitemNavigateStep10000.Text = "10000"; - this.menuitemNavigateStep10000.ToolTipText = "Jump 10000 items backward/forward"; - this.menuitemNavigateStep10000.Click += new System.EventHandler(this.ToolStripMenuItem10000_Click); - this.menuitemNavigateStep10000.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemNavigateStep10000.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemNavigateStep10000.AccessibleDescription = "Jumps 10000 items backward/forward"; + menuitemNavigateStep10000.AccessibleName = "Jumps 10000 items backward/forward"; + menuitemNavigateStep10000.AccessibleRole = AccessibleRole.MenuItem; + menuitemNavigateStep10000.CheckOnClick = true; + menuitemNavigateStep10000.Name = "menuitemNavigateStep10000"; + menuitemNavigateStep10000.Size = new Size(110, 22); + menuitemNavigateStep10000.Text = "10000"; + menuitemNavigateStep10000.ToolTipText = "Jump 10000 items backward/forward"; + menuitemNavigateStep10000.Click += ToolStripMenuItem10000_Click; + menuitemNavigateStep10000.MouseEnter += SetStatusbar_Enter; + menuitemNavigateStep10000.MouseLeave += ClearStatusbar_Leave; // // menuitemNavigateStep100000 // - this.menuitemNavigateStep100000.AccessibleDescription = "Jumps 100000 items backward/forward"; - this.menuitemNavigateStep100000.AccessibleName = "Jumps 100000 items backward/forward"; - this.menuitemNavigateStep100000.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemNavigateStep100000.CheckOnClick = true; - this.menuitemNavigateStep100000.Name = "menuitemNavigateStep100000"; - this.menuitemNavigateStep100000.Size = new System.Drawing.Size(110, 22); - this.menuitemNavigateStep100000.Text = "100000"; - this.menuitemNavigateStep100000.ToolTipText = "Jump 100000 items backward/forward"; - this.menuitemNavigateStep100000.Click += new System.EventHandler(this.ToolStripMenuItem100000_Click); - this.menuitemNavigateStep100000.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemNavigateStep100000.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemNavigateStep100000.AccessibleDescription = "Jumps 100000 items backward/forward"; + menuitemNavigateStep100000.AccessibleName = "Jumps 100000 items backward/forward"; + menuitemNavigateStep100000.AccessibleRole = AccessibleRole.MenuItem; + menuitemNavigateStep100000.CheckOnClick = true; + menuitemNavigateStep100000.Name = "menuitemNavigateStep100000"; + menuitemNavigateStep100000.Size = new Size(110, 22); + menuitemNavigateStep100000.Text = "100000"; + menuitemNavigateStep100000.ToolTipText = "Jump 100000 items backward/forward"; + menuitemNavigateStep100000.Click += ToolStripMenuItem100000_Click; + menuitemNavigateStep100000.MouseEnter += SetStatusbar_Enter; + menuitemNavigateStep100000.MouseLeave += ClearStatusbar_Leave; + // + // toolStripSplitButtonStepBackward + // + toolStripSplitButtonStepBackward.AccessibleDescription = "Navigates some data backward"; + toolStripSplitButtonStepBackward.AccessibleName = "Navigate some data backward"; + toolStripSplitButtonStepBackward.AccessibleRole = AccessibleRole.SplitButton; + toolStripSplitButtonStepBackward.DisplayStyle = ToolStripItemDisplayStyle.Image; + toolStripSplitButtonStepBackward.DropDown = contextMenuNavigationStep; + toolStripSplitButtonStepBackward.Image = Properties.Resources.silk_backward_green; + toolStripSplitButtonStepBackward.ImageTransparentColor = Color.Magenta; + toolStripSplitButtonStepBackward.Name = "toolStripSplitButtonStepBackward"; + toolStripSplitButtonStepBackward.Size = new Size(32, 22); + toolStripSplitButtonStepBackward.Text = "Navigate some data backward"; + toolStripSplitButtonStepBackward.ButtonClick += ToolStripButtonStepBackward_Click; + toolStripSplitButtonStepBackward.MouseEnter += SetStatusbar_Enter; + toolStripSplitButtonStepBackward.MouseLeave += ClearStatusbar_Leave; // // menuitemNavigateSomeDataBackward // - this.menuitemNavigateSomeDataBackward.AccessibleDescription = "Navigates some data backward"; - this.menuitemNavigateSomeDataBackward.AccessibleName = "Navigates some data backward"; - this.menuitemNavigateSomeDataBackward.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemNavigateSomeDataBackward.AutoToolTip = true; - this.menuitemNavigateSomeDataBackward.DoubleClickEnabled = true; - this.menuitemNavigateSomeDataBackward.DropDown = this.contextMenuNavigationStep; - this.menuitemNavigateSomeDataBackward.Image = global::Planetoid_DB.Properties.Resources.silk_backward_green; - this.menuitemNavigateSomeDataBackward.Name = "menuitemNavigateSomeDataBackward"; - this.menuitemNavigateSomeDataBackward.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.W))); - this.menuitemNavigateSomeDataBackward.Size = new System.Drawing.Size(274, 22); - this.menuitemNavigateSomeDataBackward.Text = "Navigate some data back&ward"; - this.menuitemNavigateSomeDataBackward.Click += new System.EventHandler(this.ToolStripMenuItemNavigateSomeDataBackward_Click); - this.menuitemNavigateSomeDataBackward.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemNavigateSomeDataBackward.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemNavigateSomeDataBackward.AccessibleDescription = "Navigates some data backward"; + menuitemNavigateSomeDataBackward.AccessibleName = "Navigates some data backward"; + menuitemNavigateSomeDataBackward.AccessibleRole = AccessibleRole.MenuItem; + menuitemNavigateSomeDataBackward.AutoToolTip = true; + menuitemNavigateSomeDataBackward.DoubleClickEnabled = true; + menuitemNavigateSomeDataBackward.DropDown = contextMenuNavigationStep; + menuitemNavigateSomeDataBackward.Image = Properties.Resources.silk_backward_green; + menuitemNavigateSomeDataBackward.Name = "menuitemNavigateSomeDataBackward"; + menuitemNavigateSomeDataBackward.ShortcutKeys = Keys.Alt | Keys.W; + menuitemNavigateSomeDataBackward.Size = new Size(274, 22); + menuitemNavigateSomeDataBackward.Text = "Navigate some data back&ward"; + menuitemNavigateSomeDataBackward.Click += ToolStripMenuItemNavigateSomeDataBackward_Click; + menuitemNavigateSomeDataBackward.MouseEnter += SetStatusbar_Enter; + menuitemNavigateSomeDataBackward.MouseLeave += ClearStatusbar_Leave; // // menuitemNavigateSomeDataForward // - this.menuitemNavigateSomeDataForward.AccessibleDescription = "Navigates some data forward"; - this.menuitemNavigateSomeDataForward.AccessibleName = "Navigates some data forward"; - this.menuitemNavigateSomeDataForward.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemNavigateSomeDataForward.AutoToolTip = true; - this.menuitemNavigateSomeDataForward.DoubleClickEnabled = true; - this.menuitemNavigateSomeDataForward.DropDown = this.contextMenuNavigationStep; - this.menuitemNavigateSomeDataForward.Image = global::Planetoid_DB.Properties.Resources.silk_forward_green; - this.menuitemNavigateSomeDataForward.Name = "menuitemNavigateSomeDataForward"; - this.menuitemNavigateSomeDataForward.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F))); - this.menuitemNavigateSomeDataForward.Size = new System.Drawing.Size(274, 22); - this.menuitemNavigateSomeDataForward.Text = "Navigate some data &forward"; - this.menuitemNavigateSomeDataForward.Click += new System.EventHandler(this.ToolStripMenuItemNavigateSomeDataForward_Click); - this.menuitemNavigateSomeDataForward.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemNavigateSomeDataForward.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemNavigateSomeDataForward.AccessibleDescription = "Navigates some data forward"; + menuitemNavigateSomeDataForward.AccessibleName = "Navigates some data forward"; + menuitemNavigateSomeDataForward.AccessibleRole = AccessibleRole.MenuItem; + menuitemNavigateSomeDataForward.AutoToolTip = true; + menuitemNavigateSomeDataForward.DoubleClickEnabled = true; + menuitemNavigateSomeDataForward.DropDown = contextMenuNavigationStep; + menuitemNavigateSomeDataForward.Image = Properties.Resources.silk_forward_green; + menuitemNavigateSomeDataForward.Name = "menuitemNavigateSomeDataForward"; + menuitemNavigateSomeDataForward.ShortcutKeys = Keys.Alt | Keys.F; + menuitemNavigateSomeDataForward.Size = new Size(274, 22); + menuitemNavigateSomeDataForward.Text = "Navigate some data &forward"; + menuitemNavigateSomeDataForward.Click += ToolStripMenuItemNavigateSomeDataForward_Click; + menuitemNavigateSomeDataForward.MouseEnter += SetStatusbar_Enter; + menuitemNavigateSomeDataForward.MouseLeave += ClearStatusbar_Leave; // // toolStripSplitButtonStepForward // - this.toolStripSplitButtonStepForward.AccessibleDescription = "Navigates some data forward"; - this.toolStripSplitButtonStepForward.AccessibleName = "Navigate some data forward"; - this.toolStripSplitButtonStepForward.AccessibleRole = System.Windows.Forms.AccessibleRole.SplitButton; - this.toolStripSplitButtonStepForward.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.toolStripSplitButtonStepForward.DropDown = this.contextMenuNavigationStep; - this.toolStripSplitButtonStepForward.Image = global::Planetoid_DB.Properties.Resources.silk_forward_green; - this.toolStripSplitButtonStepForward.ImageTransparentColor = System.Drawing.Color.Magenta; - this.toolStripSplitButtonStepForward.Name = "toolStripSplitButtonStepForward"; - this.toolStripSplitButtonStepForward.Size = new System.Drawing.Size(32, 22); - this.toolStripSplitButtonStepForward.Text = "Navigate some data forward"; - this.toolStripSplitButtonStepForward.ButtonClick += new System.EventHandler(this.ToolStripButtonStepForward_Click); - this.toolStripSplitButtonStepForward.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripSplitButtonStepForward.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); - // - // toolStripSplitButtonStepBackward - // - this.toolStripSplitButtonStepBackward.AccessibleDescription = "Navigates some data backward"; - this.toolStripSplitButtonStepBackward.AccessibleName = "Navigate some data backward"; - this.toolStripSplitButtonStepBackward.AccessibleRole = System.Windows.Forms.AccessibleRole.SplitButton; - this.toolStripSplitButtonStepBackward.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.toolStripSplitButtonStepBackward.DropDown = this.contextMenuNavigationStep; - this.toolStripSplitButtonStepBackward.Image = global::Planetoid_DB.Properties.Resources.silk_backward_green; - this.toolStripSplitButtonStepBackward.ImageTransparentColor = System.Drawing.Color.Magenta; - this.toolStripSplitButtonStepBackward.Name = "toolStripSplitButtonStepBackward"; - this.toolStripSplitButtonStepBackward.Size = new System.Drawing.Size(32, 22); - this.toolStripSplitButtonStepBackward.Text = "Navigate some data backward"; - this.toolStripSplitButtonStepBackward.ButtonClick += new System.EventHandler(this.ToolStripButtonStepBackward_Click); - this.toolStripSplitButtonStepBackward.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripSplitButtonStepBackward.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripSplitButtonStepForward.AccessibleDescription = "Navigates some data forward"; + toolStripSplitButtonStepForward.AccessibleName = "Navigate some data forward"; + toolStripSplitButtonStepForward.AccessibleRole = AccessibleRole.SplitButton; + toolStripSplitButtonStepForward.DisplayStyle = ToolStripItemDisplayStyle.Image; + toolStripSplitButtonStepForward.DropDown = contextMenuNavigationStep; + toolStripSplitButtonStepForward.Image = Properties.Resources.silk_forward_green; + toolStripSplitButtonStepForward.ImageTransparentColor = Color.Magenta; + toolStripSplitButtonStepForward.Name = "toolStripSplitButtonStepForward"; + toolStripSplitButtonStepForward.Size = new Size(32, 22); + toolStripSplitButtonStepForward.Text = "Navigate some data forward"; + toolStripSplitButtonStepForward.ButtonClick += ToolStripButtonStepForward_Click; + toolStripSplitButtonStepForward.MouseEnter += SetStatusbar_Enter; + toolStripSplitButtonStepForward.MouseLeave += ClearStatusbar_Leave; // // tableLayoutPanelData // - this.tableLayoutPanelData.AccessibleDescription = "Groups the data"; - this.tableLayoutPanelData.AccessibleName = "Table panel"; - this.tableLayoutPanelData.AccessibleRole = System.Windows.Forms.AccessibleRole.Pane; - this.tableLayoutPanelData.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableLayoutPanelData.BackgroundImage"))); - this.tableLayoutPanelData.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.tableLayoutPanelData.ColumnCount = 4; - this.tableLayoutPanelData.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelData.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 149F)); - this.tableLayoutPanelData.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelData.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelData.Controls.Add(this.labelIndexData, 1, 0); - this.tableLayoutPanelData.Controls.Add(this.labelReadableDesignationData, 1, 1); - this.tableLayoutPanelData.Controls.Add(this.labelEpochData, 1, 2); - this.tableLayoutPanelData.Controls.Add(this.labelMeanAnomalyAtTheEpochData, 1, 3); - this.tableLayoutPanelData.Controls.Add(this.labelArgumentOfPerihelionData, 1, 4); - this.tableLayoutPanelData.Controls.Add(this.labelLongitudeOfTheAscendingNodeData, 1, 5); - this.tableLayoutPanelData.Controls.Add(this.labelInclinationToTheEclipticData, 1, 6); - this.tableLayoutPanelData.Controls.Add(this.labelOrbitalEccentricityData, 1, 7); - this.tableLayoutPanelData.Controls.Add(this.labelMeanDailyMotionData, 1, 8); - this.tableLayoutPanelData.Controls.Add(this.labelSemiMajorAxisData, 1, 9); - this.tableLayoutPanelData.Controls.Add(this.labelAbsoluteMagnitudeData, 1, 10); - this.tableLayoutPanelData.Controls.Add(this.labelSlopeParameterData, 3, 1); - this.tableLayoutPanelData.Controls.Add(this.labelReferenceData, 3, 2); - this.tableLayoutPanelData.Controls.Add(this.labelNumberOfOppositionsData, 3, 3); - this.tableLayoutPanelData.Controls.Add(this.labelNumberOfObservationsData, 3, 4); - this.tableLayoutPanelData.Controls.Add(this.labelObservationSpanData, 3, 5); - this.tableLayoutPanelData.Controls.Add(this.labelRmsResidualData, 3, 6); - this.tableLayoutPanelData.Controls.Add(this.labelComputerNameData, 3, 7); - this.tableLayoutPanelData.Controls.Add(this.labelFlagsData, 3, 8); - this.tableLayoutPanelData.Controls.Add(this.labelDateLastObservationData, 3, 9); - this.tableLayoutPanelData.Controls.Add(this.labelIndexDesc, 0, 0); - this.tableLayoutPanelData.Controls.Add(this.labelReadableDesignationDesc, 0, 1); - this.tableLayoutPanelData.Controls.Add(this.labelEpochDesc, 0, 2); - this.tableLayoutPanelData.Controls.Add(this.labelMeanAnomalyAtTheEpochDesc, 0, 3); - this.tableLayoutPanelData.Controls.Add(this.labelArgumentOfPerihelionDesc, 0, 4); - this.tableLayoutPanelData.Controls.Add(this.labelLongitudeOfTheAscendingNodeDesc, 0, 5); - this.tableLayoutPanelData.Controls.Add(this.labelInclinationToTheEclipticDesc, 0, 6); - this.tableLayoutPanelData.Controls.Add(this.labelOrbitalEccentricityDesc, 0, 7); - this.tableLayoutPanelData.Controls.Add(this.labelMeanDailyMotionDesc, 0, 8); - this.tableLayoutPanelData.Controls.Add(this.labelSemiMajorAxisDesc, 0, 9); - this.tableLayoutPanelData.Controls.Add(this.labelAbsoluteMagnitudeDesc, 0, 10); - this.tableLayoutPanelData.Controls.Add(this.labelSlopeParameterDesc, 2, 1); - this.tableLayoutPanelData.Controls.Add(this.labelReferenceDesc, 2, 2); - this.tableLayoutPanelData.Controls.Add(this.labelNumberOfOppositionsDesc, 2, 3); - this.tableLayoutPanelData.Controls.Add(this.labelNumberOfObservationsDesc, 2, 4); - this.tableLayoutPanelData.Controls.Add(this.labelObservationSpanDesc, 2, 5); - this.tableLayoutPanelData.Controls.Add(this.labelRmsResidualDesc, 2, 6); - this.tableLayoutPanelData.Controls.Add(this.labelComputerNameDesc, 2, 7); - this.tableLayoutPanelData.Controls.Add(this.labelFlagsDesc, 2, 8); - this.tableLayoutPanelData.Controls.Add(this.labelDateLastObservationDesc, 2, 9); - this.tableLayoutPanelData.Dock = System.Windows.Forms.DockStyle.Fill; - this.tableLayoutPanelData.Location = new System.Drawing.Point(0, 0); - this.tableLayoutPanelData.Name = "tableLayoutPanelData"; - this.tableLayoutPanelData.PanelBackStyle = Krypton.Toolkit.PaletteBackStyle.FormMain; - this.tableLayoutPanelData.RowCount = 11; - this.tableLayoutPanelData.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelData.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelData.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelData.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelData.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelData.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelData.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelData.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelData.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelData.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelData.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelData.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 17F)); - this.tableLayoutPanelData.Size = new System.Drawing.Size(804, 290); - this.tableLayoutPanelData.TabIndex = 0; - this.tableLayoutPanelData.TabStop = true; - this.toolTip.SetToolTip(this.tableLayoutPanelData, "table panel"); - this.tableLayoutPanelData.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.tableLayoutPanelData.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.tableLayoutPanelData.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.tableLayoutPanelData.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + tableLayoutPanelData.AccessibleDescription = "Groups the data"; + tableLayoutPanelData.AccessibleName = "Table panel"; + tableLayoutPanelData.AccessibleRole = AccessibleRole.Pane; + tableLayoutPanelData.BackgroundImage = (Image)resources.GetObject("tableLayoutPanelData.BackgroundImage"); + tableLayoutPanelData.BackgroundImageLayout = ImageLayout.None; + tableLayoutPanelData.ColumnCount = 4; + tableLayoutPanelData.ColumnStyles.Add(new ColumnStyle()); + tableLayoutPanelData.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 149F)); + tableLayoutPanelData.ColumnStyles.Add(new ColumnStyle()); + tableLayoutPanelData.ColumnStyles.Add(new ColumnStyle()); + tableLayoutPanelData.Controls.Add(labelIndexData, 1, 0); + tableLayoutPanelData.Controls.Add(labelReadableDesignationData, 1, 1); + tableLayoutPanelData.Controls.Add(labelEpochData, 1, 2); + tableLayoutPanelData.Controls.Add(labelMeanAnomalyAtTheEpochData, 1, 3); + tableLayoutPanelData.Controls.Add(labelArgumentOfPerihelionData, 1, 4); + tableLayoutPanelData.Controls.Add(labelLongitudeOfTheAscendingNodeData, 1, 5); + tableLayoutPanelData.Controls.Add(labelInclinationToTheEclipticData, 1, 6); + tableLayoutPanelData.Controls.Add(labelOrbitalEccentricityData, 1, 7); + tableLayoutPanelData.Controls.Add(labelMeanDailyMotionData, 1, 8); + tableLayoutPanelData.Controls.Add(labelSemiMajorAxisData, 1, 9); + tableLayoutPanelData.Controls.Add(labelAbsoluteMagnitudeData, 1, 10); + tableLayoutPanelData.Controls.Add(labelSlopeParameterData, 3, 1); + tableLayoutPanelData.Controls.Add(labelReferenceData, 3, 2); + tableLayoutPanelData.Controls.Add(labelNumberOfOppositionsData, 3, 3); + tableLayoutPanelData.Controls.Add(labelNumberOfObservationsData, 3, 4); + tableLayoutPanelData.Controls.Add(labelObservationSpanData, 3, 5); + tableLayoutPanelData.Controls.Add(labelRmsResidualData, 3, 6); + tableLayoutPanelData.Controls.Add(labelComputerNameData, 3, 7); + tableLayoutPanelData.Controls.Add(labelFlagsData, 3, 8); + tableLayoutPanelData.Controls.Add(labelDateLastObservationData, 3, 9); + tableLayoutPanelData.Controls.Add(labelIndexDesc, 0, 0); + tableLayoutPanelData.Controls.Add(labelReadableDesignationDesc, 0, 1); + tableLayoutPanelData.Controls.Add(labelEpochDesc, 0, 2); + tableLayoutPanelData.Controls.Add(labelMeanAnomalyAtTheEpochDesc, 0, 3); + tableLayoutPanelData.Controls.Add(labelArgumentOfPerihelionDesc, 0, 4); + tableLayoutPanelData.Controls.Add(labelLongitudeOfTheAscendingNodeDesc, 0, 5); + tableLayoutPanelData.Controls.Add(labelInclinationToTheEclipticDesc, 0, 6); + tableLayoutPanelData.Controls.Add(labelOrbitalEccentricityDesc, 0, 7); + tableLayoutPanelData.Controls.Add(labelMeanDailyMotionDesc, 0, 8); + tableLayoutPanelData.Controls.Add(labelSemiMajorAxisDesc, 0, 9); + tableLayoutPanelData.Controls.Add(labelAbsoluteMagnitudeDesc, 0, 10); + tableLayoutPanelData.Controls.Add(labelSlopeParameterDesc, 2, 1); + tableLayoutPanelData.Controls.Add(labelReferenceDesc, 2, 2); + tableLayoutPanelData.Controls.Add(labelNumberOfOppositionsDesc, 2, 3); + tableLayoutPanelData.Controls.Add(labelNumberOfObservationsDesc, 2, 4); + tableLayoutPanelData.Controls.Add(labelObservationSpanDesc, 2, 5); + tableLayoutPanelData.Controls.Add(labelRmsResidualDesc, 2, 6); + tableLayoutPanelData.Controls.Add(labelComputerNameDesc, 2, 7); + tableLayoutPanelData.Controls.Add(labelFlagsDesc, 2, 8); + tableLayoutPanelData.Controls.Add(labelDateLastObservationDesc, 2, 9); + tableLayoutPanelData.Dock = DockStyle.Fill; + tableLayoutPanelData.Location = new Point(0, 0); + tableLayoutPanelData.Name = "tableLayoutPanelData"; + tableLayoutPanelData.PanelBackStyle = PaletteBackStyle.FormMain; + tableLayoutPanelData.RowCount = 11; + tableLayoutPanelData.RowStyles.Add(new RowStyle()); + tableLayoutPanelData.RowStyles.Add(new RowStyle()); + tableLayoutPanelData.RowStyles.Add(new RowStyle()); + tableLayoutPanelData.RowStyles.Add(new RowStyle()); + tableLayoutPanelData.RowStyles.Add(new RowStyle()); + tableLayoutPanelData.RowStyles.Add(new RowStyle()); + tableLayoutPanelData.RowStyles.Add(new RowStyle()); + tableLayoutPanelData.RowStyles.Add(new RowStyle()); + tableLayoutPanelData.RowStyles.Add(new RowStyle()); + tableLayoutPanelData.RowStyles.Add(new RowStyle()); + tableLayoutPanelData.RowStyles.Add(new RowStyle()); + tableLayoutPanelData.RowStyles.Add(new RowStyle(SizeType.Absolute, 17F)); + tableLayoutPanelData.Size = new Size(804, 290); + tableLayoutPanelData.TabIndex = 0; + tableLayoutPanelData.TabStop = true; + toolTip.SetToolTip(tableLayoutPanelData, "table panel"); + tableLayoutPanelData.Enter += SetStatusbar_Enter; + tableLayoutPanelData.Leave += ClearStatusbar_Leave; + tableLayoutPanelData.MouseEnter += SetStatusbar_Enter; + tableLayoutPanelData.MouseLeave += ClearStatusbar_Leave; // // labelIndexData // - this.labelIndexData.AccessibleDescription = "Shows the information of \"Index No.\""; - this.labelIndexData.AccessibleName = "Shows the information of \"Index No.\""; - this.labelIndexData.AccessibleRole = System.Windows.Forms.AccessibleRole.StatusBar; - this.labelIndexData.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelIndexData.Location = new System.Drawing.Point(273, 3); - this.labelIndexData.Name = "labelIndexData"; - this.labelIndexData.Size = new System.Drawing.Size(143, 20); - this.labelIndexData.TabIndex = 1; - this.toolTip.SetToolTip(this.labelIndexData, "Shows the information of \"Index No.\""); - this.labelIndexData.Values.Text = ".................."; - this.labelIndexData.DoubleClick += new System.EventHandler(this.CopyToClipboard_DoubleClick); - this.labelIndexData.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelIndexData.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelIndexData.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelIndexData.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelIndexData.AccessibleDescription = "Shows the information of \"Index No.\""; + labelIndexData.AccessibleName = "Shows the information of \"Index No.\""; + labelIndexData.AccessibleRole = AccessibleRole.StatusBar; + labelIndexData.Dock = DockStyle.Fill; + labelIndexData.Location = new Point(273, 3); + labelIndexData.Name = "labelIndexData"; + labelIndexData.Size = new Size(143, 20); + labelIndexData.TabIndex = 1; + toolTip.SetToolTip(labelIndexData, "Shows the information of \"Index No.\""); + labelIndexData.Values.Text = ".................."; + labelIndexData.DoubleClick += CopyToClipboard_DoubleClick; + labelIndexData.Enter += SetStatusbar_Enter; + labelIndexData.Leave += ClearStatusbar_Leave; + labelIndexData.MouseEnter += SetStatusbar_Enter; + labelIndexData.MouseLeave += ClearStatusbar_Leave; // // labelReadableDesignationData // - this.labelReadableDesignationData.AccessibleDescription = "Shows the information of \"Readable designation\""; - this.labelReadableDesignationData.AccessibleName = "Shows the information of \"Readable designation\""; - this.labelReadableDesignationData.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelReadableDesignationData.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelReadableDesignationData.Location = new System.Drawing.Point(273, 29); - this.labelReadableDesignationData.Name = "labelReadableDesignationData"; - this.labelReadableDesignationData.Size = new System.Drawing.Size(143, 20); - this.labelReadableDesignationData.TabIndex = 3; - this.toolTip.SetToolTip(this.labelReadableDesignationData, "Shows the information of \"Readable designation\""); - this.labelReadableDesignationData.Values.Text = ".................."; - this.labelReadableDesignationData.DoubleClick += new System.EventHandler(this.CopyToClipboard_DoubleClick); - this.labelReadableDesignationData.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelReadableDesignationData.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelReadableDesignationData.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelReadableDesignationData.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelReadableDesignationData.AccessibleDescription = "Shows the information of \"Readable designation\""; + labelReadableDesignationData.AccessibleName = "Shows the information of \"Readable designation\""; + labelReadableDesignationData.AccessibleRole = AccessibleRole.StaticText; + labelReadableDesignationData.Dock = DockStyle.Fill; + labelReadableDesignationData.Location = new Point(273, 29); + labelReadableDesignationData.Name = "labelReadableDesignationData"; + labelReadableDesignationData.Size = new Size(143, 20); + labelReadableDesignationData.TabIndex = 3; + toolTip.SetToolTip(labelReadableDesignationData, "Shows the information of \"Readable designation\""); + labelReadableDesignationData.Values.Text = ".................."; + labelReadableDesignationData.DoubleClick += CopyToClipboard_DoubleClick; + labelReadableDesignationData.Enter += SetStatusbar_Enter; + labelReadableDesignationData.Leave += ClearStatusbar_Leave; + labelReadableDesignationData.MouseEnter += SetStatusbar_Enter; + labelReadableDesignationData.MouseLeave += ClearStatusbar_Leave; // // labelEpochData // - this.labelEpochData.AccessibleDescription = "Shows the information of \"Epoch (in packed form, .0 TT)\""; - this.labelEpochData.AccessibleName = "Shows the information of \"Epoch (in packed form, .0 TT)\""; - this.labelEpochData.AccessibleRole = System.Windows.Forms.AccessibleRole.StatusBar; - this.labelEpochData.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelEpochData.Location = new System.Drawing.Point(273, 55); - this.labelEpochData.Name = "labelEpochData"; - this.labelEpochData.Size = new System.Drawing.Size(143, 20); - this.labelEpochData.TabIndex = 5; - this.toolTip.SetToolTip(this.labelEpochData, "Shows the information of \"Epoch (in packed form, .0 TT)\""); - this.labelEpochData.Values.Text = ".................."; - this.labelEpochData.DoubleClick += new System.EventHandler(this.CopyToClipboard_DoubleClick); - this.labelEpochData.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelEpochData.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelEpochData.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelEpochData.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelEpochData.AccessibleDescription = "Shows the information of \"Epoch (in packed form, .0 TT)\""; + labelEpochData.AccessibleName = "Shows the information of \"Epoch (in packed form, .0 TT)\""; + labelEpochData.AccessibleRole = AccessibleRole.StatusBar; + labelEpochData.Dock = DockStyle.Fill; + labelEpochData.Location = new Point(273, 55); + labelEpochData.Name = "labelEpochData"; + labelEpochData.Size = new Size(143, 20); + labelEpochData.TabIndex = 5; + toolTip.SetToolTip(labelEpochData, "Shows the information of \"Epoch (in packed form, .0 TT)\""); + labelEpochData.Values.Text = ".................."; + labelEpochData.DoubleClick += CopyToClipboard_DoubleClick; + labelEpochData.Enter += SetStatusbar_Enter; + labelEpochData.Leave += ClearStatusbar_Leave; + labelEpochData.MouseEnter += SetStatusbar_Enter; + labelEpochData.MouseLeave += ClearStatusbar_Leave; // // labelMeanAnomalyAtTheEpochData // - this.labelMeanAnomalyAtTheEpochData.AccessibleDescription = "Shows the information of \"Mean anomaly at the epoch, in degrees\""; - this.labelMeanAnomalyAtTheEpochData.AccessibleName = "Shows the information of \"Mean anomaly at the epoch, in degrees\""; - this.labelMeanAnomalyAtTheEpochData.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelMeanAnomalyAtTheEpochData.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelMeanAnomalyAtTheEpochData.Location = new System.Drawing.Point(273, 81); - this.labelMeanAnomalyAtTheEpochData.Name = "labelMeanAnomalyAtTheEpochData"; - this.labelMeanAnomalyAtTheEpochData.Size = new System.Drawing.Size(143, 20); - this.labelMeanAnomalyAtTheEpochData.TabIndex = 7; - this.toolTip.SetToolTip(this.labelMeanAnomalyAtTheEpochData, "Shows the information of \"Mean anomaly at the epoch, in degrees\""); - this.labelMeanAnomalyAtTheEpochData.Values.Text = ".................."; - this.labelMeanAnomalyAtTheEpochData.DoubleClick += new System.EventHandler(this.CopyToClipboard_DoubleClick); - this.labelMeanAnomalyAtTheEpochData.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelMeanAnomalyAtTheEpochData.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelMeanAnomalyAtTheEpochData.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelMeanAnomalyAtTheEpochData.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelMeanAnomalyAtTheEpochData.AccessibleDescription = "Shows the information of \"Mean anomaly at the epoch, in degrees\""; + labelMeanAnomalyAtTheEpochData.AccessibleName = "Shows the information of \"Mean anomaly at the epoch, in degrees\""; + labelMeanAnomalyAtTheEpochData.AccessibleRole = AccessibleRole.StaticText; + labelMeanAnomalyAtTheEpochData.Dock = DockStyle.Fill; + labelMeanAnomalyAtTheEpochData.Location = new Point(273, 81); + labelMeanAnomalyAtTheEpochData.Name = "labelMeanAnomalyAtTheEpochData"; + labelMeanAnomalyAtTheEpochData.Size = new Size(143, 20); + labelMeanAnomalyAtTheEpochData.TabIndex = 7; + toolTip.SetToolTip(labelMeanAnomalyAtTheEpochData, "Shows the information of \"Mean anomaly at the epoch, in degrees\""); + labelMeanAnomalyAtTheEpochData.Values.Text = ".................."; + labelMeanAnomalyAtTheEpochData.DoubleClick += CopyToClipboard_DoubleClick; + labelMeanAnomalyAtTheEpochData.Enter += SetStatusbar_Enter; + labelMeanAnomalyAtTheEpochData.Leave += ClearStatusbar_Leave; + labelMeanAnomalyAtTheEpochData.MouseEnter += SetStatusbar_Enter; + labelMeanAnomalyAtTheEpochData.MouseLeave += ClearStatusbar_Leave; // // labelArgumentOfPerihelionData // - this.labelArgumentOfPerihelionData.AccessibleDescription = "Shows the information of \"Argument of perihelion, J2000.0 (degrees)\""; - this.labelArgumentOfPerihelionData.AccessibleName = "Shows the information of \"Argument of perihelion, J2000.0 (degrees)\""; - this.labelArgumentOfPerihelionData.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelArgumentOfPerihelionData.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelArgumentOfPerihelionData.Location = new System.Drawing.Point(273, 107); - this.labelArgumentOfPerihelionData.Name = "labelArgumentOfPerihelionData"; - this.labelArgumentOfPerihelionData.Size = new System.Drawing.Size(143, 20); - this.labelArgumentOfPerihelionData.TabIndex = 9; - this.toolTip.SetToolTip(this.labelArgumentOfPerihelionData, "Shows the information of \"Argument of perihelion, J2000.0 (degrees)\""); - this.labelArgumentOfPerihelionData.Values.Text = ".................."; - this.labelArgumentOfPerihelionData.DoubleClick += new System.EventHandler(this.CopyToClipboard_DoubleClick); - this.labelArgumentOfPerihelionData.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelArgumentOfPerihelionData.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelArgumentOfPerihelionData.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelArgumentOfPerihelionData.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelArgumentOfPerihelionData.AccessibleDescription = "Shows the information of \"Argument of perihelion, J2000.0 (degrees)\""; + labelArgumentOfPerihelionData.AccessibleName = "Shows the information of \"Argument of perihelion, J2000.0 (degrees)\""; + labelArgumentOfPerihelionData.AccessibleRole = AccessibleRole.StaticText; + labelArgumentOfPerihelionData.Dock = DockStyle.Fill; + labelArgumentOfPerihelionData.Location = new Point(273, 107); + labelArgumentOfPerihelionData.Name = "labelArgumentOfPerihelionData"; + labelArgumentOfPerihelionData.Size = new Size(143, 20); + labelArgumentOfPerihelionData.TabIndex = 9; + toolTip.SetToolTip(labelArgumentOfPerihelionData, "Shows the information of \"Argument of perihelion, J2000.0 (degrees)\""); + labelArgumentOfPerihelionData.Values.Text = ".................."; + labelArgumentOfPerihelionData.DoubleClick += CopyToClipboard_DoubleClick; + labelArgumentOfPerihelionData.Enter += SetStatusbar_Enter; + labelArgumentOfPerihelionData.Leave += ClearStatusbar_Leave; + labelArgumentOfPerihelionData.MouseEnter += SetStatusbar_Enter; + labelArgumentOfPerihelionData.MouseLeave += ClearStatusbar_Leave; // // labelLongitudeOfTheAscendingNodeData // - this.labelLongitudeOfTheAscendingNodeData.AccessibleDescription = "Shows the information of \"Longitude of the ascending node, J2000.0 (degrees)\""; - this.labelLongitudeOfTheAscendingNodeData.AccessibleName = "Shows the information of \"Longitude of the ascending node, J2000.0 (degrees)\""; - this.labelLongitudeOfTheAscendingNodeData.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelLongitudeOfTheAscendingNodeData.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelLongitudeOfTheAscendingNodeData.Location = new System.Drawing.Point(273, 133); - this.labelLongitudeOfTheAscendingNodeData.Name = "labelLongitudeOfTheAscendingNodeData"; - this.labelLongitudeOfTheAscendingNodeData.Size = new System.Drawing.Size(143, 20); - this.labelLongitudeOfTheAscendingNodeData.TabIndex = 11; - this.toolTip.SetToolTip(this.labelLongitudeOfTheAscendingNodeData, "Shows the information of \"Longitude of the ascending node, J2000.0 (degrees)\""); - this.labelLongitudeOfTheAscendingNodeData.Values.Text = ".................."; + labelLongitudeOfTheAscendingNodeData.AccessibleDescription = "Shows the information of \"Longitude of the ascending node, J2000.0 (degrees)\""; + labelLongitudeOfTheAscendingNodeData.AccessibleName = "Shows the information of \"Longitude of the ascending node, J2000.0 (degrees)\""; + labelLongitudeOfTheAscendingNodeData.AccessibleRole = AccessibleRole.StaticText; + labelLongitudeOfTheAscendingNodeData.Dock = DockStyle.Fill; + labelLongitudeOfTheAscendingNodeData.Location = new Point(273, 133); + labelLongitudeOfTheAscendingNodeData.Name = "labelLongitudeOfTheAscendingNodeData"; + labelLongitudeOfTheAscendingNodeData.Size = new Size(143, 20); + labelLongitudeOfTheAscendingNodeData.TabIndex = 11; + toolTip.SetToolTip(labelLongitudeOfTheAscendingNodeData, "Shows the information of \"Longitude of the ascending node, J2000.0 (degrees)\""); + labelLongitudeOfTheAscendingNodeData.Values.Text = ".................."; // // labelInclinationToTheEclipticData // - this.labelInclinationToTheEclipticData.AccessibleDescription = "Shows the information of \"Inclination to the ecliptic, J2000.0 (degrees)\""; - this.labelInclinationToTheEclipticData.AccessibleName = "Shows the information of \"Inclination to the ecliptic, J2000.0 (degrees)\""; - this.labelInclinationToTheEclipticData.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelInclinationToTheEclipticData.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelInclinationToTheEclipticData.Location = new System.Drawing.Point(273, 159); - this.labelInclinationToTheEclipticData.Name = "labelInclinationToTheEclipticData"; - this.labelInclinationToTheEclipticData.Size = new System.Drawing.Size(143, 20); - this.labelInclinationToTheEclipticData.TabIndex = 13; - this.toolTip.SetToolTip(this.labelInclinationToTheEclipticData, "Shows the information of \"Inclination to the ecliptic, J2000.0 (degrees)\""); - this.labelInclinationToTheEclipticData.Values.Text = ".................."; - this.labelInclinationToTheEclipticData.DoubleClick += new System.EventHandler(this.CopyToClipboard_DoubleClick); - this.labelInclinationToTheEclipticData.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelInclinationToTheEclipticData.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelInclinationToTheEclipticData.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelInclinationToTheEclipticData.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelInclinationToTheEclipticData.AccessibleDescription = "Shows the information of \"Inclination to the ecliptic, J2000.0 (degrees)\""; + labelInclinationToTheEclipticData.AccessibleName = "Shows the information of \"Inclination to the ecliptic, J2000.0 (degrees)\""; + labelInclinationToTheEclipticData.AccessibleRole = AccessibleRole.StaticText; + labelInclinationToTheEclipticData.Dock = DockStyle.Fill; + labelInclinationToTheEclipticData.Location = new Point(273, 159); + labelInclinationToTheEclipticData.Name = "labelInclinationToTheEclipticData"; + labelInclinationToTheEclipticData.Size = new Size(143, 20); + labelInclinationToTheEclipticData.TabIndex = 13; + toolTip.SetToolTip(labelInclinationToTheEclipticData, "Shows the information of \"Inclination to the ecliptic, J2000.0 (degrees)\""); + labelInclinationToTheEclipticData.Values.Text = ".................."; + labelInclinationToTheEclipticData.DoubleClick += CopyToClipboard_DoubleClick; + labelInclinationToTheEclipticData.Enter += SetStatusbar_Enter; + labelInclinationToTheEclipticData.Leave += ClearStatusbar_Leave; + labelInclinationToTheEclipticData.MouseEnter += SetStatusbar_Enter; + labelInclinationToTheEclipticData.MouseLeave += ClearStatusbar_Leave; // // labelOrbitalEccentricityData // - this.labelOrbitalEccentricityData.AccessibleDescription = "Shows the information of \"Orbital eccentricity\""; - this.labelOrbitalEccentricityData.AccessibleName = "Shows the information of \"Orbital eccentricity\""; - this.labelOrbitalEccentricityData.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelOrbitalEccentricityData.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelOrbitalEccentricityData.Location = new System.Drawing.Point(273, 185); - this.labelOrbitalEccentricityData.Name = "labelOrbitalEccentricityData"; - this.labelOrbitalEccentricityData.Size = new System.Drawing.Size(143, 20); - this.labelOrbitalEccentricityData.TabIndex = 15; - this.toolTip.SetToolTip(this.labelOrbitalEccentricityData, "Shows the information of \"Orbital eccentricity\""); - this.labelOrbitalEccentricityData.Values.Text = ".................."; - this.labelOrbitalEccentricityData.DoubleClick += new System.EventHandler(this.CopyToClipboard_DoubleClick); - this.labelOrbitalEccentricityData.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelOrbitalEccentricityData.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelOrbitalEccentricityData.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelOrbitalEccentricityData.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelOrbitalEccentricityData.AccessibleDescription = "Shows the information of \"Orbital eccentricity\""; + labelOrbitalEccentricityData.AccessibleName = "Shows the information of \"Orbital eccentricity\""; + labelOrbitalEccentricityData.AccessibleRole = AccessibleRole.StaticText; + labelOrbitalEccentricityData.Dock = DockStyle.Fill; + labelOrbitalEccentricityData.Location = new Point(273, 185); + labelOrbitalEccentricityData.Name = "labelOrbitalEccentricityData"; + labelOrbitalEccentricityData.Size = new Size(143, 20); + labelOrbitalEccentricityData.TabIndex = 15; + toolTip.SetToolTip(labelOrbitalEccentricityData, "Shows the information of \"Orbital eccentricity\""); + labelOrbitalEccentricityData.Values.Text = ".................."; + labelOrbitalEccentricityData.DoubleClick += CopyToClipboard_DoubleClick; + labelOrbitalEccentricityData.Enter += SetStatusbar_Enter; + labelOrbitalEccentricityData.Leave += ClearStatusbar_Leave; + labelOrbitalEccentricityData.MouseEnter += SetStatusbar_Enter; + labelOrbitalEccentricityData.MouseLeave += ClearStatusbar_Leave; // // labelMeanDailyMotionData // - this.labelMeanDailyMotionData.AccessibleDescription = "Shows the information of \"Mean daily motion (degrees per day)\""; - this.labelMeanDailyMotionData.AccessibleName = "Shows the information of \"Mean daily motion (degrees per day)\""; - this.labelMeanDailyMotionData.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelMeanDailyMotionData.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelMeanDailyMotionData.Location = new System.Drawing.Point(273, 211); - this.labelMeanDailyMotionData.Name = "labelMeanDailyMotionData"; - this.labelMeanDailyMotionData.Size = new System.Drawing.Size(143, 20); - this.labelMeanDailyMotionData.TabIndex = 17; - this.toolTip.SetToolTip(this.labelMeanDailyMotionData, "Shows the information of \"Mean daily motion (degrees per day)\""); - this.labelMeanDailyMotionData.Values.Text = ".................."; - this.labelMeanDailyMotionData.DoubleClick += new System.EventHandler(this.CopyToClipboard_DoubleClick); - this.labelMeanDailyMotionData.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelMeanDailyMotionData.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelMeanDailyMotionData.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelMeanDailyMotionData.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelMeanDailyMotionData.AccessibleDescription = "Shows the information of \"Mean daily motion (degrees per day)\""; + labelMeanDailyMotionData.AccessibleName = "Shows the information of \"Mean daily motion (degrees per day)\""; + labelMeanDailyMotionData.AccessibleRole = AccessibleRole.StaticText; + labelMeanDailyMotionData.Dock = DockStyle.Fill; + labelMeanDailyMotionData.Location = new Point(273, 211); + labelMeanDailyMotionData.Name = "labelMeanDailyMotionData"; + labelMeanDailyMotionData.Size = new Size(143, 20); + labelMeanDailyMotionData.TabIndex = 17; + toolTip.SetToolTip(labelMeanDailyMotionData, "Shows the information of \"Mean daily motion (degrees per day)\""); + labelMeanDailyMotionData.Values.Text = ".................."; + labelMeanDailyMotionData.DoubleClick += CopyToClipboard_DoubleClick; + labelMeanDailyMotionData.Enter += SetStatusbar_Enter; + labelMeanDailyMotionData.Leave += ClearStatusbar_Leave; + labelMeanDailyMotionData.MouseEnter += SetStatusbar_Enter; + labelMeanDailyMotionData.MouseLeave += ClearStatusbar_Leave; // // labelSemiMajorAxisData // - this.labelSemiMajorAxisData.AccessibleDescription = "Shows the information of \"Semi-major axis (AU)\""; - this.labelSemiMajorAxisData.AccessibleName = "Shows the information of \"Semi-major axis (AU)\""; - this.labelSemiMajorAxisData.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelSemiMajorAxisData.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelSemiMajorAxisData.Location = new System.Drawing.Point(273, 237); - this.labelSemiMajorAxisData.Name = "labelSemiMajorAxisData"; - this.labelSemiMajorAxisData.Size = new System.Drawing.Size(143, 20); - this.labelSemiMajorAxisData.TabIndex = 19; - this.toolTip.SetToolTip(this.labelSemiMajorAxisData, "Shows the information of \"Semi-major axis (AU)\""); - this.labelSemiMajorAxisData.Values.Text = ".................."; - this.labelSemiMajorAxisData.DoubleClick += new System.EventHandler(this.CopyToClipboard_DoubleClick); - this.labelSemiMajorAxisData.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelSemiMajorAxisData.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelSemiMajorAxisData.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelSemiMajorAxisData.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelSemiMajorAxisData.AccessibleDescription = "Shows the information of \"Semi-major axis (AU)\""; + labelSemiMajorAxisData.AccessibleName = "Shows the information of \"Semi-major axis (AU)\""; + labelSemiMajorAxisData.AccessibleRole = AccessibleRole.StaticText; + labelSemiMajorAxisData.Dock = DockStyle.Fill; + labelSemiMajorAxisData.Location = new Point(273, 237); + labelSemiMajorAxisData.Name = "labelSemiMajorAxisData"; + labelSemiMajorAxisData.Size = new Size(143, 20); + labelSemiMajorAxisData.TabIndex = 19; + toolTip.SetToolTip(labelSemiMajorAxisData, "Shows the information of \"Semi-major axis (AU)\""); + labelSemiMajorAxisData.Values.Text = ".................."; + labelSemiMajorAxisData.DoubleClick += CopyToClipboard_DoubleClick; + labelSemiMajorAxisData.Enter += SetStatusbar_Enter; + labelSemiMajorAxisData.Leave += ClearStatusbar_Leave; + labelSemiMajorAxisData.MouseEnter += SetStatusbar_Enter; + labelSemiMajorAxisData.MouseLeave += ClearStatusbar_Leave; // // labelAbsoluteMagnitudeData // - this.labelAbsoluteMagnitudeData.AccessibleDescription = "Shows the information of \"Absolute magnitude, H\""; - this.labelAbsoluteMagnitudeData.AccessibleName = "Shows the information of \"Absolute magnitude, H\""; - this.labelAbsoluteMagnitudeData.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelAbsoluteMagnitudeData.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelAbsoluteMagnitudeData.Location = new System.Drawing.Point(273, 263); - this.labelAbsoluteMagnitudeData.Name = "labelAbsoluteMagnitudeData"; - this.labelAbsoluteMagnitudeData.Size = new System.Drawing.Size(143, 24); - this.labelAbsoluteMagnitudeData.TabIndex = 21; - this.toolTip.SetToolTip(this.labelAbsoluteMagnitudeData, "Shows the information of \"Absolute magnitude, H\""); - this.labelAbsoluteMagnitudeData.Values.Text = ".................."; - this.labelAbsoluteMagnitudeData.DoubleClick += new System.EventHandler(this.CopyToClipboard_DoubleClick); - this.labelAbsoluteMagnitudeData.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelAbsoluteMagnitudeData.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelAbsoluteMagnitudeData.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelAbsoluteMagnitudeData.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelAbsoluteMagnitudeData.AccessibleDescription = "Shows the information of \"Absolute magnitude, H\""; + labelAbsoluteMagnitudeData.AccessibleName = "Shows the information of \"Absolute magnitude, H\""; + labelAbsoluteMagnitudeData.AccessibleRole = AccessibleRole.StaticText; + labelAbsoluteMagnitudeData.Dock = DockStyle.Fill; + labelAbsoluteMagnitudeData.Location = new Point(273, 263); + labelAbsoluteMagnitudeData.Name = "labelAbsoluteMagnitudeData"; + labelAbsoluteMagnitudeData.Size = new Size(143, 24); + labelAbsoluteMagnitudeData.TabIndex = 21; + toolTip.SetToolTip(labelAbsoluteMagnitudeData, "Shows the information of \"Absolute magnitude, H\""); + labelAbsoluteMagnitudeData.Values.Text = ".................."; + labelAbsoluteMagnitudeData.DoubleClick += CopyToClipboard_DoubleClick; + labelAbsoluteMagnitudeData.Enter += SetStatusbar_Enter; + labelAbsoluteMagnitudeData.Leave += ClearStatusbar_Leave; + labelAbsoluteMagnitudeData.MouseEnter += SetStatusbar_Enter; + labelAbsoluteMagnitudeData.MouseLeave += ClearStatusbar_Leave; // // labelSlopeParameterData // - this.labelSlopeParameterData.AccessibleDescription = "Shows the information of \"Slope parameter, G\""; - this.labelSlopeParameterData.AccessibleName = "Shows the information of \"Slope parameter, G\""; - this.labelSlopeParameterData.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelSlopeParameterData.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelSlopeParameterData.Location = new System.Drawing.Point(650, 29); - this.labelSlopeParameterData.Name = "labelSlopeParameterData"; - this.labelSlopeParameterData.Size = new System.Drawing.Size(151, 20); - this.labelSlopeParameterData.TabIndex = 23; - this.toolTip.SetToolTip(this.labelSlopeParameterData, "Shows the information of \"Slope parameter, G\""); - this.labelSlopeParameterData.Values.Text = ".................."; - this.labelSlopeParameterData.DoubleClick += new System.EventHandler(this.CopyToClipboard_DoubleClick); - this.labelSlopeParameterData.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelSlopeParameterData.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelSlopeParameterData.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelSlopeParameterData.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelSlopeParameterData.AccessibleDescription = "Shows the information of \"Slope parameter, G\""; + labelSlopeParameterData.AccessibleName = "Shows the information of \"Slope parameter, G\""; + labelSlopeParameterData.AccessibleRole = AccessibleRole.StaticText; + labelSlopeParameterData.Dock = DockStyle.Fill; + labelSlopeParameterData.Location = new Point(650, 29); + labelSlopeParameterData.Name = "labelSlopeParameterData"; + labelSlopeParameterData.Size = new Size(151, 20); + labelSlopeParameterData.TabIndex = 23; + toolTip.SetToolTip(labelSlopeParameterData, "Shows the information of \"Slope parameter, G\""); + labelSlopeParameterData.Values.Text = ".................."; + labelSlopeParameterData.DoubleClick += CopyToClipboard_DoubleClick; + labelSlopeParameterData.Enter += SetStatusbar_Enter; + labelSlopeParameterData.Leave += ClearStatusbar_Leave; + labelSlopeParameterData.MouseEnter += SetStatusbar_Enter; + labelSlopeParameterData.MouseLeave += ClearStatusbar_Leave; // // labelReferenceData // - this.labelReferenceData.AccessibleDescription = "Shows the information of \"Reference\""; - this.labelReferenceData.AccessibleName = "Shows the information of \"Reference\""; - this.labelReferenceData.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelReferenceData.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelReferenceData.Location = new System.Drawing.Point(650, 55); - this.labelReferenceData.Name = "labelReferenceData"; - this.labelReferenceData.Size = new System.Drawing.Size(151, 20); - this.labelReferenceData.TabIndex = 25; - this.toolTip.SetToolTip(this.labelReferenceData, "Shows the information of \"Reference\""); - this.labelReferenceData.Values.Text = ".................."; - this.labelReferenceData.DoubleClick += new System.EventHandler(this.CopyToClipboard_DoubleClick); - this.labelReferenceData.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelReferenceData.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelReferenceData.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelReferenceData.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelReferenceData.AccessibleDescription = "Shows the information of \"Reference\""; + labelReferenceData.AccessibleName = "Shows the information of \"Reference\""; + labelReferenceData.AccessibleRole = AccessibleRole.StaticText; + labelReferenceData.Dock = DockStyle.Fill; + labelReferenceData.Location = new Point(650, 55); + labelReferenceData.Name = "labelReferenceData"; + labelReferenceData.Size = new Size(151, 20); + labelReferenceData.TabIndex = 25; + toolTip.SetToolTip(labelReferenceData, "Shows the information of \"Reference\""); + labelReferenceData.Values.Text = ".................."; + labelReferenceData.DoubleClick += CopyToClipboard_DoubleClick; + labelReferenceData.Enter += SetStatusbar_Enter; + labelReferenceData.Leave += ClearStatusbar_Leave; + labelReferenceData.MouseEnter += SetStatusbar_Enter; + labelReferenceData.MouseLeave += ClearStatusbar_Leave; // // labelNumberOfOppositionsData // - this.labelNumberOfOppositionsData.AccessibleDescription = "Shows the information of \"Number of oppositions\""; - this.labelNumberOfOppositionsData.AccessibleName = "Shows the information of \"Number of oppositions\""; - this.labelNumberOfOppositionsData.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelNumberOfOppositionsData.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelNumberOfOppositionsData.Location = new System.Drawing.Point(650, 81); - this.labelNumberOfOppositionsData.Name = "labelNumberOfOppositionsData"; - this.labelNumberOfOppositionsData.Size = new System.Drawing.Size(151, 20); - this.labelNumberOfOppositionsData.TabIndex = 27; - this.toolTip.SetToolTip(this.labelNumberOfOppositionsData, "Shows the information of \"Number of oppositions\""); - this.labelNumberOfOppositionsData.Values.Text = ".................."; - this.labelNumberOfOppositionsData.DoubleClick += new System.EventHandler(this.CopyToClipboard_DoubleClick); - this.labelNumberOfOppositionsData.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelNumberOfOppositionsData.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelNumberOfOppositionsData.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelNumberOfOppositionsData.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelNumberOfOppositionsData.AccessibleDescription = "Shows the information of \"Number of oppositions\""; + labelNumberOfOppositionsData.AccessibleName = "Shows the information of \"Number of oppositions\""; + labelNumberOfOppositionsData.AccessibleRole = AccessibleRole.StaticText; + labelNumberOfOppositionsData.Dock = DockStyle.Fill; + labelNumberOfOppositionsData.Location = new Point(650, 81); + labelNumberOfOppositionsData.Name = "labelNumberOfOppositionsData"; + labelNumberOfOppositionsData.Size = new Size(151, 20); + labelNumberOfOppositionsData.TabIndex = 27; + toolTip.SetToolTip(labelNumberOfOppositionsData, "Shows the information of \"Number of oppositions\""); + labelNumberOfOppositionsData.Values.Text = ".................."; + labelNumberOfOppositionsData.DoubleClick += CopyToClipboard_DoubleClick; + labelNumberOfOppositionsData.Enter += SetStatusbar_Enter; + labelNumberOfOppositionsData.Leave += ClearStatusbar_Leave; + labelNumberOfOppositionsData.MouseEnter += SetStatusbar_Enter; + labelNumberOfOppositionsData.MouseLeave += ClearStatusbar_Leave; // // labelNumberOfObservationsData // - this.labelNumberOfObservationsData.AccessibleDescription = "Shows the information of \"Number of observations\""; - this.labelNumberOfObservationsData.AccessibleName = "Shows the information of \"Number of observations\""; - this.labelNumberOfObservationsData.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelNumberOfObservationsData.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelNumberOfObservationsData.Location = new System.Drawing.Point(650, 107); - this.labelNumberOfObservationsData.Name = "labelNumberOfObservationsData"; - this.labelNumberOfObservationsData.Size = new System.Drawing.Size(151, 20); - this.labelNumberOfObservationsData.TabIndex = 29; - this.toolTip.SetToolTip(this.labelNumberOfObservationsData, "Shows the information of \"Number of observations\""); - this.labelNumberOfObservationsData.Values.Text = ".................."; - this.labelNumberOfObservationsData.DoubleClick += new System.EventHandler(this.CopyToClipboard_DoubleClick); - this.labelNumberOfObservationsData.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelNumberOfObservationsData.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelNumberOfObservationsData.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelNumberOfObservationsData.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelNumberOfObservationsData.AccessibleDescription = "Shows the information of \"Number of observations\""; + labelNumberOfObservationsData.AccessibleName = "Shows the information of \"Number of observations\""; + labelNumberOfObservationsData.AccessibleRole = AccessibleRole.StaticText; + labelNumberOfObservationsData.Dock = DockStyle.Fill; + labelNumberOfObservationsData.Location = new Point(650, 107); + labelNumberOfObservationsData.Name = "labelNumberOfObservationsData"; + labelNumberOfObservationsData.Size = new Size(151, 20); + labelNumberOfObservationsData.TabIndex = 29; + toolTip.SetToolTip(labelNumberOfObservationsData, "Shows the information of \"Number of observations\""); + labelNumberOfObservationsData.Values.Text = ".................."; + labelNumberOfObservationsData.DoubleClick += CopyToClipboard_DoubleClick; + labelNumberOfObservationsData.Enter += SetStatusbar_Enter; + labelNumberOfObservationsData.Leave += ClearStatusbar_Leave; + labelNumberOfObservationsData.MouseEnter += SetStatusbar_Enter; + labelNumberOfObservationsData.MouseLeave += ClearStatusbar_Leave; // // labelObservationSpanData // - this.labelObservationSpanData.AccessibleDescription = "Shows the information of \"Observation span\""; - this.labelObservationSpanData.AccessibleName = "Shows the information of \"Observation span\""; - this.labelObservationSpanData.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelObservationSpanData.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelObservationSpanData.Location = new System.Drawing.Point(650, 133); - this.labelObservationSpanData.Name = "labelObservationSpanData"; - this.labelObservationSpanData.Size = new System.Drawing.Size(151, 20); - this.labelObservationSpanData.TabIndex = 31; - this.toolTip.SetToolTip(this.labelObservationSpanData, "Shows the information of \"Observation span\""); - this.labelObservationSpanData.Values.Text = ".................."; - this.labelObservationSpanData.DoubleClick += new System.EventHandler(this.CopyToClipboard_DoubleClick); - this.labelObservationSpanData.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelObservationSpanData.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelObservationSpanData.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelObservationSpanData.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelObservationSpanData.AccessibleDescription = "Shows the information of \"Observation span\""; + labelObservationSpanData.AccessibleName = "Shows the information of \"Observation span\""; + labelObservationSpanData.AccessibleRole = AccessibleRole.StaticText; + labelObservationSpanData.Dock = DockStyle.Fill; + labelObservationSpanData.Location = new Point(650, 133); + labelObservationSpanData.Name = "labelObservationSpanData"; + labelObservationSpanData.Size = new Size(151, 20); + labelObservationSpanData.TabIndex = 31; + toolTip.SetToolTip(labelObservationSpanData, "Shows the information of \"Observation span\""); + labelObservationSpanData.Values.Text = ".................."; + labelObservationSpanData.DoubleClick += CopyToClipboard_DoubleClick; + labelObservationSpanData.Enter += SetStatusbar_Enter; + labelObservationSpanData.Leave += ClearStatusbar_Leave; + labelObservationSpanData.MouseEnter += SetStatusbar_Enter; + labelObservationSpanData.MouseLeave += ClearStatusbar_Leave; // // labelRmsResidualData // - this.labelRmsResidualData.AccessibleDescription = "Shows the information of \"r.m.s residual (\")\""; - this.labelRmsResidualData.AccessibleName = "Shows the information of \"r.m.s residual (\")\""; - this.labelRmsResidualData.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelRmsResidualData.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelRmsResidualData.Location = new System.Drawing.Point(650, 159); - this.labelRmsResidualData.Name = "labelRmsResidualData"; - this.labelRmsResidualData.Size = new System.Drawing.Size(151, 20); - this.labelRmsResidualData.TabIndex = 33; - this.toolTip.SetToolTip(this.labelRmsResidualData, "Shows the information of \"r.m.s residual (\")\""); - this.labelRmsResidualData.Values.Text = ".................."; - this.labelRmsResidualData.DoubleClick += new System.EventHandler(this.CopyToClipboard_DoubleClick); - this.labelRmsResidualData.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelRmsResidualData.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelRmsResidualData.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelRmsResidualData.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelRmsResidualData.AccessibleDescription = "Shows the information of \"r.m.s residual (\")\""; + labelRmsResidualData.AccessibleName = "Shows the information of \"r.m.s residual (\")\""; + labelRmsResidualData.AccessibleRole = AccessibleRole.StaticText; + labelRmsResidualData.Dock = DockStyle.Fill; + labelRmsResidualData.Location = new Point(650, 159); + labelRmsResidualData.Name = "labelRmsResidualData"; + labelRmsResidualData.Size = new Size(151, 20); + labelRmsResidualData.TabIndex = 33; + toolTip.SetToolTip(labelRmsResidualData, "Shows the information of \"r.m.s residual (\")\""); + labelRmsResidualData.Values.Text = ".................."; + labelRmsResidualData.DoubleClick += CopyToClipboard_DoubleClick; + labelRmsResidualData.Enter += SetStatusbar_Enter; + labelRmsResidualData.Leave += ClearStatusbar_Leave; + labelRmsResidualData.MouseEnter += SetStatusbar_Enter; + labelRmsResidualData.MouseLeave += ClearStatusbar_Leave; // // labelComputerNameData // - this.labelComputerNameData.AccessibleDescription = "Shows the information of \"Computer name\""; - this.labelComputerNameData.AccessibleName = "Shows the information of \"Computer name\""; - this.labelComputerNameData.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelComputerNameData.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelComputerNameData.Location = new System.Drawing.Point(650, 185); - this.labelComputerNameData.Name = "labelComputerNameData"; - this.labelComputerNameData.Size = new System.Drawing.Size(151, 20); - this.labelComputerNameData.TabIndex = 35; - this.toolTip.SetToolTip(this.labelComputerNameData, "Shows the information of \"Computer name\""); - this.labelComputerNameData.Values.Text = ".................."; - this.labelComputerNameData.DoubleClick += new System.EventHandler(this.CopyToClipboard_DoubleClick); - this.labelComputerNameData.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelComputerNameData.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelComputerNameData.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelComputerNameData.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelComputerNameData.AccessibleDescription = "Shows the information of \"Computer name\""; + labelComputerNameData.AccessibleName = "Shows the information of \"Computer name\""; + labelComputerNameData.AccessibleRole = AccessibleRole.StaticText; + labelComputerNameData.Dock = DockStyle.Fill; + labelComputerNameData.Location = new Point(650, 185); + labelComputerNameData.Name = "labelComputerNameData"; + labelComputerNameData.Size = new Size(151, 20); + labelComputerNameData.TabIndex = 35; + toolTip.SetToolTip(labelComputerNameData, "Shows the information of \"Computer name\""); + labelComputerNameData.Values.Text = ".................."; + labelComputerNameData.DoubleClick += CopyToClipboard_DoubleClick; + labelComputerNameData.Enter += SetStatusbar_Enter; + labelComputerNameData.Leave += ClearStatusbar_Leave; + labelComputerNameData.MouseEnter += SetStatusbar_Enter; + labelComputerNameData.MouseLeave += ClearStatusbar_Leave; // // labelFlagsData // - this.labelFlagsData.AccessibleDescription = "Shows the information of \"4-hexdigit flags\""; - this.labelFlagsData.AccessibleName = "Shows the information of \"4-hexdigit flags\""; - this.labelFlagsData.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelFlagsData.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelFlagsData.Location = new System.Drawing.Point(650, 211); - this.labelFlagsData.Name = "labelFlagsData"; - this.labelFlagsData.Size = new System.Drawing.Size(151, 20); - this.labelFlagsData.TabIndex = 37; - this.toolTip.SetToolTip(this.labelFlagsData, "Shows the information of \"4-hexdigit flags\""); - this.labelFlagsData.Values.Text = ".................."; - this.labelFlagsData.DoubleClick += new System.EventHandler(this.CopyToClipboard_DoubleClick); - this.labelFlagsData.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelFlagsData.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelFlagsData.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelFlagsData.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelFlagsData.AccessibleDescription = "Shows the information of \"4-hexdigit flags\""; + labelFlagsData.AccessibleName = "Shows the information of \"4-hexdigit flags\""; + labelFlagsData.AccessibleRole = AccessibleRole.StaticText; + labelFlagsData.Dock = DockStyle.Fill; + labelFlagsData.Location = new Point(650, 211); + labelFlagsData.Name = "labelFlagsData"; + labelFlagsData.Size = new Size(151, 20); + labelFlagsData.TabIndex = 37; + toolTip.SetToolTip(labelFlagsData, "Shows the information of \"4-hexdigit flags\""); + labelFlagsData.Values.Text = ".................."; + labelFlagsData.DoubleClick += CopyToClipboard_DoubleClick; + labelFlagsData.Enter += SetStatusbar_Enter; + labelFlagsData.Leave += ClearStatusbar_Leave; + labelFlagsData.MouseEnter += SetStatusbar_Enter; + labelFlagsData.MouseLeave += ClearStatusbar_Leave; // // labelDateLastObservationData // - this.labelDateLastObservationData.AccessibleDescription = "Shows the information of \"Date of last observation\""; - this.labelDateLastObservationData.AccessibleName = "Shows the information of \"Date of last observation\""; - this.labelDateLastObservationData.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelDateLastObservationData.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelDateLastObservationData.Location = new System.Drawing.Point(650, 237); - this.labelDateLastObservationData.Name = "labelDateLastObservationData"; - this.labelDateLastObservationData.Size = new System.Drawing.Size(151, 20); - this.labelDateLastObservationData.TabIndex = 39; - this.toolTip.SetToolTip(this.labelDateLastObservationData, "Shows the information of \"Date of last observation\""); - this.labelDateLastObservationData.Values.Text = ".................."; - this.labelDateLastObservationData.DoubleClick += new System.EventHandler(this.CopyToClipboard_DoubleClick); - this.labelDateLastObservationData.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelDateLastObservationData.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelDateLastObservationData.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelDateLastObservationData.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelDateLastObservationData.AccessibleDescription = "Shows the information of \"Date of last observation\""; + labelDateLastObservationData.AccessibleName = "Shows the information of \"Date of last observation\""; + labelDateLastObservationData.AccessibleRole = AccessibleRole.StaticText; + labelDateLastObservationData.Dock = DockStyle.Fill; + labelDateLastObservationData.Location = new Point(650, 237); + labelDateLastObservationData.Name = "labelDateLastObservationData"; + labelDateLastObservationData.Size = new Size(151, 20); + labelDateLastObservationData.TabIndex = 39; + toolTip.SetToolTip(labelDateLastObservationData, "Shows the information of \"Date of last observation\""); + labelDateLastObservationData.Values.Text = ".................."; + labelDateLastObservationData.DoubleClick += CopyToClipboard_DoubleClick; + labelDateLastObservationData.Enter += SetStatusbar_Enter; + labelDateLastObservationData.Leave += ClearStatusbar_Leave; + labelDateLastObservationData.MouseEnter += SetStatusbar_Enter; + labelDateLastObservationData.MouseLeave += ClearStatusbar_Leave; // // labelIndexDesc // - this.labelIndexDesc.AccessibleDescription = "Index No."; - this.labelIndexDesc.AccessibleName = "Index No."; - this.labelIndexDesc.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelIndexDesc.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelIndexDesc.LabelStyle = Krypton.Toolkit.LabelStyle.BoldControl; - this.labelIndexDesc.Location = new System.Drawing.Point(3, 3); - this.labelIndexDesc.Name = "labelIndexDesc"; - this.labelIndexDesc.Size = new System.Drawing.Size(264, 20); - this.labelIndexDesc.TabIndex = 0; - this.toolTip.SetToolTip(this.labelIndexDesc, "Index No."); - this.labelIndexDesc.Values.Text = "Index No."; - this.labelIndexDesc.DoubleClick += new System.EventHandler(this.LabelIndexDesc_DoubleClick); - this.labelIndexDesc.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelIndexDesc.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelIndexDesc.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelIndexDesc.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelIndexDesc.AccessibleDescription = "Index No."; + labelIndexDesc.AccessibleName = "Index No."; + labelIndexDesc.AccessibleRole = AccessibleRole.StaticText; + labelIndexDesc.Dock = DockStyle.Fill; + labelIndexDesc.LabelStyle = LabelStyle.BoldControl; + labelIndexDesc.Location = new Point(3, 3); + labelIndexDesc.Name = "labelIndexDesc"; + labelIndexDesc.Size = new Size(264, 20); + labelIndexDesc.TabIndex = 0; + toolTip.SetToolTip(labelIndexDesc, "Index No."); + labelIndexDesc.Values.Text = "Index No."; + labelIndexDesc.DoubleClick += LabelIndexDesc_DoubleClick; + labelIndexDesc.Enter += SetStatusbar_Enter; + labelIndexDesc.Leave += ClearStatusbar_Leave; + labelIndexDesc.MouseEnter += SetStatusbar_Enter; + labelIndexDesc.MouseLeave += ClearStatusbar_Leave; // // labelReadableDesignationDesc // - this.labelReadableDesignationDesc.AccessibleDescription = "Readable designation"; - this.labelReadableDesignationDesc.AccessibleName = "Readable designation"; - this.labelReadableDesignationDesc.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelReadableDesignationDesc.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelReadableDesignationDesc.LabelStyle = Krypton.Toolkit.LabelStyle.BoldPanel; - this.labelReadableDesignationDesc.Location = new System.Drawing.Point(3, 29); - this.labelReadableDesignationDesc.Name = "labelReadableDesignationDesc"; - this.labelReadableDesignationDesc.Size = new System.Drawing.Size(264, 20); - this.labelReadableDesignationDesc.TabIndex = 2; - this.toolTip.SetToolTip(this.labelReadableDesignationDesc, "Readable designation"); - this.labelReadableDesignationDesc.Values.Text = "Readable designation"; - this.labelReadableDesignationDesc.DoubleClick += new System.EventHandler(this.LabelReadableDesignationNameDesc_DoubleClick); - this.labelReadableDesignationDesc.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelReadableDesignationDesc.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelReadableDesignationDesc.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelReadableDesignationDesc.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelReadableDesignationDesc.AccessibleDescription = "Readable designation"; + labelReadableDesignationDesc.AccessibleName = "Readable designation"; + labelReadableDesignationDesc.AccessibleRole = AccessibleRole.StaticText; + labelReadableDesignationDesc.Dock = DockStyle.Fill; + labelReadableDesignationDesc.LabelStyle = LabelStyle.BoldPanel; + labelReadableDesignationDesc.Location = new Point(3, 29); + labelReadableDesignationDesc.Name = "labelReadableDesignationDesc"; + labelReadableDesignationDesc.Size = new Size(264, 20); + labelReadableDesignationDesc.TabIndex = 2; + toolTip.SetToolTip(labelReadableDesignationDesc, "Readable designation"); + labelReadableDesignationDesc.Values.Text = "Readable designation"; + labelReadableDesignationDesc.DoubleClick += LabelReadableDesignationNameDesc_DoubleClick; + labelReadableDesignationDesc.Enter += SetStatusbar_Enter; + labelReadableDesignationDesc.Leave += ClearStatusbar_Leave; + labelReadableDesignationDesc.MouseEnter += SetStatusbar_Enter; + labelReadableDesignationDesc.MouseLeave += ClearStatusbar_Leave; // // labelEpochDesc // - this.labelEpochDesc.AccessibleDescription = "Epoch (in packed form, .0 TT)"; - this.labelEpochDesc.AccessibleName = "Epoch (in packed form, .0 TT)"; - this.labelEpochDesc.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelEpochDesc.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelEpochDesc.LabelStyle = Krypton.Toolkit.LabelStyle.BoldPanel; - this.labelEpochDesc.Location = new System.Drawing.Point(3, 55); - this.labelEpochDesc.Name = "labelEpochDesc"; - this.labelEpochDesc.Size = new System.Drawing.Size(264, 20); - this.labelEpochDesc.TabIndex = 4; - this.toolTip.SetToolTip(this.labelEpochDesc, "Epoch (in packed form, .0 TT)"); - this.labelEpochDesc.Values.Text = "Epoch (in packed form, .0 TT)"; - this.labelEpochDesc.DoubleClick += new System.EventHandler(this.LabelEpochDesc_DoubleClick); - this.labelEpochDesc.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelEpochDesc.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelEpochDesc.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelEpochDesc.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelEpochDesc.AccessibleDescription = "Epoch (in packed form, .0 TT)"; + labelEpochDesc.AccessibleName = "Epoch (in packed form, .0 TT)"; + labelEpochDesc.AccessibleRole = AccessibleRole.StaticText; + labelEpochDesc.Dock = DockStyle.Fill; + labelEpochDesc.LabelStyle = LabelStyle.BoldPanel; + labelEpochDesc.Location = new Point(3, 55); + labelEpochDesc.Name = "labelEpochDesc"; + labelEpochDesc.Size = new Size(264, 20); + labelEpochDesc.TabIndex = 4; + toolTip.SetToolTip(labelEpochDesc, "Epoch (in packed form, .0 TT)"); + labelEpochDesc.Values.Text = "Epoch (in packed form, .0 TT)"; + labelEpochDesc.DoubleClick += LabelEpochDesc_DoubleClick; + labelEpochDesc.Enter += SetStatusbar_Enter; + labelEpochDesc.Leave += ClearStatusbar_Leave; + labelEpochDesc.MouseEnter += SetStatusbar_Enter; + labelEpochDesc.MouseLeave += ClearStatusbar_Leave; // // labelMeanAnomalyAtTheEpochDesc // - this.labelMeanAnomalyAtTheEpochDesc.AccessibleDescription = "Mean anomaly at the epoch (degrees)"; - this.labelMeanAnomalyAtTheEpochDesc.AccessibleName = "Mean anomaly at the epoch (degrees)"; - this.labelMeanAnomalyAtTheEpochDesc.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelMeanAnomalyAtTheEpochDesc.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelMeanAnomalyAtTheEpochDesc.LabelStyle = Krypton.Toolkit.LabelStyle.BoldPanel; - this.labelMeanAnomalyAtTheEpochDesc.Location = new System.Drawing.Point(3, 81); - this.labelMeanAnomalyAtTheEpochDesc.Name = "labelMeanAnomalyAtTheEpochDesc"; - this.labelMeanAnomalyAtTheEpochDesc.Size = new System.Drawing.Size(264, 20); - this.labelMeanAnomalyAtTheEpochDesc.TabIndex = 6; - this.toolTip.SetToolTip(this.labelMeanAnomalyAtTheEpochDesc, "Mean anomaly at the epoch (degrees)"); - this.labelMeanAnomalyAtTheEpochDesc.Values.ExtraText = "°"; - this.labelMeanAnomalyAtTheEpochDesc.Values.Text = "Mean anomaly at the epoch"; - this.labelMeanAnomalyAtTheEpochDesc.DoubleClick += new System.EventHandler(this.KryptonLabelMeanAnomalyAtTheEpochDesc_DoubleClick); - this.labelMeanAnomalyAtTheEpochDesc.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelMeanAnomalyAtTheEpochDesc.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelMeanAnomalyAtTheEpochDesc.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelMeanAnomalyAtTheEpochDesc.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelMeanAnomalyAtTheEpochDesc.AccessibleDescription = "Mean anomaly at the epoch (degrees)"; + labelMeanAnomalyAtTheEpochDesc.AccessibleName = "Mean anomaly at the epoch (degrees)"; + labelMeanAnomalyAtTheEpochDesc.AccessibleRole = AccessibleRole.StaticText; + labelMeanAnomalyAtTheEpochDesc.Dock = DockStyle.Fill; + labelMeanAnomalyAtTheEpochDesc.LabelStyle = LabelStyle.BoldPanel; + labelMeanAnomalyAtTheEpochDesc.Location = new Point(3, 81); + labelMeanAnomalyAtTheEpochDesc.Name = "labelMeanAnomalyAtTheEpochDesc"; + labelMeanAnomalyAtTheEpochDesc.Size = new Size(264, 20); + labelMeanAnomalyAtTheEpochDesc.TabIndex = 6; + toolTip.SetToolTip(labelMeanAnomalyAtTheEpochDesc, "Mean anomaly at the epoch (degrees)"); + labelMeanAnomalyAtTheEpochDesc.Values.ExtraText = "°"; + labelMeanAnomalyAtTheEpochDesc.Values.Text = "Mean anomaly at the epoch"; + labelMeanAnomalyAtTheEpochDesc.DoubleClick += KryptonLabelMeanAnomalyAtTheEpochDesc_DoubleClick; + labelMeanAnomalyAtTheEpochDesc.Enter += SetStatusbar_Enter; + labelMeanAnomalyAtTheEpochDesc.Leave += ClearStatusbar_Leave; + labelMeanAnomalyAtTheEpochDesc.MouseEnter += SetStatusbar_Enter; + labelMeanAnomalyAtTheEpochDesc.MouseLeave += ClearStatusbar_Leave; // // labelArgumentOfPerihelionDesc // - this.labelArgumentOfPerihelionDesc.AccessibleDescription = "Argument of perihelion, J2000.0 (degrees)"; - this.labelArgumentOfPerihelionDesc.AccessibleName = "Argument of perihelion, J2000.0 (degrees)"; - this.labelArgumentOfPerihelionDesc.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelArgumentOfPerihelionDesc.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelArgumentOfPerihelionDesc.LabelStyle = Krypton.Toolkit.LabelStyle.BoldPanel; - this.labelArgumentOfPerihelionDesc.Location = new System.Drawing.Point(3, 107); - this.labelArgumentOfPerihelionDesc.Name = "labelArgumentOfPerihelionDesc"; - this.labelArgumentOfPerihelionDesc.Size = new System.Drawing.Size(264, 20); - this.labelArgumentOfPerihelionDesc.TabIndex = 8; - this.toolTip.SetToolTip(this.labelArgumentOfPerihelionDesc, "Argument of perihelion, J2000.0 (degrees)"); - this.labelArgumentOfPerihelionDesc.Values.ExtraText = "°"; - this.labelArgumentOfPerihelionDesc.Values.Text = "Argument of perihelion, J2000.0"; - this.labelArgumentOfPerihelionDesc.DoubleClick += new System.EventHandler(this.LabelArgumentOfPerihelionDesc_DoubleClick); - this.labelArgumentOfPerihelionDesc.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelArgumentOfPerihelionDesc.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelArgumentOfPerihelionDesc.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelArgumentOfPerihelionDesc.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelArgumentOfPerihelionDesc.AccessibleDescription = "Argument of perihelion, J2000.0 (degrees)"; + labelArgumentOfPerihelionDesc.AccessibleName = "Argument of perihelion, J2000.0 (degrees)"; + labelArgumentOfPerihelionDesc.AccessibleRole = AccessibleRole.StaticText; + labelArgumentOfPerihelionDesc.Dock = DockStyle.Fill; + labelArgumentOfPerihelionDesc.LabelStyle = LabelStyle.BoldPanel; + labelArgumentOfPerihelionDesc.Location = new Point(3, 107); + labelArgumentOfPerihelionDesc.Name = "labelArgumentOfPerihelionDesc"; + labelArgumentOfPerihelionDesc.Size = new Size(264, 20); + labelArgumentOfPerihelionDesc.TabIndex = 8; + toolTip.SetToolTip(labelArgumentOfPerihelionDesc, "Argument of perihelion, J2000.0 (degrees)"); + labelArgumentOfPerihelionDesc.Values.ExtraText = "°"; + labelArgumentOfPerihelionDesc.Values.Text = "Argument of perihelion, J2000.0"; + labelArgumentOfPerihelionDesc.DoubleClick += LabelArgumentOfPerihelionDesc_DoubleClick; + labelArgumentOfPerihelionDesc.Enter += SetStatusbar_Enter; + labelArgumentOfPerihelionDesc.Leave += ClearStatusbar_Leave; + labelArgumentOfPerihelionDesc.MouseEnter += SetStatusbar_Enter; + labelArgumentOfPerihelionDesc.MouseLeave += ClearStatusbar_Leave; // // labelLongitudeOfTheAscendingNodeDesc // - this.labelLongitudeOfTheAscendingNodeDesc.AccessibleDescription = "Longitude of the ascending node, J2000.0 (degrees)"; - this.labelLongitudeOfTheAscendingNodeDesc.AccessibleName = "Longitude of the ascending node, J2000.0 (degrees)"; - this.labelLongitudeOfTheAscendingNodeDesc.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelLongitudeOfTheAscendingNodeDesc.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelLongitudeOfTheAscendingNodeDesc.LabelStyle = Krypton.Toolkit.LabelStyle.BoldPanel; - this.labelLongitudeOfTheAscendingNodeDesc.Location = new System.Drawing.Point(3, 133); - this.labelLongitudeOfTheAscendingNodeDesc.Name = "labelLongitudeOfTheAscendingNodeDesc"; - this.labelLongitudeOfTheAscendingNodeDesc.Size = new System.Drawing.Size(264, 20); - this.labelLongitudeOfTheAscendingNodeDesc.TabIndex = 10; - this.toolTip.SetToolTip(this.labelLongitudeOfTheAscendingNodeDesc, "Longitude of the ascending node, J2000.0 (degrees)"); - this.labelLongitudeOfTheAscendingNodeDesc.Values.ExtraText = "°"; - this.labelLongitudeOfTheAscendingNodeDesc.Values.Text = "Longitude of the ascending node, J2000.0"; - this.labelLongitudeOfTheAscendingNodeDesc.DoubleClick += new System.EventHandler(this.LabelLongitudeOfTheAscendingNodeDesc_DoubleClick); - this.labelLongitudeOfTheAscendingNodeDesc.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelLongitudeOfTheAscendingNodeDesc.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelLongitudeOfTheAscendingNodeDesc.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelLongitudeOfTheAscendingNodeDesc.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelLongitudeOfTheAscendingNodeDesc.AccessibleDescription = "Longitude of the ascending node, J2000.0 (degrees)"; + labelLongitudeOfTheAscendingNodeDesc.AccessibleName = "Longitude of the ascending node, J2000.0 (degrees)"; + labelLongitudeOfTheAscendingNodeDesc.AccessibleRole = AccessibleRole.StaticText; + labelLongitudeOfTheAscendingNodeDesc.Dock = DockStyle.Fill; + labelLongitudeOfTheAscendingNodeDesc.LabelStyle = LabelStyle.BoldPanel; + labelLongitudeOfTheAscendingNodeDesc.Location = new Point(3, 133); + labelLongitudeOfTheAscendingNodeDesc.Name = "labelLongitudeOfTheAscendingNodeDesc"; + labelLongitudeOfTheAscendingNodeDesc.Size = new Size(264, 20); + labelLongitudeOfTheAscendingNodeDesc.TabIndex = 10; + toolTip.SetToolTip(labelLongitudeOfTheAscendingNodeDesc, "Longitude of the ascending node, J2000.0 (degrees)"); + labelLongitudeOfTheAscendingNodeDesc.Values.ExtraText = "°"; + labelLongitudeOfTheAscendingNodeDesc.Values.Text = "Longitude of the ascending node, J2000.0"; + labelLongitudeOfTheAscendingNodeDesc.DoubleClick += LabelLongitudeOfTheAscendingNodeDesc_DoubleClick; + labelLongitudeOfTheAscendingNodeDesc.Enter += SetStatusbar_Enter; + labelLongitudeOfTheAscendingNodeDesc.Leave += ClearStatusbar_Leave; + labelLongitudeOfTheAscendingNodeDesc.MouseEnter += SetStatusbar_Enter; + labelLongitudeOfTheAscendingNodeDesc.MouseLeave += ClearStatusbar_Leave; // // labelInclinationToTheEclipticDesc // - this.labelInclinationToTheEclipticDesc.AccessibleDescription = "Inclination to the ecliptic, J2000.0 (degrees)"; - this.labelInclinationToTheEclipticDesc.AccessibleName = "Inclination to the ecliptic, J2000.0 (degrees)"; - this.labelInclinationToTheEclipticDesc.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelInclinationToTheEclipticDesc.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelInclinationToTheEclipticDesc.LabelStyle = Krypton.Toolkit.LabelStyle.BoldPanel; - this.labelInclinationToTheEclipticDesc.Location = new System.Drawing.Point(3, 159); - this.labelInclinationToTheEclipticDesc.Name = "labelInclinationToTheEclipticDesc"; - this.labelInclinationToTheEclipticDesc.Size = new System.Drawing.Size(264, 20); - this.labelInclinationToTheEclipticDesc.TabIndex = 12; - this.toolTip.SetToolTip(this.labelInclinationToTheEclipticDesc, "Inclination to the ecliptic, J2000.0 (degrees)"); - this.labelInclinationToTheEclipticDesc.Values.ExtraText = "°"; - this.labelInclinationToTheEclipticDesc.Values.Text = "Inclination to the ecliptic, J2000.0"; - this.labelInclinationToTheEclipticDesc.DoubleClick += new System.EventHandler(this.LabelInclinationToTheEclipticDesc_DoubleClick); - this.labelInclinationToTheEclipticDesc.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelInclinationToTheEclipticDesc.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelInclinationToTheEclipticDesc.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelInclinationToTheEclipticDesc.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelInclinationToTheEclipticDesc.AccessibleDescription = "Inclination to the ecliptic, J2000.0 (degrees)"; + labelInclinationToTheEclipticDesc.AccessibleName = "Inclination to the ecliptic, J2000.0 (degrees)"; + labelInclinationToTheEclipticDesc.AccessibleRole = AccessibleRole.StaticText; + labelInclinationToTheEclipticDesc.Dock = DockStyle.Fill; + labelInclinationToTheEclipticDesc.LabelStyle = LabelStyle.BoldPanel; + labelInclinationToTheEclipticDesc.Location = new Point(3, 159); + labelInclinationToTheEclipticDesc.Name = "labelInclinationToTheEclipticDesc"; + labelInclinationToTheEclipticDesc.Size = new Size(264, 20); + labelInclinationToTheEclipticDesc.TabIndex = 12; + toolTip.SetToolTip(labelInclinationToTheEclipticDesc, "Inclination to the ecliptic, J2000.0 (degrees)"); + labelInclinationToTheEclipticDesc.Values.ExtraText = "°"; + labelInclinationToTheEclipticDesc.Values.Text = "Inclination to the ecliptic, J2000.0"; + labelInclinationToTheEclipticDesc.DoubleClick += LabelInclinationToTheEclipticDesc_DoubleClick; + labelInclinationToTheEclipticDesc.Enter += SetStatusbar_Enter; + labelInclinationToTheEclipticDesc.Leave += ClearStatusbar_Leave; + labelInclinationToTheEclipticDesc.MouseEnter += SetStatusbar_Enter; + labelInclinationToTheEclipticDesc.MouseLeave += ClearStatusbar_Leave; // // labelOrbitalEccentricityDesc // - this.labelOrbitalEccentricityDesc.AccessibleDescription = "Orbital eccentricity"; - this.labelOrbitalEccentricityDesc.AccessibleName = "Orbital eccentricity"; - this.labelOrbitalEccentricityDesc.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelOrbitalEccentricityDesc.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelOrbitalEccentricityDesc.LabelStyle = Krypton.Toolkit.LabelStyle.BoldPanel; - this.labelOrbitalEccentricityDesc.Location = new System.Drawing.Point(3, 185); - this.labelOrbitalEccentricityDesc.Name = "labelOrbitalEccentricityDesc"; - this.labelOrbitalEccentricityDesc.Size = new System.Drawing.Size(264, 20); - this.labelOrbitalEccentricityDesc.TabIndex = 14; - this.toolTip.SetToolTip(this.labelOrbitalEccentricityDesc, "Orbital eccentricity"); - this.labelOrbitalEccentricityDesc.Values.Text = "Orbital eccentricity"; - this.labelOrbitalEccentricityDesc.DoubleClick += new System.EventHandler(this.LabelOrbitalEccentricityDesc_DoubleClick); - this.labelOrbitalEccentricityDesc.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelOrbitalEccentricityDesc.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelOrbitalEccentricityDesc.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelOrbitalEccentricityDesc.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelOrbitalEccentricityDesc.AccessibleDescription = "Orbital eccentricity"; + labelOrbitalEccentricityDesc.AccessibleName = "Orbital eccentricity"; + labelOrbitalEccentricityDesc.AccessibleRole = AccessibleRole.StaticText; + labelOrbitalEccentricityDesc.Dock = DockStyle.Fill; + labelOrbitalEccentricityDesc.LabelStyle = LabelStyle.BoldPanel; + labelOrbitalEccentricityDesc.Location = new Point(3, 185); + labelOrbitalEccentricityDesc.Name = "labelOrbitalEccentricityDesc"; + labelOrbitalEccentricityDesc.Size = new Size(264, 20); + labelOrbitalEccentricityDesc.TabIndex = 14; + toolTip.SetToolTip(labelOrbitalEccentricityDesc, "Orbital eccentricity"); + labelOrbitalEccentricityDesc.Values.Text = "Orbital eccentricity"; + labelOrbitalEccentricityDesc.DoubleClick += LabelOrbitalEccentricityDesc_DoubleClick; + labelOrbitalEccentricityDesc.Enter += SetStatusbar_Enter; + labelOrbitalEccentricityDesc.Leave += ClearStatusbar_Leave; + labelOrbitalEccentricityDesc.MouseEnter += SetStatusbar_Enter; + labelOrbitalEccentricityDesc.MouseLeave += ClearStatusbar_Leave; // // labelMeanDailyMotionDesc // - this.labelMeanDailyMotionDesc.AccessibleDescription = "Mean daily motion (degrees per day)"; - this.labelMeanDailyMotionDesc.AccessibleName = "Mean daily motion (degrees per day)"; - this.labelMeanDailyMotionDesc.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelMeanDailyMotionDesc.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelMeanDailyMotionDesc.LabelStyle = Krypton.Toolkit.LabelStyle.BoldPanel; - this.labelMeanDailyMotionDesc.Location = new System.Drawing.Point(3, 211); - this.labelMeanDailyMotionDesc.Name = "labelMeanDailyMotionDesc"; - this.labelMeanDailyMotionDesc.Size = new System.Drawing.Size(264, 20); - this.labelMeanDailyMotionDesc.TabIndex = 16; - this.toolTip.SetToolTip(this.labelMeanDailyMotionDesc, "Mean daily motion (degrees per day)"); - this.labelMeanDailyMotionDesc.Values.ExtraText = "°/day"; - this.labelMeanDailyMotionDesc.Values.Text = "Mean daily motion"; - this.labelMeanDailyMotionDesc.DoubleClick += new System.EventHandler(this.LabelMeanDailyMotionDesc_DoubleClick); - this.labelMeanDailyMotionDesc.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelMeanDailyMotionDesc.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelMeanDailyMotionDesc.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelMeanDailyMotionDesc.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelMeanDailyMotionDesc.AccessibleDescription = "Mean daily motion (degrees per day)"; + labelMeanDailyMotionDesc.AccessibleName = "Mean daily motion (degrees per day)"; + labelMeanDailyMotionDesc.AccessibleRole = AccessibleRole.StaticText; + labelMeanDailyMotionDesc.Dock = DockStyle.Fill; + labelMeanDailyMotionDesc.LabelStyle = LabelStyle.BoldPanel; + labelMeanDailyMotionDesc.Location = new Point(3, 211); + labelMeanDailyMotionDesc.Name = "labelMeanDailyMotionDesc"; + labelMeanDailyMotionDesc.Size = new Size(264, 20); + labelMeanDailyMotionDesc.TabIndex = 16; + toolTip.SetToolTip(labelMeanDailyMotionDesc, "Mean daily motion (degrees per day)"); + labelMeanDailyMotionDesc.Values.ExtraText = "°/day"; + labelMeanDailyMotionDesc.Values.Text = "Mean daily motion"; + labelMeanDailyMotionDesc.DoubleClick += LabelMeanDailyMotionDesc_DoubleClick; + labelMeanDailyMotionDesc.Enter += SetStatusbar_Enter; + labelMeanDailyMotionDesc.Leave += ClearStatusbar_Leave; + labelMeanDailyMotionDesc.MouseEnter += SetStatusbar_Enter; + labelMeanDailyMotionDesc.MouseLeave += ClearStatusbar_Leave; // // labelSemiMajorAxisDesc // - this.labelSemiMajorAxisDesc.AccessibleDescription = "Semi-major axis (AU)"; - this.labelSemiMajorAxisDesc.AccessibleName = "Semi-major axis (AU)"; - this.labelSemiMajorAxisDesc.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelSemiMajorAxisDesc.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelSemiMajorAxisDesc.LabelStyle = Krypton.Toolkit.LabelStyle.BoldPanel; - this.labelSemiMajorAxisDesc.Location = new System.Drawing.Point(3, 237); - this.labelSemiMajorAxisDesc.Name = "labelSemiMajorAxisDesc"; - this.labelSemiMajorAxisDesc.Size = new System.Drawing.Size(264, 20); - this.labelSemiMajorAxisDesc.TabIndex = 18; - this.toolTip.SetToolTip(this.labelSemiMajorAxisDesc, "Semi-major axis (AU)"); - this.labelSemiMajorAxisDesc.Values.ExtraText = "AU"; - this.labelSemiMajorAxisDesc.Values.Text = "Semi-major axis"; - this.labelSemiMajorAxisDesc.DoubleClick += new System.EventHandler(this.LabelSemiMajorAxisDesc_DoubleClick); - this.labelSemiMajorAxisDesc.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelSemiMajorAxisDesc.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelSemiMajorAxisDesc.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelSemiMajorAxisDesc.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelSemiMajorAxisDesc.AccessibleDescription = "Semi-major axis (AU)"; + labelSemiMajorAxisDesc.AccessibleName = "Semi-major axis (AU)"; + labelSemiMajorAxisDesc.AccessibleRole = AccessibleRole.StaticText; + labelSemiMajorAxisDesc.Dock = DockStyle.Fill; + labelSemiMajorAxisDesc.LabelStyle = LabelStyle.BoldPanel; + labelSemiMajorAxisDesc.Location = new Point(3, 237); + labelSemiMajorAxisDesc.Name = "labelSemiMajorAxisDesc"; + labelSemiMajorAxisDesc.Size = new Size(264, 20); + labelSemiMajorAxisDesc.TabIndex = 18; + toolTip.SetToolTip(labelSemiMajorAxisDesc, "Semi-major axis (AU)"); + labelSemiMajorAxisDesc.Values.ExtraText = "AU"; + labelSemiMajorAxisDesc.Values.Text = "Semi-major axis"; + labelSemiMajorAxisDesc.DoubleClick += LabelSemiMajorAxisDesc_DoubleClick; + labelSemiMajorAxisDesc.Enter += SetStatusbar_Enter; + labelSemiMajorAxisDesc.Leave += ClearStatusbar_Leave; + labelSemiMajorAxisDesc.MouseEnter += SetStatusbar_Enter; + labelSemiMajorAxisDesc.MouseLeave += ClearStatusbar_Leave; // // labelAbsoluteMagnitudeDesc // - this.labelAbsoluteMagnitudeDesc.AccessibleDescription = "Absolute magnitude, H"; - this.labelAbsoluteMagnitudeDesc.AccessibleName = "Absolute magnitude, H"; - this.labelAbsoluteMagnitudeDesc.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelAbsoluteMagnitudeDesc.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelAbsoluteMagnitudeDesc.LabelStyle = Krypton.Toolkit.LabelStyle.BoldPanel; - this.labelAbsoluteMagnitudeDesc.Location = new System.Drawing.Point(3, 263); - this.labelAbsoluteMagnitudeDesc.Name = "labelAbsoluteMagnitudeDesc"; - this.labelAbsoluteMagnitudeDesc.Size = new System.Drawing.Size(264, 24); - this.labelAbsoluteMagnitudeDesc.TabIndex = 20; - this.toolTip.SetToolTip(this.labelAbsoluteMagnitudeDesc, "Absolute magnitude, H"); - this.labelAbsoluteMagnitudeDesc.Values.ExtraText = "mag"; - this.labelAbsoluteMagnitudeDesc.Values.Text = "Absolute magnitude, H"; - this.labelAbsoluteMagnitudeDesc.DoubleClick += new System.EventHandler(this.LabelAbsoluteMagnitudeDesc_DoubleClick); - this.labelAbsoluteMagnitudeDesc.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelAbsoluteMagnitudeDesc.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelAbsoluteMagnitudeDesc.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelAbsoluteMagnitudeDesc.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelAbsoluteMagnitudeDesc.AccessibleDescription = "Absolute magnitude, H"; + labelAbsoluteMagnitudeDesc.AccessibleName = "Absolute magnitude, H"; + labelAbsoluteMagnitudeDesc.AccessibleRole = AccessibleRole.StaticText; + labelAbsoluteMagnitudeDesc.Dock = DockStyle.Fill; + labelAbsoluteMagnitudeDesc.LabelStyle = LabelStyle.BoldPanel; + labelAbsoluteMagnitudeDesc.Location = new Point(3, 263); + labelAbsoluteMagnitudeDesc.Name = "labelAbsoluteMagnitudeDesc"; + labelAbsoluteMagnitudeDesc.Size = new Size(264, 24); + labelAbsoluteMagnitudeDesc.TabIndex = 20; + toolTip.SetToolTip(labelAbsoluteMagnitudeDesc, "Absolute magnitude, H"); + labelAbsoluteMagnitudeDesc.Values.ExtraText = "mag"; + labelAbsoluteMagnitudeDesc.Values.Text = "Absolute magnitude, H"; + labelAbsoluteMagnitudeDesc.DoubleClick += LabelAbsoluteMagnitudeDesc_DoubleClick; + labelAbsoluteMagnitudeDesc.Enter += SetStatusbar_Enter; + labelAbsoluteMagnitudeDesc.Leave += ClearStatusbar_Leave; + labelAbsoluteMagnitudeDesc.MouseEnter += SetStatusbar_Enter; + labelAbsoluteMagnitudeDesc.MouseLeave += ClearStatusbar_Leave; // // labelSlopeParameterDesc // - this.labelSlopeParameterDesc.AccessibleDescription = "Slope parameter, G"; - this.labelSlopeParameterDesc.AccessibleName = "Slope parameter, G"; - this.labelSlopeParameterDesc.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelSlopeParameterDesc.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelSlopeParameterDesc.LabelStyle = Krypton.Toolkit.LabelStyle.BoldControl; - this.labelSlopeParameterDesc.Location = new System.Drawing.Point(422, 29); - this.labelSlopeParameterDesc.Name = "labelSlopeParameterDesc"; - this.labelSlopeParameterDesc.Size = new System.Drawing.Size(222, 20); - this.labelSlopeParameterDesc.TabIndex = 22; - this.toolTip.SetToolTip(this.labelSlopeParameterDesc, "Slope parameter, G"); - this.labelSlopeParameterDesc.Values.Text = "Slope parameter, G"; - this.labelSlopeParameterDesc.DoubleClick += new System.EventHandler(this.LabelSlopeParameterDesc_DoubleClick); - this.labelSlopeParameterDesc.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelSlopeParameterDesc.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelSlopeParameterDesc.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelSlopeParameterDesc.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelSlopeParameterDesc.AccessibleDescription = "Slope parameter, G"; + labelSlopeParameterDesc.AccessibleName = "Slope parameter, G"; + labelSlopeParameterDesc.AccessibleRole = AccessibleRole.StaticText; + labelSlopeParameterDesc.Dock = DockStyle.Fill; + labelSlopeParameterDesc.LabelStyle = LabelStyle.BoldControl; + labelSlopeParameterDesc.Location = new Point(422, 29); + labelSlopeParameterDesc.Name = "labelSlopeParameterDesc"; + labelSlopeParameterDesc.Size = new Size(222, 20); + labelSlopeParameterDesc.TabIndex = 22; + toolTip.SetToolTip(labelSlopeParameterDesc, "Slope parameter, G"); + labelSlopeParameterDesc.Values.Text = "Slope parameter, G"; + labelSlopeParameterDesc.DoubleClick += LabelSlopeParameterDesc_DoubleClick; + labelSlopeParameterDesc.Enter += SetStatusbar_Enter; + labelSlopeParameterDesc.Leave += ClearStatusbar_Leave; + labelSlopeParameterDesc.MouseEnter += SetStatusbar_Enter; + labelSlopeParameterDesc.MouseLeave += ClearStatusbar_Leave; // // labelReferenceDesc // - this.labelReferenceDesc.AccessibleDescription = "Reference"; - this.labelReferenceDesc.AccessibleName = "Reference"; - this.labelReferenceDesc.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelReferenceDesc.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelReferenceDesc.LabelStyle = Krypton.Toolkit.LabelStyle.BoldPanel; - this.labelReferenceDesc.Location = new System.Drawing.Point(422, 55); - this.labelReferenceDesc.Name = "labelReferenceDesc"; - this.labelReferenceDesc.Size = new System.Drawing.Size(222, 20); - this.labelReferenceDesc.TabIndex = 24; - this.toolTip.SetToolTip(this.labelReferenceDesc, "Reference"); - this.labelReferenceDesc.Values.Text = "Reference"; - this.labelReferenceDesc.DoubleClick += new System.EventHandler(this.LabelReferenceDesc_DoubleClick); - this.labelReferenceDesc.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelReferenceDesc.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelReferenceDesc.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelReferenceDesc.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelReferenceDesc.AccessibleDescription = "Reference"; + labelReferenceDesc.AccessibleName = "Reference"; + labelReferenceDesc.AccessibleRole = AccessibleRole.StaticText; + labelReferenceDesc.Dock = DockStyle.Fill; + labelReferenceDesc.LabelStyle = LabelStyle.BoldPanel; + labelReferenceDesc.Location = new Point(422, 55); + labelReferenceDesc.Name = "labelReferenceDesc"; + labelReferenceDesc.Size = new Size(222, 20); + labelReferenceDesc.TabIndex = 24; + toolTip.SetToolTip(labelReferenceDesc, "Reference"); + labelReferenceDesc.Values.Text = "Reference"; + labelReferenceDesc.DoubleClick += LabelReferenceDesc_DoubleClick; + labelReferenceDesc.Enter += SetStatusbar_Enter; + labelReferenceDesc.Leave += ClearStatusbar_Leave; + labelReferenceDesc.MouseEnter += SetStatusbar_Enter; + labelReferenceDesc.MouseLeave += ClearStatusbar_Leave; // // labelNumberOfOppositionsDesc // - this.labelNumberOfOppositionsDesc.AccessibleDescription = "Number of oppositions"; - this.labelNumberOfOppositionsDesc.AccessibleName = "Number of oppositions"; - this.labelNumberOfOppositionsDesc.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelNumberOfOppositionsDesc.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelNumberOfOppositionsDesc.LabelStyle = Krypton.Toolkit.LabelStyle.BoldPanel; - this.labelNumberOfOppositionsDesc.Location = new System.Drawing.Point(422, 81); - this.labelNumberOfOppositionsDesc.Name = "labelNumberOfOppositionsDesc"; - this.labelNumberOfOppositionsDesc.Size = new System.Drawing.Size(222, 20); - this.labelNumberOfOppositionsDesc.TabIndex = 26; - this.toolTip.SetToolTip(this.labelNumberOfOppositionsDesc, "Number of oppositions"); - this.labelNumberOfOppositionsDesc.Values.Text = "Number of oppositions"; - this.labelNumberOfOppositionsDesc.DoubleClick += new System.EventHandler(this.LabelNumberOfOppositionsDesc_DoubleClick); - this.labelNumberOfOppositionsDesc.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelNumberOfOppositionsDesc.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelNumberOfOppositionsDesc.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelNumberOfOppositionsDesc.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelNumberOfOppositionsDesc.AccessibleDescription = "Number of oppositions"; + labelNumberOfOppositionsDesc.AccessibleName = "Number of oppositions"; + labelNumberOfOppositionsDesc.AccessibleRole = AccessibleRole.StaticText; + labelNumberOfOppositionsDesc.Dock = DockStyle.Fill; + labelNumberOfOppositionsDesc.LabelStyle = LabelStyle.BoldPanel; + labelNumberOfOppositionsDesc.Location = new Point(422, 81); + labelNumberOfOppositionsDesc.Name = "labelNumberOfOppositionsDesc"; + labelNumberOfOppositionsDesc.Size = new Size(222, 20); + labelNumberOfOppositionsDesc.TabIndex = 26; + toolTip.SetToolTip(labelNumberOfOppositionsDesc, "Number of oppositions"); + labelNumberOfOppositionsDesc.Values.Text = "Number of oppositions"; + labelNumberOfOppositionsDesc.DoubleClick += LabelNumberOfOppositionsDesc_DoubleClick; + labelNumberOfOppositionsDesc.Enter += SetStatusbar_Enter; + labelNumberOfOppositionsDesc.Leave += ClearStatusbar_Leave; + labelNumberOfOppositionsDesc.MouseEnter += SetStatusbar_Enter; + labelNumberOfOppositionsDesc.MouseLeave += ClearStatusbar_Leave; // // labelNumberOfObservationsDesc // - this.labelNumberOfObservationsDesc.AccessibleDescription = "Number of observations"; - this.labelNumberOfObservationsDesc.AccessibleName = "Number of observations"; - this.labelNumberOfObservationsDesc.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelNumberOfObservationsDesc.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelNumberOfObservationsDesc.LabelStyle = Krypton.Toolkit.LabelStyle.BoldPanel; - this.labelNumberOfObservationsDesc.Location = new System.Drawing.Point(422, 107); - this.labelNumberOfObservationsDesc.Name = "labelNumberOfObservationsDesc"; - this.labelNumberOfObservationsDesc.Size = new System.Drawing.Size(222, 20); - this.labelNumberOfObservationsDesc.TabIndex = 28; - this.toolTip.SetToolTip(this.labelNumberOfObservationsDesc, "Number of observations"); - this.labelNumberOfObservationsDesc.Values.Text = "Number of observations"; - this.labelNumberOfObservationsDesc.DoubleClick += new System.EventHandler(this.LabelNumberOfObservationsDesc_DoubleClick); - this.labelNumberOfObservationsDesc.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelNumberOfObservationsDesc.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelNumberOfObservationsDesc.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelNumberOfObservationsDesc.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelNumberOfObservationsDesc.AccessibleDescription = "Number of observations"; + labelNumberOfObservationsDesc.AccessibleName = "Number of observations"; + labelNumberOfObservationsDesc.AccessibleRole = AccessibleRole.StaticText; + labelNumberOfObservationsDesc.Dock = DockStyle.Fill; + labelNumberOfObservationsDesc.LabelStyle = LabelStyle.BoldPanel; + labelNumberOfObservationsDesc.Location = new Point(422, 107); + labelNumberOfObservationsDesc.Name = "labelNumberOfObservationsDesc"; + labelNumberOfObservationsDesc.Size = new Size(222, 20); + labelNumberOfObservationsDesc.TabIndex = 28; + toolTip.SetToolTip(labelNumberOfObservationsDesc, "Number of observations"); + labelNumberOfObservationsDesc.Values.Text = "Number of observations"; + labelNumberOfObservationsDesc.DoubleClick += LabelNumberOfObservationsDesc_DoubleClick; + labelNumberOfObservationsDesc.Enter += SetStatusbar_Enter; + labelNumberOfObservationsDesc.Leave += ClearStatusbar_Leave; + labelNumberOfObservationsDesc.MouseEnter += SetStatusbar_Enter; + labelNumberOfObservationsDesc.MouseLeave += ClearStatusbar_Leave; // // labelObservationSpanDesc // - this.labelObservationSpanDesc.AccessibleDescription = "Observation span"; - this.labelObservationSpanDesc.AccessibleName = "Observation span"; - this.labelObservationSpanDesc.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelObservationSpanDesc.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelObservationSpanDesc.LabelStyle = Krypton.Toolkit.LabelStyle.BoldPanel; - this.labelObservationSpanDesc.Location = new System.Drawing.Point(422, 133); - this.labelObservationSpanDesc.Name = "labelObservationSpanDesc"; - this.labelObservationSpanDesc.Size = new System.Drawing.Size(222, 20); - this.labelObservationSpanDesc.TabIndex = 30; - this.toolTip.SetToolTip(this.labelObservationSpanDesc, "Observation span"); - this.labelObservationSpanDesc.Values.Text = "Observation span"; - this.labelObservationSpanDesc.DoubleClick += new System.EventHandler(this.LabelObservationSpanDesc_DoubleClick); - this.labelObservationSpanDesc.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelObservationSpanDesc.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelObservationSpanDesc.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelObservationSpanDesc.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelObservationSpanDesc.AccessibleDescription = "Observation span"; + labelObservationSpanDesc.AccessibleName = "Observation span"; + labelObservationSpanDesc.AccessibleRole = AccessibleRole.StaticText; + labelObservationSpanDesc.Dock = DockStyle.Fill; + labelObservationSpanDesc.LabelStyle = LabelStyle.BoldPanel; + labelObservationSpanDesc.Location = new Point(422, 133); + labelObservationSpanDesc.Name = "labelObservationSpanDesc"; + labelObservationSpanDesc.Size = new Size(222, 20); + labelObservationSpanDesc.TabIndex = 30; + toolTip.SetToolTip(labelObservationSpanDesc, "Observation span"); + labelObservationSpanDesc.Values.Text = "Observation span"; + labelObservationSpanDesc.DoubleClick += LabelObservationSpanDesc_DoubleClick; + labelObservationSpanDesc.Enter += SetStatusbar_Enter; + labelObservationSpanDesc.Leave += ClearStatusbar_Leave; + labelObservationSpanDesc.MouseEnter += SetStatusbar_Enter; + labelObservationSpanDesc.MouseLeave += ClearStatusbar_Leave; // // labelRmsResidualDesc // - this.labelRmsResidualDesc.AccessibleDescription = "r.m.s. residual (arcseconds)"; - this.labelRmsResidualDesc.AccessibleName = "r.m.s. residual (arcseconds)"; - this.labelRmsResidualDesc.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelRmsResidualDesc.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelRmsResidualDesc.LabelStyle = Krypton.Toolkit.LabelStyle.BoldPanel; - this.labelRmsResidualDesc.Location = new System.Drawing.Point(422, 159); - this.labelRmsResidualDesc.Name = "labelRmsResidualDesc"; - this.labelRmsResidualDesc.Size = new System.Drawing.Size(222, 20); - this.labelRmsResidualDesc.TabIndex = 32; - this.toolTip.SetToolTip(this.labelRmsResidualDesc, "r.m.s. residual (arcseconds)"); - this.labelRmsResidualDesc.Values.ExtraText = "\""; - this.labelRmsResidualDesc.Values.Text = "r.m.s. residual"; - this.labelRmsResidualDesc.DoubleClick += new System.EventHandler(this.LabelRmsResidualDesc_DoubleClick); - this.labelRmsResidualDesc.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelRmsResidualDesc.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelRmsResidualDesc.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelRmsResidualDesc.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelRmsResidualDesc.AccessibleDescription = "r.m.s. residual (arcseconds)"; + labelRmsResidualDesc.AccessibleName = "r.m.s. residual (arcseconds)"; + labelRmsResidualDesc.AccessibleRole = AccessibleRole.StaticText; + labelRmsResidualDesc.Dock = DockStyle.Fill; + labelRmsResidualDesc.LabelStyle = LabelStyle.BoldPanel; + labelRmsResidualDesc.Location = new Point(422, 159); + labelRmsResidualDesc.Name = "labelRmsResidualDesc"; + labelRmsResidualDesc.Size = new Size(222, 20); + labelRmsResidualDesc.TabIndex = 32; + toolTip.SetToolTip(labelRmsResidualDesc, "r.m.s. residual (arcseconds)"); + labelRmsResidualDesc.Values.ExtraText = "\""; + labelRmsResidualDesc.Values.Text = "r.m.s. residual"; + labelRmsResidualDesc.DoubleClick += LabelRmsResidualDesc_DoubleClick; + labelRmsResidualDesc.Enter += SetStatusbar_Enter; + labelRmsResidualDesc.Leave += ClearStatusbar_Leave; + labelRmsResidualDesc.MouseEnter += SetStatusbar_Enter; + labelRmsResidualDesc.MouseLeave += ClearStatusbar_Leave; // // labelComputerNameDesc // - this.labelComputerNameDesc.AccessibleDescription = "Computer name"; - this.labelComputerNameDesc.AccessibleName = "Computer name"; - this.labelComputerNameDesc.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelComputerNameDesc.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelComputerNameDesc.LabelStyle = Krypton.Toolkit.LabelStyle.BoldPanel; - this.labelComputerNameDesc.Location = new System.Drawing.Point(422, 185); - this.labelComputerNameDesc.Name = "labelComputerNameDesc"; - this.labelComputerNameDesc.Size = new System.Drawing.Size(222, 20); - this.labelComputerNameDesc.TabIndex = 34; - this.toolTip.SetToolTip(this.labelComputerNameDesc, "Computer name"); - this.labelComputerNameDesc.Values.Text = "Computer name"; - this.labelComputerNameDesc.DoubleClick += new System.EventHandler(this.LabelComputerNameDesc_DoubleClick); - this.labelComputerNameDesc.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelComputerNameDesc.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelComputerNameDesc.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelComputerNameDesc.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelComputerNameDesc.AccessibleDescription = "Computer name"; + labelComputerNameDesc.AccessibleName = "Computer name"; + labelComputerNameDesc.AccessibleRole = AccessibleRole.StaticText; + labelComputerNameDesc.Dock = DockStyle.Fill; + labelComputerNameDesc.LabelStyle = LabelStyle.BoldPanel; + labelComputerNameDesc.Location = new Point(422, 185); + labelComputerNameDesc.Name = "labelComputerNameDesc"; + labelComputerNameDesc.Size = new Size(222, 20); + labelComputerNameDesc.TabIndex = 34; + toolTip.SetToolTip(labelComputerNameDesc, "Computer name"); + labelComputerNameDesc.Values.Text = "Computer name"; + labelComputerNameDesc.DoubleClick += LabelComputerNameDesc_DoubleClick; + labelComputerNameDesc.Enter += SetStatusbar_Enter; + labelComputerNameDesc.Leave += ClearStatusbar_Leave; + labelComputerNameDesc.MouseEnter += SetStatusbar_Enter; + labelComputerNameDesc.MouseLeave += ClearStatusbar_Leave; // // labelFlagsDesc // - this.labelFlagsDesc.AccessibleDescription = "4-hexdigit flags"; - this.labelFlagsDesc.AccessibleName = "4-hexdigit flags"; - this.labelFlagsDesc.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelFlagsDesc.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelFlagsDesc.LabelStyle = Krypton.Toolkit.LabelStyle.BoldPanel; - this.labelFlagsDesc.Location = new System.Drawing.Point(422, 211); - this.labelFlagsDesc.Name = "labelFlagsDesc"; - this.labelFlagsDesc.Size = new System.Drawing.Size(222, 20); - this.labelFlagsDesc.TabIndex = 36; - this.toolTip.SetToolTip(this.labelFlagsDesc, "4-hexdigit flags"); - this.labelFlagsDesc.Values.Text = "4-hexdigit flags"; - this.labelFlagsDesc.DoubleClick += new System.EventHandler(this.LabelFlagsDesc_DoubleClick); - this.labelFlagsDesc.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelFlagsDesc.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelFlagsDesc.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelFlagsDesc.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelFlagsDesc.AccessibleDescription = "4-hexdigit flags"; + labelFlagsDesc.AccessibleName = "4-hexdigit flags"; + labelFlagsDesc.AccessibleRole = AccessibleRole.StaticText; + labelFlagsDesc.Dock = DockStyle.Fill; + labelFlagsDesc.LabelStyle = LabelStyle.BoldPanel; + labelFlagsDesc.Location = new Point(422, 211); + labelFlagsDesc.Name = "labelFlagsDesc"; + labelFlagsDesc.Size = new Size(222, 20); + labelFlagsDesc.TabIndex = 36; + toolTip.SetToolTip(labelFlagsDesc, "4-hexdigit flags"); + labelFlagsDesc.Values.Text = "4-hexdigit flags"; + labelFlagsDesc.DoubleClick += LabelFlagsDesc_DoubleClick; + labelFlagsDesc.Enter += SetStatusbar_Enter; + labelFlagsDesc.Leave += ClearStatusbar_Leave; + labelFlagsDesc.MouseEnter += SetStatusbar_Enter; + labelFlagsDesc.MouseLeave += ClearStatusbar_Leave; // // labelDateLastObservationDesc // - this.labelDateLastObservationDesc.AccessibleDescription = "Date of last observation (YYYYMMDD)"; - this.labelDateLastObservationDesc.AccessibleName = "Date of last observation (YYYYMMDD)"; - this.labelDateLastObservationDesc.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelDateLastObservationDesc.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelDateLastObservationDesc.LabelStyle = Krypton.Toolkit.LabelStyle.BoldPanel; - this.labelDateLastObservationDesc.Location = new System.Drawing.Point(422, 237); - this.labelDateLastObservationDesc.Name = "labelDateLastObservationDesc"; - this.labelDateLastObservationDesc.Size = new System.Drawing.Size(222, 20); - this.labelDateLastObservationDesc.TabIndex = 38; - this.toolTip.SetToolTip(this.labelDateLastObservationDesc, "Date of last observation (YYYYMMDD)"); - this.labelDateLastObservationDesc.Values.ExtraText = "YYYYMMDD"; - this.labelDateLastObservationDesc.Values.Text = "Date of last observation"; - this.labelDateLastObservationDesc.DoubleClick += new System.EventHandler(this.LabelDateLastObservationDesc_DoubleClick); - this.labelDateLastObservationDesc.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelDateLastObservationDesc.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.labelDateLastObservationDesc.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.labelDateLastObservationDesc.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + labelDateLastObservationDesc.AccessibleDescription = "Date of last observation (YYYYMMDD)"; + labelDateLastObservationDesc.AccessibleName = "Date of last observation (YYYYMMDD)"; + labelDateLastObservationDesc.AccessibleRole = AccessibleRole.StaticText; + labelDateLastObservationDesc.Dock = DockStyle.Fill; + labelDateLastObservationDesc.LabelStyle = LabelStyle.BoldPanel; + labelDateLastObservationDesc.Location = new Point(422, 237); + labelDateLastObservationDesc.Name = "labelDateLastObservationDesc"; + labelDateLastObservationDesc.Size = new Size(222, 20); + labelDateLastObservationDesc.TabIndex = 38; + toolTip.SetToolTip(labelDateLastObservationDesc, "Date of last observation (YYYYMMDD)"); + labelDateLastObservationDesc.Values.ExtraText = "YYYYMMDD"; + labelDateLastObservationDesc.Values.Text = "Date of last observation"; + labelDateLastObservationDesc.DoubleClick += LabelDateLastObservationDesc_DoubleClick; + labelDateLastObservationDesc.Enter += SetStatusbar_Enter; + labelDateLastObservationDesc.Leave += ClearStatusbar_Leave; + labelDateLastObservationDesc.MouseEnter += SetStatusbar_Enter; + labelDateLastObservationDesc.MouseLeave += ClearStatusbar_Leave; // // contextMenuTopTenRecords // - this.contextMenuTopTenRecords.AccessibleDescription = "Shows the context menu of the top ten records"; - this.contextMenuTopTenRecords.AccessibleName = "context menu of the top ten records"; - this.contextMenuTopTenRecords.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuPopup; - this.contextMenuTopTenRecords.Font = new System.Drawing.Font("Segoe UI", 9F); - this.contextMenuTopTenRecords.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.menuitemRecordsSortDirection, - this.toolStripSeparator12, - this.menuitemRecordsMeanAnomalyAtTheEpoch, - this.menuitemRecordsArgumentOfPerihelion, - this.menuitemRecordsLongitudeOfTheAscendingNode, - this.menuitemRecordsInclination, - this.menuitemRecordsOrbitalEccentricity, - this.menuitemRecordsMeanDailyMotion, - this.menuitemRecordsSemiMajorAxis, - this.menuitemRecordsAbsoluteMagnitude, - this.menuitemRecordsSlopeParameter, - this.menuitemRecordsNumberOfOppositions, - this.menuitemRecordsNumberOfObservations, - this.menuitemRecordsObservationSpan, - this.menuitemRecordsRmsResidual, - this.menuitemRecordsComputername, - this.menuitemRecordsDateOfTheLastObservation}); - this.contextMenuTopTenRecords.Name = "contextMenuTopTenRecords"; - this.contextMenuTopTenRecords.OwnerItem = this.splitbuttonTopTenRecords; - this.contextMenuTopTenRecords.Size = new System.Drawing.Size(250, 362); - this.contextMenuTopTenRecords.TabStop = true; - this.contextMenuTopTenRecords.Text = "Top ten records"; - this.toolTip.SetToolTip(this.contextMenuTopTenRecords, "Top ten records"); - this.contextMenuTopTenRecords.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.contextMenuTopTenRecords.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + contextMenuTopTenRecords.AccessibleDescription = "Shows the context menu of the top ten records"; + contextMenuTopTenRecords.AccessibleName = "context menu of the top ten records"; + contextMenuTopTenRecords.AccessibleRole = AccessibleRole.MenuPopup; + contextMenuTopTenRecords.Font = new Font("Segoe UI", 9F, FontStyle.Regular, GraphicsUnit.Point); + contextMenuTopTenRecords.Items.AddRange(new ToolStripItem[] { menuitemRecordsSortDirection, toolStripSeparator12, menuitemRecordsMeanAnomalyAtTheEpoch, menuitemRecordsArgumentOfPerihelion, menuitemRecordsLongitudeOfTheAscendingNode, menuitemRecordsInclination, menuitemRecordsOrbitalEccentricity, menuitemRecordsMeanDailyMotion, menuitemRecordsSemiMajorAxis, menuitemRecordsAbsoluteMagnitude, menuitemRecordsSlopeParameter, menuitemRecordsNumberOfOppositions, menuitemRecordsNumberOfObservations, menuitemRecordsObservationSpan, menuitemRecordsRmsResidual, menuitemRecordsComputername, menuitemRecordsDateOfTheLastObservation }); + contextMenuTopTenRecords.Name = "contextMenuTopTenRecords"; + contextMenuTopTenRecords.OwnerItem = menuitemRecords; + contextMenuTopTenRecords.Size = new Size(250, 362); + contextMenuTopTenRecords.TabStop = true; + contextMenuTopTenRecords.Text = "Top ten records"; + toolTip.SetToolTip(contextMenuTopTenRecords, "Top ten records"); + contextMenuTopTenRecords.MouseEnter += SetStatusbar_Enter; + contextMenuTopTenRecords.MouseLeave += ClearStatusbar_Leave; // // menuitemRecordsSortDirection // - this.menuitemRecordsSortDirection.AccessibleDescription = "Shows the sort direction of the top ten records"; - this.menuitemRecordsSortDirection.AccessibleName = "Sort direction"; - this.menuitemRecordsSortDirection.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuPopup; - this.menuitemRecordsSortDirection.AutoToolTip = true; - this.menuitemRecordsSortDirection.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.menuitemRecordsSortDirectionAscending, - this.menuitemRecordsSortDirectionDescending}); - this.menuitemRecordsSortDirection.Enabled = false; - this.menuitemRecordsSortDirection.Image = global::Planetoid_DB.Properties.Resources.silk_cog; - this.menuitemRecordsSortDirection.Name = "menuitemRecordsSortDirection"; - this.menuitemRecordsSortDirection.Size = new System.Drawing.Size(249, 22); - this.menuitemRecordsSortDirection.Text = "Sort direction"; - this.menuitemRecordsSortDirection.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemRecordsSortDirection.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemRecordsSortDirection.AccessibleDescription = "Shows the sort direction of the top ten records"; + menuitemRecordsSortDirection.AccessibleName = "Sort direction"; + menuitemRecordsSortDirection.AccessibleRole = AccessibleRole.MenuPopup; + menuitemRecordsSortDirection.AutoToolTip = true; + menuitemRecordsSortDirection.DropDownItems.AddRange(new ToolStripItem[] { menuitemRecordsSortDirectionAscending, menuitemRecordsSortDirectionDescending }); + menuitemRecordsSortDirection.Enabled = false; + menuitemRecordsSortDirection.Image = Properties.Resources.silk_cog; + menuitemRecordsSortDirection.Name = "menuitemRecordsSortDirection"; + menuitemRecordsSortDirection.Size = new Size(249, 22); + menuitemRecordsSortDirection.Text = "Sort direction"; + menuitemRecordsSortDirection.MouseEnter += SetStatusbar_Enter; + menuitemRecordsSortDirection.MouseLeave += ClearStatusbar_Leave; // // menuitemRecordsSortDirectionAscending // - this.menuitemRecordsSortDirectionAscending.AccessibleDescription = "Chooses the ascending sort direction of the top ten records"; - this.menuitemRecordsSortDirectionAscending.AccessibleName = "Sorted ascending"; - this.menuitemRecordsSortDirectionAscending.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemRecordsSortDirectionAscending.Checked = true; - this.menuitemRecordsSortDirectionAscending.CheckOnClick = true; - this.menuitemRecordsSortDirectionAscending.CheckState = System.Windows.Forms.CheckState.Checked; - this.menuitemRecordsSortDirectionAscending.Enabled = false; - this.menuitemRecordsSortDirectionAscending.Name = "menuitemRecordsSortDirectionAscending"; - this.menuitemRecordsSortDirectionAscending.Size = new System.Drawing.Size(136, 22); - this.menuitemRecordsSortDirectionAscending.Text = "Ascending"; - this.menuitemRecordsSortDirectionAscending.ToolTipText = "Ascending sort direction"; - this.menuitemRecordsSortDirectionAscending.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemRecordsSortDirectionAscending.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemRecordsSortDirectionAscending.AccessibleDescription = "Chooses the ascending sort direction of the top ten records"; + menuitemRecordsSortDirectionAscending.AccessibleName = "Sorted ascending"; + menuitemRecordsSortDirectionAscending.AccessibleRole = AccessibleRole.MenuItem; + menuitemRecordsSortDirectionAscending.Checked = true; + menuitemRecordsSortDirectionAscending.CheckOnClick = true; + menuitemRecordsSortDirectionAscending.CheckState = CheckState.Checked; + menuitemRecordsSortDirectionAscending.Enabled = false; + menuitemRecordsSortDirectionAscending.Name = "menuitemRecordsSortDirectionAscending"; + menuitemRecordsSortDirectionAscending.Size = new Size(136, 22); + menuitemRecordsSortDirectionAscending.Text = "Ascending"; + menuitemRecordsSortDirectionAscending.ToolTipText = "Ascending sort direction"; + menuitemRecordsSortDirectionAscending.MouseEnter += SetStatusbar_Enter; + menuitemRecordsSortDirectionAscending.MouseLeave += ClearStatusbar_Leave; // // menuitemRecordsSortDirectionDescending // - this.menuitemRecordsSortDirectionDescending.AccessibleDescription = "Chooses the descending sort direction of the top ten records"; - this.menuitemRecordsSortDirectionDescending.AccessibleName = "Sorted descending"; - this.menuitemRecordsSortDirectionDescending.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemRecordsSortDirectionDescending.CheckOnClick = true; - this.menuitemRecordsSortDirectionDescending.Enabled = false; - this.menuitemRecordsSortDirectionDescending.Name = "menuitemRecordsSortDirectionDescending"; - this.menuitemRecordsSortDirectionDescending.Size = new System.Drawing.Size(136, 22); - this.menuitemRecordsSortDirectionDescending.Text = "Descending"; - this.menuitemRecordsSortDirectionDescending.ToolTipText = "Descending sort direction"; - this.menuitemRecordsSortDirectionDescending.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemRecordsSortDirectionDescending.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemRecordsSortDirectionDescending.AccessibleDescription = "Chooses the descending sort direction of the top ten records"; + menuitemRecordsSortDirectionDescending.AccessibleName = "Sorted descending"; + menuitemRecordsSortDirectionDescending.AccessibleRole = AccessibleRole.MenuItem; + menuitemRecordsSortDirectionDescending.CheckOnClick = true; + menuitemRecordsSortDirectionDescending.Enabled = false; + menuitemRecordsSortDirectionDescending.Name = "menuitemRecordsSortDirectionDescending"; + menuitemRecordsSortDirectionDescending.Size = new Size(136, 22); + menuitemRecordsSortDirectionDescending.Text = "Descending"; + menuitemRecordsSortDirectionDescending.ToolTipText = "Descending sort direction"; + menuitemRecordsSortDirectionDescending.MouseEnter += SetStatusbar_Enter; + menuitemRecordsSortDirectionDescending.MouseLeave += ClearStatusbar_Leave; // // toolStripSeparator12 // - this.toolStripSeparator12.AccessibleDescription = "Just a separator"; - this.toolStripSeparator12.AccessibleName = "Just a separator"; - this.toolStripSeparator12.AccessibleRole = System.Windows.Forms.AccessibleRole.Separator; - this.toolStripSeparator12.Name = "toolStripSeparator12"; - this.toolStripSeparator12.Size = new System.Drawing.Size(246, 6); - this.toolStripSeparator12.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripSeparator12.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripSeparator12.AccessibleDescription = "Just a separator"; + toolStripSeparator12.AccessibleName = "Just a separator"; + toolStripSeparator12.AccessibleRole = AccessibleRole.Separator; + toolStripSeparator12.Name = "toolStripSeparator12"; + toolStripSeparator12.Size = new Size(246, 6); + toolStripSeparator12.MouseEnter += SetStatusbar_Enter; + toolStripSeparator12.MouseLeave += ClearStatusbar_Leave; // // menuitemRecordsMeanAnomalyAtTheEpoch // - this.menuitemRecordsMeanAnomalyAtTheEpoch.AccessibleDescription = "Shows the record of the mean anomaly at the epoch"; - this.menuitemRecordsMeanAnomalyAtTheEpoch.AccessibleName = "Record of the mean anomaly at the epoch"; - this.menuitemRecordsMeanAnomalyAtTheEpoch.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemRecordsMeanAnomalyAtTheEpoch.Enabled = false; - this.menuitemRecordsMeanAnomalyAtTheEpoch.Image = ((System.Drawing.Image)(resources.GetObject("menuitemRecordsMeanAnomalyAtTheEpoch.Image"))); - this.menuitemRecordsMeanAnomalyAtTheEpoch.Name = "menuitemRecordsMeanAnomalyAtTheEpoch"; - this.menuitemRecordsMeanAnomalyAtTheEpoch.Size = new System.Drawing.Size(249, 22); - this.menuitemRecordsMeanAnomalyAtTheEpoch.Text = "Mean anomaly at the epoch"; - this.menuitemRecordsMeanAnomalyAtTheEpoch.Click += new System.EventHandler(this.MenuitemRecordsMeanAnomalyAtTheEpoch_Click); - this.menuitemRecordsMeanAnomalyAtTheEpoch.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemRecordsMeanAnomalyAtTheEpoch.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemRecordsMeanAnomalyAtTheEpoch.AccessibleDescription = "Shows the record of the mean anomaly at the epoch"; + menuitemRecordsMeanAnomalyAtTheEpoch.AccessibleName = "Record of the mean anomaly at the epoch"; + menuitemRecordsMeanAnomalyAtTheEpoch.AccessibleRole = AccessibleRole.MenuItem; + menuitemRecordsMeanAnomalyAtTheEpoch.Enabled = false; + menuitemRecordsMeanAnomalyAtTheEpoch.Image = (Image)resources.GetObject("menuitemRecordsMeanAnomalyAtTheEpoch.Image"); + menuitemRecordsMeanAnomalyAtTheEpoch.Name = "menuitemRecordsMeanAnomalyAtTheEpoch"; + menuitemRecordsMeanAnomalyAtTheEpoch.Size = new Size(249, 22); + menuitemRecordsMeanAnomalyAtTheEpoch.Text = "Mean anomaly at the epoch"; + menuitemRecordsMeanAnomalyAtTheEpoch.Click += MenuitemRecordsMeanAnomalyAtTheEpoch_Click; + menuitemRecordsMeanAnomalyAtTheEpoch.MouseEnter += SetStatusbar_Enter; + menuitemRecordsMeanAnomalyAtTheEpoch.MouseLeave += ClearStatusbar_Leave; // // menuitemRecordsArgumentOfPerihelion // - this.menuitemRecordsArgumentOfPerihelion.AccessibleDescription = "Shows the record of the argument of the perihelion"; - this.menuitemRecordsArgumentOfPerihelion.AccessibleName = "Record of the argument of the perihelion"; - this.menuitemRecordsArgumentOfPerihelion.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemRecordsArgumentOfPerihelion.Enabled = false; - this.menuitemRecordsArgumentOfPerihelion.Image = ((System.Drawing.Image)(resources.GetObject("menuitemRecordsArgumentOfPerihelion.Image"))); - this.menuitemRecordsArgumentOfPerihelion.Name = "menuitemRecordsArgumentOfPerihelion"; - this.menuitemRecordsArgumentOfPerihelion.Size = new System.Drawing.Size(249, 22); - this.menuitemRecordsArgumentOfPerihelion.Text = "Argument of perihelion"; - this.menuitemRecordsArgumentOfPerihelion.Click += new System.EventHandler(this.MenuitemRecordsArgumentOfPerihelion_Click); - this.menuitemRecordsArgumentOfPerihelion.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemRecordsArgumentOfPerihelion.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemRecordsArgumentOfPerihelion.AccessibleDescription = "Shows the record of the argument of the perihelion"; + menuitemRecordsArgumentOfPerihelion.AccessibleName = "Record of the argument of the perihelion"; + menuitemRecordsArgumentOfPerihelion.AccessibleRole = AccessibleRole.MenuItem; + menuitemRecordsArgumentOfPerihelion.Enabled = false; + menuitemRecordsArgumentOfPerihelion.Image = (Image)resources.GetObject("menuitemRecordsArgumentOfPerihelion.Image"); + menuitemRecordsArgumentOfPerihelion.Name = "menuitemRecordsArgumentOfPerihelion"; + menuitemRecordsArgumentOfPerihelion.Size = new Size(249, 22); + menuitemRecordsArgumentOfPerihelion.Text = "Argument of perihelion"; + menuitemRecordsArgumentOfPerihelion.Click += MenuitemRecordsArgumentOfPerihelion_Click; + menuitemRecordsArgumentOfPerihelion.MouseEnter += SetStatusbar_Enter; + menuitemRecordsArgumentOfPerihelion.MouseLeave += ClearStatusbar_Leave; // // menuitemRecordsLongitudeOfTheAscendingNode // - this.menuitemRecordsLongitudeOfTheAscendingNode.AccessibleDescription = "Shows the record of the longitude of the ascending node"; - this.menuitemRecordsLongitudeOfTheAscendingNode.AccessibleName = "Record of the longitude of the ascending node"; - this.menuitemRecordsLongitudeOfTheAscendingNode.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemRecordsLongitudeOfTheAscendingNode.Enabled = false; - this.menuitemRecordsLongitudeOfTheAscendingNode.Image = ((System.Drawing.Image)(resources.GetObject("menuitemRecordsLongitudeOfTheAscendingNode.Image"))); - this.menuitemRecordsLongitudeOfTheAscendingNode.Name = "menuitemRecordsLongitudeOfTheAscendingNode"; - this.menuitemRecordsLongitudeOfTheAscendingNode.Size = new System.Drawing.Size(249, 22); - this.menuitemRecordsLongitudeOfTheAscendingNode.Text = "Longitude of the ascending node"; - this.menuitemRecordsLongitudeOfTheAscendingNode.Click += new System.EventHandler(this.MenuitemRecordsLongitudeOfTheAscendingNode_Click); - this.menuitemRecordsLongitudeOfTheAscendingNode.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemRecordsLongitudeOfTheAscendingNode.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemRecordsLongitudeOfTheAscendingNode.AccessibleDescription = "Shows the record of the longitude of the ascending node"; + menuitemRecordsLongitudeOfTheAscendingNode.AccessibleName = "Record of the longitude of the ascending node"; + menuitemRecordsLongitudeOfTheAscendingNode.AccessibleRole = AccessibleRole.MenuItem; + menuitemRecordsLongitudeOfTheAscendingNode.Enabled = false; + menuitemRecordsLongitudeOfTheAscendingNode.Image = (Image)resources.GetObject("menuitemRecordsLongitudeOfTheAscendingNode.Image"); + menuitemRecordsLongitudeOfTheAscendingNode.Name = "menuitemRecordsLongitudeOfTheAscendingNode"; + menuitemRecordsLongitudeOfTheAscendingNode.Size = new Size(249, 22); + menuitemRecordsLongitudeOfTheAscendingNode.Text = "Longitude of the ascending node"; + menuitemRecordsLongitudeOfTheAscendingNode.Click += MenuitemRecordsLongitudeOfTheAscendingNode_Click; + menuitemRecordsLongitudeOfTheAscendingNode.MouseEnter += SetStatusbar_Enter; + menuitemRecordsLongitudeOfTheAscendingNode.MouseLeave += ClearStatusbar_Leave; // // menuitemRecordsInclination // - this.menuitemRecordsInclination.AccessibleDescription = "Shows the record of the inclination to the ecliptic"; - this.menuitemRecordsInclination.AccessibleName = "Record of the inclination to the ecliptic"; - this.menuitemRecordsInclination.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemRecordsInclination.Enabled = false; - this.menuitemRecordsInclination.Image = ((System.Drawing.Image)(resources.GetObject("menuitemRecordsInclination.Image"))); - this.menuitemRecordsInclination.Name = "menuitemRecordsInclination"; - this.menuitemRecordsInclination.Size = new System.Drawing.Size(249, 22); - this.menuitemRecordsInclination.Text = "Inclination to the ecliptic"; - this.menuitemRecordsInclination.Click += new System.EventHandler(this.MenuitemRecordsInclination_Click); - this.menuitemRecordsInclination.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemRecordsInclination.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemRecordsInclination.AccessibleDescription = "Shows the record of the inclination to the ecliptic"; + menuitemRecordsInclination.AccessibleName = "Record of the inclination to the ecliptic"; + menuitemRecordsInclination.AccessibleRole = AccessibleRole.MenuItem; + menuitemRecordsInclination.Enabled = false; + menuitemRecordsInclination.Image = (Image)resources.GetObject("menuitemRecordsInclination.Image"); + menuitemRecordsInclination.Name = "menuitemRecordsInclination"; + menuitemRecordsInclination.Size = new Size(249, 22); + menuitemRecordsInclination.Text = "Inclination to the ecliptic"; + menuitemRecordsInclination.Click += MenuitemRecordsInclination_Click; + menuitemRecordsInclination.MouseEnter += SetStatusbar_Enter; + menuitemRecordsInclination.MouseLeave += ClearStatusbar_Leave; // // menuitemRecordsOrbitalEccentricity // - this.menuitemRecordsOrbitalEccentricity.AccessibleDescription = "Shows the record of the orbital eccentricity"; - this.menuitemRecordsOrbitalEccentricity.AccessibleName = "Record of the orbital eccentricity"; - this.menuitemRecordsOrbitalEccentricity.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemRecordsOrbitalEccentricity.Enabled = false; - this.menuitemRecordsOrbitalEccentricity.Image = ((System.Drawing.Image)(resources.GetObject("menuitemRecordsOrbitalEccentricity.Image"))); - this.menuitemRecordsOrbitalEccentricity.Name = "menuitemRecordsOrbitalEccentricity"; - this.menuitemRecordsOrbitalEccentricity.Size = new System.Drawing.Size(249, 22); - this.menuitemRecordsOrbitalEccentricity.Text = "Orbital eccentricity"; - this.menuitemRecordsOrbitalEccentricity.Click += new System.EventHandler(this.MenuitemRecordsOrbitalEccentricity_Click); - this.menuitemRecordsOrbitalEccentricity.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemRecordsOrbitalEccentricity.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemRecordsOrbitalEccentricity.AccessibleDescription = "Shows the record of the orbital eccentricity"; + menuitemRecordsOrbitalEccentricity.AccessibleName = "Record of the orbital eccentricity"; + menuitemRecordsOrbitalEccentricity.AccessibleRole = AccessibleRole.MenuItem; + menuitemRecordsOrbitalEccentricity.Enabled = false; + menuitemRecordsOrbitalEccentricity.Image = (Image)resources.GetObject("menuitemRecordsOrbitalEccentricity.Image"); + menuitemRecordsOrbitalEccentricity.Name = "menuitemRecordsOrbitalEccentricity"; + menuitemRecordsOrbitalEccentricity.Size = new Size(249, 22); + menuitemRecordsOrbitalEccentricity.Text = "Orbital eccentricity"; + menuitemRecordsOrbitalEccentricity.Click += MenuitemRecordsOrbitalEccentricity_Click; + menuitemRecordsOrbitalEccentricity.MouseEnter += SetStatusbar_Enter; + menuitemRecordsOrbitalEccentricity.MouseLeave += ClearStatusbar_Leave; // // menuitemRecordsMeanDailyMotion // - this.menuitemRecordsMeanDailyMotion.AccessibleDescription = "Shows the record of the mean daily motion"; - this.menuitemRecordsMeanDailyMotion.AccessibleName = "Record of the mean daily motion"; - this.menuitemRecordsMeanDailyMotion.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemRecordsMeanDailyMotion.Enabled = false; - this.menuitemRecordsMeanDailyMotion.Image = ((System.Drawing.Image)(resources.GetObject("menuitemRecordsMeanDailyMotion.Image"))); - this.menuitemRecordsMeanDailyMotion.Name = "menuitemRecordsMeanDailyMotion"; - this.menuitemRecordsMeanDailyMotion.Size = new System.Drawing.Size(249, 22); - this.menuitemRecordsMeanDailyMotion.Text = "Mean daily motion"; - this.menuitemRecordsMeanDailyMotion.Click += new System.EventHandler(this.MenuitemRecordsMeanDailyMotion_Click); - this.menuitemRecordsMeanDailyMotion.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemRecordsMeanDailyMotion.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemRecordsMeanDailyMotion.AccessibleDescription = "Shows the record of the mean daily motion"; + menuitemRecordsMeanDailyMotion.AccessibleName = "Record of the mean daily motion"; + menuitemRecordsMeanDailyMotion.AccessibleRole = AccessibleRole.MenuItem; + menuitemRecordsMeanDailyMotion.Enabled = false; + menuitemRecordsMeanDailyMotion.Image = (Image)resources.GetObject("menuitemRecordsMeanDailyMotion.Image"); + menuitemRecordsMeanDailyMotion.Name = "menuitemRecordsMeanDailyMotion"; + menuitemRecordsMeanDailyMotion.Size = new Size(249, 22); + menuitemRecordsMeanDailyMotion.Text = "Mean daily motion"; + menuitemRecordsMeanDailyMotion.Click += MenuitemRecordsMeanDailyMotion_Click; + menuitemRecordsMeanDailyMotion.MouseEnter += SetStatusbar_Enter; + menuitemRecordsMeanDailyMotion.MouseLeave += ClearStatusbar_Leave; // // menuitemRecordsSemiMajorAxis // - this.menuitemRecordsSemiMajorAxis.AccessibleDescription = "Shows the record of the semi-major axis"; - this.menuitemRecordsSemiMajorAxis.AccessibleName = "Record of the semi-major axis"; - this.menuitemRecordsSemiMajorAxis.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemRecordsSemiMajorAxis.Enabled = false; - this.menuitemRecordsSemiMajorAxis.Image = ((System.Drawing.Image)(resources.GetObject("menuitemRecordsSemiMajorAxis.Image"))); - this.menuitemRecordsSemiMajorAxis.Name = "menuitemRecordsSemiMajorAxis"; - this.menuitemRecordsSemiMajorAxis.Size = new System.Drawing.Size(249, 22); - this.menuitemRecordsSemiMajorAxis.Text = "Semi-major axis"; - this.menuitemRecordsSemiMajorAxis.Click += new System.EventHandler(this.MenuitemRecordsSemiMajorAxis_Click); - this.menuitemRecordsSemiMajorAxis.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemRecordsSemiMajorAxis.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemRecordsSemiMajorAxis.AccessibleDescription = "Shows the record of the semi-major axis"; + menuitemRecordsSemiMajorAxis.AccessibleName = "Record of the semi-major axis"; + menuitemRecordsSemiMajorAxis.AccessibleRole = AccessibleRole.MenuItem; + menuitemRecordsSemiMajorAxis.Enabled = false; + menuitemRecordsSemiMajorAxis.Image = (Image)resources.GetObject("menuitemRecordsSemiMajorAxis.Image"); + menuitemRecordsSemiMajorAxis.Name = "menuitemRecordsSemiMajorAxis"; + menuitemRecordsSemiMajorAxis.Size = new Size(249, 22); + menuitemRecordsSemiMajorAxis.Text = "Semi-major axis"; + menuitemRecordsSemiMajorAxis.Click += MenuitemRecordsSemiMajorAxis_Click; + menuitemRecordsSemiMajorAxis.MouseEnter += SetStatusbar_Enter; + menuitemRecordsSemiMajorAxis.MouseLeave += ClearStatusbar_Leave; // // menuitemRecordsAbsoluteMagnitude // - this.menuitemRecordsAbsoluteMagnitude.AccessibleDescription = "Shows the record of the absolute magnitude"; - this.menuitemRecordsAbsoluteMagnitude.AccessibleName = "Record of the absolute magnitude"; - this.menuitemRecordsAbsoluteMagnitude.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemRecordsAbsoluteMagnitude.Enabled = false; - this.menuitemRecordsAbsoluteMagnitude.Image = ((System.Drawing.Image)(resources.GetObject("menuitemRecordsAbsoluteMagnitude.Image"))); - this.menuitemRecordsAbsoluteMagnitude.Name = "menuitemRecordsAbsoluteMagnitude"; - this.menuitemRecordsAbsoluteMagnitude.Size = new System.Drawing.Size(249, 22); - this.menuitemRecordsAbsoluteMagnitude.Text = "Absolute magnitude"; - this.menuitemRecordsAbsoluteMagnitude.Click += new System.EventHandler(this.MenuitemRecordsAbsoluteMagnitude_Click); - this.menuitemRecordsAbsoluteMagnitude.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemRecordsAbsoluteMagnitude.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemRecordsAbsoluteMagnitude.AccessibleDescription = "Shows the record of the absolute magnitude"; + menuitemRecordsAbsoluteMagnitude.AccessibleName = "Record of the absolute magnitude"; + menuitemRecordsAbsoluteMagnitude.AccessibleRole = AccessibleRole.MenuItem; + menuitemRecordsAbsoluteMagnitude.Enabled = false; + menuitemRecordsAbsoluteMagnitude.Image = (Image)resources.GetObject("menuitemRecordsAbsoluteMagnitude.Image"); + menuitemRecordsAbsoluteMagnitude.Name = "menuitemRecordsAbsoluteMagnitude"; + menuitemRecordsAbsoluteMagnitude.Size = new Size(249, 22); + menuitemRecordsAbsoluteMagnitude.Text = "Absolute magnitude"; + menuitemRecordsAbsoluteMagnitude.Click += MenuitemRecordsAbsoluteMagnitude_Click; + menuitemRecordsAbsoluteMagnitude.MouseEnter += SetStatusbar_Enter; + menuitemRecordsAbsoluteMagnitude.MouseLeave += ClearStatusbar_Leave; // // menuitemRecordsSlopeParameter // - this.menuitemRecordsSlopeParameter.AccessibleDescription = "Shows the record of the slope parameter"; - this.menuitemRecordsSlopeParameter.AccessibleName = "Record of the slope parameter"; - this.menuitemRecordsSlopeParameter.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemRecordsSlopeParameter.Enabled = false; - this.menuitemRecordsSlopeParameter.Image = ((System.Drawing.Image)(resources.GetObject("menuitemRecordsSlopeParameter.Image"))); - this.menuitemRecordsSlopeParameter.Name = "menuitemRecordsSlopeParameter"; - this.menuitemRecordsSlopeParameter.Size = new System.Drawing.Size(249, 22); - this.menuitemRecordsSlopeParameter.Text = "Slope parameter"; - this.menuitemRecordsSlopeParameter.Click += new System.EventHandler(this.MenuitemRecordsSlopeParameter_Click); - this.menuitemRecordsSlopeParameter.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemRecordsSlopeParameter.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemRecordsSlopeParameter.AccessibleDescription = "Shows the record of the slope parameter"; + menuitemRecordsSlopeParameter.AccessibleName = "Record of the slope parameter"; + menuitemRecordsSlopeParameter.AccessibleRole = AccessibleRole.MenuItem; + menuitemRecordsSlopeParameter.Enabled = false; + menuitemRecordsSlopeParameter.Image = (Image)resources.GetObject("menuitemRecordsSlopeParameter.Image"); + menuitemRecordsSlopeParameter.Name = "menuitemRecordsSlopeParameter"; + menuitemRecordsSlopeParameter.Size = new Size(249, 22); + menuitemRecordsSlopeParameter.Text = "Slope parameter"; + menuitemRecordsSlopeParameter.Click += MenuitemRecordsSlopeParameter_Click; + menuitemRecordsSlopeParameter.MouseEnter += SetStatusbar_Enter; + menuitemRecordsSlopeParameter.MouseLeave += ClearStatusbar_Leave; // // menuitemRecordsNumberOfOppositions // - this.menuitemRecordsNumberOfOppositions.AccessibleDescription = "Shows the record of the number of oppositions"; - this.menuitemRecordsNumberOfOppositions.AccessibleName = "Record of the number of oppositions"; - this.menuitemRecordsNumberOfOppositions.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemRecordsNumberOfOppositions.Enabled = false; - this.menuitemRecordsNumberOfOppositions.Image = ((System.Drawing.Image)(resources.GetObject("menuitemRecordsNumberOfOppositions.Image"))); - this.menuitemRecordsNumberOfOppositions.Name = "menuitemRecordsNumberOfOppositions"; - this.menuitemRecordsNumberOfOppositions.Size = new System.Drawing.Size(249, 22); - this.menuitemRecordsNumberOfOppositions.Text = "Number of oppositions"; - this.menuitemRecordsNumberOfOppositions.Click += new System.EventHandler(this.MenuitemRecordsNumberOfOppositions_Click); - this.menuitemRecordsNumberOfOppositions.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemRecordsNumberOfOppositions.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemRecordsNumberOfOppositions.AccessibleDescription = "Shows the record of the number of oppositions"; + menuitemRecordsNumberOfOppositions.AccessibleName = "Record of the number of oppositions"; + menuitemRecordsNumberOfOppositions.AccessibleRole = AccessibleRole.MenuItem; + menuitemRecordsNumberOfOppositions.Enabled = false; + menuitemRecordsNumberOfOppositions.Image = (Image)resources.GetObject("menuitemRecordsNumberOfOppositions.Image"); + menuitemRecordsNumberOfOppositions.Name = "menuitemRecordsNumberOfOppositions"; + menuitemRecordsNumberOfOppositions.Size = new Size(249, 22); + menuitemRecordsNumberOfOppositions.Text = "Number of oppositions"; + menuitemRecordsNumberOfOppositions.Click += MenuitemRecordsNumberOfOppositions_Click; + menuitemRecordsNumberOfOppositions.MouseEnter += SetStatusbar_Enter; + menuitemRecordsNumberOfOppositions.MouseLeave += ClearStatusbar_Leave; // // menuitemRecordsNumberOfObservations // - this.menuitemRecordsNumberOfObservations.AccessibleDescription = "Shows the record of the number of observations"; - this.menuitemRecordsNumberOfObservations.AccessibleName = "Record of the number of observations"; - this.menuitemRecordsNumberOfObservations.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemRecordsNumberOfObservations.Enabled = false; - this.menuitemRecordsNumberOfObservations.Image = ((System.Drawing.Image)(resources.GetObject("menuitemRecordsNumberOfObservations.Image"))); - this.menuitemRecordsNumberOfObservations.Name = "menuitemRecordsNumberOfObservations"; - this.menuitemRecordsNumberOfObservations.Size = new System.Drawing.Size(249, 22); - this.menuitemRecordsNumberOfObservations.Text = "Number of observations"; - this.menuitemRecordsNumberOfObservations.Click += new System.EventHandler(this.MenuitemRecordsNumberOfObservations_Click); - this.menuitemRecordsNumberOfObservations.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemRecordsNumberOfObservations.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemRecordsNumberOfObservations.AccessibleDescription = "Shows the record of the number of observations"; + menuitemRecordsNumberOfObservations.AccessibleName = "Record of the number of observations"; + menuitemRecordsNumberOfObservations.AccessibleRole = AccessibleRole.MenuItem; + menuitemRecordsNumberOfObservations.Enabled = false; + menuitemRecordsNumberOfObservations.Image = (Image)resources.GetObject("menuitemRecordsNumberOfObservations.Image"); + menuitemRecordsNumberOfObservations.Name = "menuitemRecordsNumberOfObservations"; + menuitemRecordsNumberOfObservations.Size = new Size(249, 22); + menuitemRecordsNumberOfObservations.Text = "Number of observations"; + menuitemRecordsNumberOfObservations.Click += MenuitemRecordsNumberOfObservations_Click; + menuitemRecordsNumberOfObservations.MouseEnter += SetStatusbar_Enter; + menuitemRecordsNumberOfObservations.MouseLeave += ClearStatusbar_Leave; // // menuitemRecordsObservationSpan // - this.menuitemRecordsObservationSpan.AccessibleDescription = "Shows the record of the observation span"; - this.menuitemRecordsObservationSpan.AccessibleName = "Record of the observation span"; - this.menuitemRecordsObservationSpan.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemRecordsObservationSpan.Enabled = false; - this.menuitemRecordsObservationSpan.Image = ((System.Drawing.Image)(resources.GetObject("menuitemRecordsObservationSpan.Image"))); - this.menuitemRecordsObservationSpan.Name = "menuitemRecordsObservationSpan"; - this.menuitemRecordsObservationSpan.Size = new System.Drawing.Size(249, 22); - this.menuitemRecordsObservationSpan.Text = "Observation span"; - this.menuitemRecordsObservationSpan.Click += new System.EventHandler(this.MenuitemRecordsObservationSpan_Click); - this.menuitemRecordsObservationSpan.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemRecordsObservationSpan.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemRecordsObservationSpan.AccessibleDescription = "Shows the record of the observation span"; + menuitemRecordsObservationSpan.AccessibleName = "Record of the observation span"; + menuitemRecordsObservationSpan.AccessibleRole = AccessibleRole.MenuItem; + menuitemRecordsObservationSpan.Enabled = false; + menuitemRecordsObservationSpan.Image = (Image)resources.GetObject("menuitemRecordsObservationSpan.Image"); + menuitemRecordsObservationSpan.Name = "menuitemRecordsObservationSpan"; + menuitemRecordsObservationSpan.Size = new Size(249, 22); + menuitemRecordsObservationSpan.Text = "Observation span"; + menuitemRecordsObservationSpan.Click += MenuitemRecordsObservationSpan_Click; + menuitemRecordsObservationSpan.MouseEnter += SetStatusbar_Enter; + menuitemRecordsObservationSpan.MouseLeave += ClearStatusbar_Leave; // // menuitemRecordsRmsResidual // - this.menuitemRecordsRmsResidual.AccessibleDescription = "Shows the record of the r.m.s. residual"; - this.menuitemRecordsRmsResidual.AccessibleName = "Record of the r.m.s. residual"; - this.menuitemRecordsRmsResidual.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemRecordsRmsResidual.Enabled = false; - this.menuitemRecordsRmsResidual.Image = ((System.Drawing.Image)(resources.GetObject("menuitemRecordsRmsResidual.Image"))); - this.menuitemRecordsRmsResidual.Name = "menuitemRecordsRmsResidual"; - this.menuitemRecordsRmsResidual.Size = new System.Drawing.Size(249, 22); - this.menuitemRecordsRmsResidual.Text = "r.m.s. residual"; - this.menuitemRecordsRmsResidual.Click += new System.EventHandler(this.MenuitemRecordsRmsResidual_Click); - this.menuitemRecordsRmsResidual.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemRecordsRmsResidual.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemRecordsRmsResidual.AccessibleDescription = "Shows the record of the r.m.s. residual"; + menuitemRecordsRmsResidual.AccessibleName = "Record of the r.m.s. residual"; + menuitemRecordsRmsResidual.AccessibleRole = AccessibleRole.MenuItem; + menuitemRecordsRmsResidual.Enabled = false; + menuitemRecordsRmsResidual.Image = (Image)resources.GetObject("menuitemRecordsRmsResidual.Image"); + menuitemRecordsRmsResidual.Name = "menuitemRecordsRmsResidual"; + menuitemRecordsRmsResidual.Size = new Size(249, 22); + menuitemRecordsRmsResidual.Text = "r.m.s. residual"; + menuitemRecordsRmsResidual.Click += MenuitemRecordsRmsResidual_Click; + menuitemRecordsRmsResidual.MouseEnter += SetStatusbar_Enter; + menuitemRecordsRmsResidual.MouseLeave += ClearStatusbar_Leave; // // menuitemRecordsComputername // - this.menuitemRecordsComputername.AccessibleDescription = "Shows the record of the computer name"; - this.menuitemRecordsComputername.AccessibleName = "Record of the computer name"; - this.menuitemRecordsComputername.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemRecordsComputername.Enabled = false; - this.menuitemRecordsComputername.Image = ((System.Drawing.Image)(resources.GetObject("menuitemRecordsComputername.Image"))); - this.menuitemRecordsComputername.Name = "menuitemRecordsComputername"; - this.menuitemRecordsComputername.Size = new System.Drawing.Size(249, 22); - this.menuitemRecordsComputername.Text = "Computer name"; - this.menuitemRecordsComputername.Click += new System.EventHandler(this.MenuitemRecordsComputername_Click); - this.menuitemRecordsComputername.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemRecordsComputername.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemRecordsComputername.AccessibleDescription = "Shows the record of the computer name"; + menuitemRecordsComputername.AccessibleName = "Record of the computer name"; + menuitemRecordsComputername.AccessibleRole = AccessibleRole.MenuItem; + menuitemRecordsComputername.Enabled = false; + menuitemRecordsComputername.Image = (Image)resources.GetObject("menuitemRecordsComputername.Image"); + menuitemRecordsComputername.Name = "menuitemRecordsComputername"; + menuitemRecordsComputername.Size = new Size(249, 22); + menuitemRecordsComputername.Text = "Computer name"; + menuitemRecordsComputername.Click += MenuitemRecordsComputername_Click; + menuitemRecordsComputername.MouseEnter += SetStatusbar_Enter; + menuitemRecordsComputername.MouseLeave += ClearStatusbar_Leave; // // menuitemRecordsDateOfTheLastObservation // - this.menuitemRecordsDateOfTheLastObservation.AccessibleDescription = "Shows the record of the date of the last observation"; - this.menuitemRecordsDateOfTheLastObservation.AccessibleName = "Record of the date of the last observation"; - this.menuitemRecordsDateOfTheLastObservation.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemRecordsDateOfTheLastObservation.Enabled = false; - this.menuitemRecordsDateOfTheLastObservation.Image = ((System.Drawing.Image)(resources.GetObject("menuitemRecordsDateOfTheLastObservation.Image"))); - this.menuitemRecordsDateOfTheLastObservation.Name = "menuitemRecordsDateOfTheLastObservation"; - this.menuitemRecordsDateOfTheLastObservation.Size = new System.Drawing.Size(249, 22); - this.menuitemRecordsDateOfTheLastObservation.Text = "Date of the last observation"; - this.menuitemRecordsDateOfTheLastObservation.Click += new System.EventHandler(this.MenuitemRecordsDateOfTheLastObservation_Click); - this.menuitemRecordsDateOfTheLastObservation.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemRecordsDateOfTheLastObservation.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemRecordsDateOfTheLastObservation.AccessibleDescription = "Shows the record of the date of the last observation"; + menuitemRecordsDateOfTheLastObservation.AccessibleName = "Record of the date of the last observation"; + menuitemRecordsDateOfTheLastObservation.AccessibleRole = AccessibleRole.MenuItem; + menuitemRecordsDateOfTheLastObservation.Enabled = false; + menuitemRecordsDateOfTheLastObservation.Image = (Image)resources.GetObject("menuitemRecordsDateOfTheLastObservation.Image"); + menuitemRecordsDateOfTheLastObservation.Name = "menuitemRecordsDateOfTheLastObservation"; + menuitemRecordsDateOfTheLastObservation.Size = new Size(249, 22); + menuitemRecordsDateOfTheLastObservation.Text = "Date of the last observation"; + menuitemRecordsDateOfTheLastObservation.Click += MenuitemRecordsDateOfTheLastObservation_Click; + menuitemRecordsDateOfTheLastObservation.MouseEnter += SetStatusbar_Enter; + menuitemRecordsDateOfTheLastObservation.MouseLeave += ClearStatusbar_Leave; // - // menuitemRecords + // splitbuttonTopTenRecords // - this.menuitemRecords.AccessibleDescription = "Shows some topn ten records"; - this.menuitemRecords.AccessibleName = "Top ten records"; - this.menuitemRecords.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemRecords.AutoToolTip = true; - this.menuitemRecords.DropDown = this.contextMenuTopTenRecords; - this.menuitemRecords.Enabled = false; - this.menuitemRecords.Image = global::Planetoid_DB.Properties.Resources.silk_text_list_numbers; - this.menuitemRecords.Name = "menuitemRecords"; - this.menuitemRecords.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.R))); - this.menuitemRecords.Size = new System.Drawing.Size(251, 22); - this.menuitemRecords.Text = "Top ten &records"; - this.menuitemRecords.Click += new System.EventHandler(this.MenuitemTopTenRecords_Click); - this.menuitemRecords.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemRecords.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + splitbuttonTopTenRecords.AccessibleDescription = "Shows the top ten records"; + splitbuttonTopTenRecords.AccessibleName = "Top ten records"; + splitbuttonTopTenRecords.AccessibleRole = AccessibleRole.SplitButton; + splitbuttonTopTenRecords.DisplayStyle = ToolStripItemDisplayStyle.Image; + splitbuttonTopTenRecords.DropDown = contextMenuTopTenRecords; + splitbuttonTopTenRecords.Enabled = false; + splitbuttonTopTenRecords.Image = Properties.Resources.silk_text_list_numbers; + splitbuttonTopTenRecords.ImageTransparentColor = Color.Magenta; + splitbuttonTopTenRecords.Name = "splitbuttonTopTenRecords"; + splitbuttonTopTenRecords.Size = new Size(32, 22); + splitbuttonTopTenRecords.Text = "Top ten records"; + splitbuttonTopTenRecords.ButtonClick += SplitbuttonTopTenRecords_ButtonClick; + splitbuttonTopTenRecords.MouseEnter += SetStatusbar_Enter; + splitbuttonTopTenRecords.MouseLeave += ClearStatusbar_Leave; // // contextMenuDistributions // - this.contextMenuDistributions.AccessibleDescription = "Shows the context menu of the distributions"; - this.contextMenuDistributions.AccessibleName = "context menu of the distributions"; - this.contextMenuDistributions.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuPopup; - this.contextMenuDistributions.Font = new System.Drawing.Font("Segoe UI", 9F); - this.contextMenuDistributions.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.menuitemDistributionMeanAnomalyAtTheEpoch, - this.menuitemDistributionArgumentOfPerihelion, - this.menuitemDistributionLongitudeOfTheAscendingNode, - this.menuitemDistributionInclination, - this.menuitemDistributionOrbitalEccentricity, - this.menuitemDistributionMeanDailyMotion, - this.menuitemDistributionSemiMajorAxis, - this.menuitemDistributionAbsoluteMagnitude, - this.menuitemDistributionSlopeParameter, - this.menuitemDistributionNumberOfOppositions, - this.menuitemDistributionNumberOfObservations, - this.menuitemDistributionObservationSpan, - this.menuitemDistributionRmsResidual, - this.menuitemDistributionComputerName}); - this.contextMenuDistributions.Name = "contextMenuDistributions"; - this.contextMenuDistributions.OwnerItem = this.splitbuttonDistribution; - this.contextMenuDistributions.Size = new System.Drawing.Size(250, 312); - this.contextMenuDistributions.Text = "Distributions"; - this.toolTip.SetToolTip(this.contextMenuDistributions, "Distributions"); + contextMenuDistributions.AccessibleDescription = "Shows the context menu of the distributions"; + contextMenuDistributions.AccessibleName = "context menu of the distributions"; + contextMenuDistributions.AccessibleRole = AccessibleRole.MenuPopup; + contextMenuDistributions.Font = new Font("Segoe UI", 9F, FontStyle.Regular, GraphicsUnit.Point); + contextMenuDistributions.Items.AddRange(new ToolStripItem[] { menuitemDistributionMeanAnomalyAtTheEpoch, menuitemDistributionArgumentOfPerihelion, menuitemDistributionLongitudeOfTheAscendingNode, menuitemDistributionInclination, menuitemDistributionOrbitalEccentricity, menuitemDistributionMeanDailyMotion, menuitemDistributionSemiMajorAxis, menuitemDistributionAbsoluteMagnitude, menuitemDistributionSlopeParameter, menuitemDistributionNumberOfOppositions, menuitemDistributionNumberOfObservations, menuitemDistributionObservationSpan, menuitemDistributionRmsResidual, menuitemDistributionComputerName }); + contextMenuDistributions.Name = "contextMenuDistributions"; + contextMenuDistributions.OwnerItem = menuitemDistribution; + contextMenuDistributions.Size = new Size(250, 312); + contextMenuDistributions.Text = "Distributions"; + toolTip.SetToolTip(contextMenuDistributions, "Distributions"); // // menuitemDistributionMeanAnomalyAtTheEpoch // - this.menuitemDistributionMeanAnomalyAtTheEpoch.AccessibleDescription = "Shows the distribution of mean anomaly at the epoch"; - this.menuitemDistributionMeanAnomalyAtTheEpoch.AccessibleName = "Distribution of mean anomaly at the epoch"; - this.menuitemDistributionMeanAnomalyAtTheEpoch.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemDistributionMeanAnomalyAtTheEpoch.AutoToolTip = true; - this.menuitemDistributionMeanAnomalyAtTheEpoch.Enabled = false; - this.menuitemDistributionMeanAnomalyAtTheEpoch.Image = ((System.Drawing.Image)(resources.GetObject("menuitemDistributionMeanAnomalyAtTheEpoch.Image"))); - this.menuitemDistributionMeanAnomalyAtTheEpoch.Name = "menuitemDistributionMeanAnomalyAtTheEpoch"; - this.menuitemDistributionMeanAnomalyAtTheEpoch.Size = new System.Drawing.Size(249, 22); - this.menuitemDistributionMeanAnomalyAtTheEpoch.Text = "Mean anomaly at the epoch"; - this.menuitemDistributionMeanAnomalyAtTheEpoch.Click += new System.EventHandler(this.MenuitemDistributionMeanAnomalyAtTheEpoch_Click); - this.menuitemDistributionMeanAnomalyAtTheEpoch.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemDistributionMeanAnomalyAtTheEpoch.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemDistributionMeanAnomalyAtTheEpoch.AccessibleDescription = "Shows the distribution of mean anomaly at the epoch"; + menuitemDistributionMeanAnomalyAtTheEpoch.AccessibleName = "Distribution of mean anomaly at the epoch"; + menuitemDistributionMeanAnomalyAtTheEpoch.AccessibleRole = AccessibleRole.MenuItem; + menuitemDistributionMeanAnomalyAtTheEpoch.AutoToolTip = true; + menuitemDistributionMeanAnomalyAtTheEpoch.Enabled = false; + menuitemDistributionMeanAnomalyAtTheEpoch.Image = (Image)resources.GetObject("menuitemDistributionMeanAnomalyAtTheEpoch.Image"); + menuitemDistributionMeanAnomalyAtTheEpoch.Name = "menuitemDistributionMeanAnomalyAtTheEpoch"; + menuitemDistributionMeanAnomalyAtTheEpoch.Size = new Size(249, 22); + menuitemDistributionMeanAnomalyAtTheEpoch.Text = "Mean anomaly at the epoch"; + menuitemDistributionMeanAnomalyAtTheEpoch.Click += MenuitemDistributionMeanAnomalyAtTheEpoch_Click; + menuitemDistributionMeanAnomalyAtTheEpoch.MouseEnter += SetStatusbar_Enter; + menuitemDistributionMeanAnomalyAtTheEpoch.MouseLeave += ClearStatusbar_Leave; // // menuitemDistributionArgumentOfPerihelion // - this.menuitemDistributionArgumentOfPerihelion.AccessibleDescription = "Shows the distribution of the argument of perihelion"; - this.menuitemDistributionArgumentOfPerihelion.AccessibleName = "Distribution of the argument of perihelion"; - this.menuitemDistributionArgumentOfPerihelion.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemDistributionArgumentOfPerihelion.AutoToolTip = true; - this.menuitemDistributionArgumentOfPerihelion.Enabled = false; - this.menuitemDistributionArgumentOfPerihelion.Image = ((System.Drawing.Image)(resources.GetObject("menuitemDistributionArgumentOfPerihelion.Image"))); - this.menuitemDistributionArgumentOfPerihelion.Name = "menuitemDistributionArgumentOfPerihelion"; - this.menuitemDistributionArgumentOfPerihelion.Size = new System.Drawing.Size(249, 22); - this.menuitemDistributionArgumentOfPerihelion.Text = "Argument of perihelion"; - this.menuitemDistributionArgumentOfPerihelion.Click += new System.EventHandler(this.MenuitemDistributionArgumentOfPerihelion_Click); - this.menuitemDistributionArgumentOfPerihelion.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemDistributionArgumentOfPerihelion.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemDistributionArgumentOfPerihelion.AccessibleDescription = "Shows the distribution of the argument of perihelion"; + menuitemDistributionArgumentOfPerihelion.AccessibleName = "Distribution of the argument of perihelion"; + menuitemDistributionArgumentOfPerihelion.AccessibleRole = AccessibleRole.MenuItem; + menuitemDistributionArgumentOfPerihelion.AutoToolTip = true; + menuitemDistributionArgumentOfPerihelion.Enabled = false; + menuitemDistributionArgumentOfPerihelion.Image = (Image)resources.GetObject("menuitemDistributionArgumentOfPerihelion.Image"); + menuitemDistributionArgumentOfPerihelion.Name = "menuitemDistributionArgumentOfPerihelion"; + menuitemDistributionArgumentOfPerihelion.Size = new Size(249, 22); + menuitemDistributionArgumentOfPerihelion.Text = "Argument of perihelion"; + menuitemDistributionArgumentOfPerihelion.Click += MenuitemDistributionArgumentOfPerihelion_Click; + menuitemDistributionArgumentOfPerihelion.MouseEnter += SetStatusbar_Enter; + menuitemDistributionArgumentOfPerihelion.MouseLeave += ClearStatusbar_Leave; // // menuitemDistributionLongitudeOfTheAscendingNode // - this.menuitemDistributionLongitudeOfTheAscendingNode.AccessibleDescription = "Shows the distribution of the longitude of the ascending node"; - this.menuitemDistributionLongitudeOfTheAscendingNode.AccessibleName = "Distribution of the longitude of the ascending node"; - this.menuitemDistributionLongitudeOfTheAscendingNode.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemDistributionLongitudeOfTheAscendingNode.AutoToolTip = true; - this.menuitemDistributionLongitudeOfTheAscendingNode.Enabled = false; - this.menuitemDistributionLongitudeOfTheAscendingNode.Image = ((System.Drawing.Image)(resources.GetObject("menuitemDistributionLongitudeOfTheAscendingNode.Image"))); - this.menuitemDistributionLongitudeOfTheAscendingNode.Name = "menuitemDistributionLongitudeOfTheAscendingNode"; - this.menuitemDistributionLongitudeOfTheAscendingNode.Size = new System.Drawing.Size(249, 22); - this.menuitemDistributionLongitudeOfTheAscendingNode.Text = "Longitude of the ascending node"; - this.menuitemDistributionLongitudeOfTheAscendingNode.Click += new System.EventHandler(this.MenuitemDistributionLongitudeOfTheAscendingNode_Click); - this.menuitemDistributionLongitudeOfTheAscendingNode.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemDistributionLongitudeOfTheAscendingNode.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemDistributionLongitudeOfTheAscendingNode.AccessibleDescription = "Shows the distribution of the longitude of the ascending node"; + menuitemDistributionLongitudeOfTheAscendingNode.AccessibleName = "Distribution of the longitude of the ascending node"; + menuitemDistributionLongitudeOfTheAscendingNode.AccessibleRole = AccessibleRole.MenuItem; + menuitemDistributionLongitudeOfTheAscendingNode.AutoToolTip = true; + menuitemDistributionLongitudeOfTheAscendingNode.Enabled = false; + menuitemDistributionLongitudeOfTheAscendingNode.Image = (Image)resources.GetObject("menuitemDistributionLongitudeOfTheAscendingNode.Image"); + menuitemDistributionLongitudeOfTheAscendingNode.Name = "menuitemDistributionLongitudeOfTheAscendingNode"; + menuitemDistributionLongitudeOfTheAscendingNode.Size = new Size(249, 22); + menuitemDistributionLongitudeOfTheAscendingNode.Text = "Longitude of the ascending node"; + menuitemDistributionLongitudeOfTheAscendingNode.Click += MenuitemDistributionLongitudeOfTheAscendingNode_Click; + menuitemDistributionLongitudeOfTheAscendingNode.MouseEnter += SetStatusbar_Enter; + menuitemDistributionLongitudeOfTheAscendingNode.MouseLeave += ClearStatusbar_Leave; // // menuitemDistributionInclination // - this.menuitemDistributionInclination.AccessibleDescription = "Shows the distribution of the inclination to the ecliptic"; - this.menuitemDistributionInclination.AccessibleName = "Distribution of the inclination to the ecliptic"; - this.menuitemDistributionInclination.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemDistributionInclination.AutoToolTip = true; - this.menuitemDistributionInclination.Enabled = false; - this.menuitemDistributionInclination.Image = ((System.Drawing.Image)(resources.GetObject("menuitemDistributionInclination.Image"))); - this.menuitemDistributionInclination.Name = "menuitemDistributionInclination"; - this.menuitemDistributionInclination.Size = new System.Drawing.Size(249, 22); - this.menuitemDistributionInclination.Text = "Inclination to the ecliptic"; - this.menuitemDistributionInclination.Click += new System.EventHandler(this.MenuitemDistributionInclination_Click); - this.menuitemDistributionInclination.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemDistributionInclination.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemDistributionInclination.AccessibleDescription = "Shows the distribution of the inclination to the ecliptic"; + menuitemDistributionInclination.AccessibleName = "Distribution of the inclination to the ecliptic"; + menuitemDistributionInclination.AccessibleRole = AccessibleRole.MenuItem; + menuitemDistributionInclination.AutoToolTip = true; + menuitemDistributionInclination.Enabled = false; + menuitemDistributionInclination.Image = (Image)resources.GetObject("menuitemDistributionInclination.Image"); + menuitemDistributionInclination.Name = "menuitemDistributionInclination"; + menuitemDistributionInclination.Size = new Size(249, 22); + menuitemDistributionInclination.Text = "Inclination to the ecliptic"; + menuitemDistributionInclination.Click += MenuitemDistributionInclination_Click; + menuitemDistributionInclination.MouseEnter += SetStatusbar_Enter; + menuitemDistributionInclination.MouseLeave += ClearStatusbar_Leave; // // menuitemDistributionOrbitalEccentricity // - this.menuitemDistributionOrbitalEccentricity.AccessibleDescription = "Shows the distribution of the orbital eccentricity"; - this.menuitemDistributionOrbitalEccentricity.AccessibleName = "Distribution of the orbital eccentricity"; - this.menuitemDistributionOrbitalEccentricity.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemDistributionOrbitalEccentricity.AutoToolTip = true; - this.menuitemDistributionOrbitalEccentricity.Enabled = false; - this.menuitemDistributionOrbitalEccentricity.Image = ((System.Drawing.Image)(resources.GetObject("menuitemDistributionOrbitalEccentricity.Image"))); - this.menuitemDistributionOrbitalEccentricity.Name = "menuitemDistributionOrbitalEccentricity"; - this.menuitemDistributionOrbitalEccentricity.Size = new System.Drawing.Size(249, 22); - this.menuitemDistributionOrbitalEccentricity.Text = "Orbital eccentricity"; - this.menuitemDistributionOrbitalEccentricity.Click += new System.EventHandler(this.MenuitemDistributionOrbitalEccentricity_Click); - this.menuitemDistributionOrbitalEccentricity.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemDistributionOrbitalEccentricity.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemDistributionOrbitalEccentricity.AccessibleDescription = "Shows the distribution of the orbital eccentricity"; + menuitemDistributionOrbitalEccentricity.AccessibleName = "Distribution of the orbital eccentricity"; + menuitemDistributionOrbitalEccentricity.AccessibleRole = AccessibleRole.MenuItem; + menuitemDistributionOrbitalEccentricity.AutoToolTip = true; + menuitemDistributionOrbitalEccentricity.Enabled = false; + menuitemDistributionOrbitalEccentricity.Image = (Image)resources.GetObject("menuitemDistributionOrbitalEccentricity.Image"); + menuitemDistributionOrbitalEccentricity.Name = "menuitemDistributionOrbitalEccentricity"; + menuitemDistributionOrbitalEccentricity.Size = new Size(249, 22); + menuitemDistributionOrbitalEccentricity.Text = "Orbital eccentricity"; + menuitemDistributionOrbitalEccentricity.Click += MenuitemDistributionOrbitalEccentricity_Click; + menuitemDistributionOrbitalEccentricity.MouseEnter += SetStatusbar_Enter; + menuitemDistributionOrbitalEccentricity.MouseLeave += ClearStatusbar_Leave; // // menuitemDistributionMeanDailyMotion // - this.menuitemDistributionMeanDailyMotion.AccessibleDescription = "Shows the distribution of the mean daily motion"; - this.menuitemDistributionMeanDailyMotion.AccessibleName = "Distribution of the mean daily motion"; - this.menuitemDistributionMeanDailyMotion.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemDistributionMeanDailyMotion.AutoToolTip = true; - this.menuitemDistributionMeanDailyMotion.Enabled = false; - this.menuitemDistributionMeanDailyMotion.Image = ((System.Drawing.Image)(resources.GetObject("menuitemDistributionMeanDailyMotion.Image"))); - this.menuitemDistributionMeanDailyMotion.Name = "menuitemDistributionMeanDailyMotion"; - this.menuitemDistributionMeanDailyMotion.Size = new System.Drawing.Size(249, 22); - this.menuitemDistributionMeanDailyMotion.Text = "Mean daily motion"; - this.menuitemDistributionMeanDailyMotion.Click += new System.EventHandler(this.MenuitemDistributionMeanDailyMotion_Click); - this.menuitemDistributionMeanDailyMotion.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemDistributionMeanDailyMotion.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemDistributionMeanDailyMotion.AccessibleDescription = "Shows the distribution of the mean daily motion"; + menuitemDistributionMeanDailyMotion.AccessibleName = "Distribution of the mean daily motion"; + menuitemDistributionMeanDailyMotion.AccessibleRole = AccessibleRole.MenuItem; + menuitemDistributionMeanDailyMotion.AutoToolTip = true; + menuitemDistributionMeanDailyMotion.Enabled = false; + menuitemDistributionMeanDailyMotion.Image = (Image)resources.GetObject("menuitemDistributionMeanDailyMotion.Image"); + menuitemDistributionMeanDailyMotion.Name = "menuitemDistributionMeanDailyMotion"; + menuitemDistributionMeanDailyMotion.Size = new Size(249, 22); + menuitemDistributionMeanDailyMotion.Text = "Mean daily motion"; + menuitemDistributionMeanDailyMotion.Click += MenuitemDistributionMeanDailyMotion_Click; + menuitemDistributionMeanDailyMotion.MouseEnter += SetStatusbar_Enter; + menuitemDistributionMeanDailyMotion.MouseLeave += ClearStatusbar_Leave; // // menuitemDistributionSemiMajorAxis // - this.menuitemDistributionSemiMajorAxis.AccessibleDescription = "Shows the distribution of the semi-major axis"; - this.menuitemDistributionSemiMajorAxis.AccessibleName = "Distribution of the semi-major axis"; - this.menuitemDistributionSemiMajorAxis.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemDistributionSemiMajorAxis.AutoToolTip = true; - this.menuitemDistributionSemiMajorAxis.Enabled = false; - this.menuitemDistributionSemiMajorAxis.Image = ((System.Drawing.Image)(resources.GetObject("menuitemDistributionSemiMajorAxis.Image"))); - this.menuitemDistributionSemiMajorAxis.Name = "menuitemDistributionSemiMajorAxis"; - this.menuitemDistributionSemiMajorAxis.Size = new System.Drawing.Size(249, 22); - this.menuitemDistributionSemiMajorAxis.Text = "Semi-major axis"; - this.menuitemDistributionSemiMajorAxis.Click += new System.EventHandler(this.MenuitemDistributionSemiMajorAxis_Click); - this.menuitemDistributionSemiMajorAxis.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemDistributionSemiMajorAxis.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemDistributionSemiMajorAxis.AccessibleDescription = "Shows the distribution of the semi-major axis"; + menuitemDistributionSemiMajorAxis.AccessibleName = "Distribution of the semi-major axis"; + menuitemDistributionSemiMajorAxis.AccessibleRole = AccessibleRole.MenuItem; + menuitemDistributionSemiMajorAxis.AutoToolTip = true; + menuitemDistributionSemiMajorAxis.Enabled = false; + menuitemDistributionSemiMajorAxis.Image = (Image)resources.GetObject("menuitemDistributionSemiMajorAxis.Image"); + menuitemDistributionSemiMajorAxis.Name = "menuitemDistributionSemiMajorAxis"; + menuitemDistributionSemiMajorAxis.Size = new Size(249, 22); + menuitemDistributionSemiMajorAxis.Text = "Semi-major axis"; + menuitemDistributionSemiMajorAxis.Click += MenuitemDistributionSemiMajorAxis_Click; + menuitemDistributionSemiMajorAxis.MouseEnter += SetStatusbar_Enter; + menuitemDistributionSemiMajorAxis.MouseLeave += ClearStatusbar_Leave; // // menuitemDistributionAbsoluteMagnitude // - this.menuitemDistributionAbsoluteMagnitude.AccessibleDescription = "Shows the distribution of the absolute magnitude"; - this.menuitemDistributionAbsoluteMagnitude.AccessibleName = "Distribution of the absolute magnitude"; - this.menuitemDistributionAbsoluteMagnitude.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemDistributionAbsoluteMagnitude.AutoToolTip = true; - this.menuitemDistributionAbsoluteMagnitude.Enabled = false; - this.menuitemDistributionAbsoluteMagnitude.Image = ((System.Drawing.Image)(resources.GetObject("menuitemDistributionAbsoluteMagnitude.Image"))); - this.menuitemDistributionAbsoluteMagnitude.Name = "menuitemDistributionAbsoluteMagnitude"; - this.menuitemDistributionAbsoluteMagnitude.Size = new System.Drawing.Size(249, 22); - this.menuitemDistributionAbsoluteMagnitude.Text = "Absolute magnitude"; - this.menuitemDistributionAbsoluteMagnitude.Click += new System.EventHandler(this.MenuitemDistributionAbsoluteMagnitude_Click); - this.menuitemDistributionAbsoluteMagnitude.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemDistributionAbsoluteMagnitude.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemDistributionAbsoluteMagnitude.AccessibleDescription = "Shows the distribution of the absolute magnitude"; + menuitemDistributionAbsoluteMagnitude.AccessibleName = "Distribution of the absolute magnitude"; + menuitemDistributionAbsoluteMagnitude.AccessibleRole = AccessibleRole.MenuItem; + menuitemDistributionAbsoluteMagnitude.AutoToolTip = true; + menuitemDistributionAbsoluteMagnitude.Enabled = false; + menuitemDistributionAbsoluteMagnitude.Image = (Image)resources.GetObject("menuitemDistributionAbsoluteMagnitude.Image"); + menuitemDistributionAbsoluteMagnitude.Name = "menuitemDistributionAbsoluteMagnitude"; + menuitemDistributionAbsoluteMagnitude.Size = new Size(249, 22); + menuitemDistributionAbsoluteMagnitude.Text = "Absolute magnitude"; + menuitemDistributionAbsoluteMagnitude.Click += MenuitemDistributionAbsoluteMagnitude_Click; + menuitemDistributionAbsoluteMagnitude.MouseEnter += SetStatusbar_Enter; + menuitemDistributionAbsoluteMagnitude.MouseLeave += ClearStatusbar_Leave; // // menuitemDistributionSlopeParameter // - this.menuitemDistributionSlopeParameter.AccessibleDescription = "Shows the distribution of the slope parameter"; - this.menuitemDistributionSlopeParameter.AccessibleName = "Distribution of the slope parameter"; - this.menuitemDistributionSlopeParameter.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemDistributionSlopeParameter.AutoToolTip = true; - this.menuitemDistributionSlopeParameter.Enabled = false; - this.menuitemDistributionSlopeParameter.Image = ((System.Drawing.Image)(resources.GetObject("menuitemDistributionSlopeParameter.Image"))); - this.menuitemDistributionSlopeParameter.Name = "menuitemDistributionSlopeParameter"; - this.menuitemDistributionSlopeParameter.Size = new System.Drawing.Size(249, 22); - this.menuitemDistributionSlopeParameter.Text = "Slope parameter"; - this.menuitemDistributionSlopeParameter.Click += new System.EventHandler(this.MenuitemDistributionSlopeParameter_Click); - this.menuitemDistributionSlopeParameter.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemDistributionSlopeParameter.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemDistributionSlopeParameter.AccessibleDescription = "Shows the distribution of the slope parameter"; + menuitemDistributionSlopeParameter.AccessibleName = "Distribution of the slope parameter"; + menuitemDistributionSlopeParameter.AccessibleRole = AccessibleRole.MenuItem; + menuitemDistributionSlopeParameter.AutoToolTip = true; + menuitemDistributionSlopeParameter.Enabled = false; + menuitemDistributionSlopeParameter.Image = (Image)resources.GetObject("menuitemDistributionSlopeParameter.Image"); + menuitemDistributionSlopeParameter.Name = "menuitemDistributionSlopeParameter"; + menuitemDistributionSlopeParameter.Size = new Size(249, 22); + menuitemDistributionSlopeParameter.Text = "Slope parameter"; + menuitemDistributionSlopeParameter.Click += MenuitemDistributionSlopeParameter_Click; + menuitemDistributionSlopeParameter.MouseEnter += SetStatusbar_Enter; + menuitemDistributionSlopeParameter.MouseLeave += ClearStatusbar_Leave; // // menuitemDistributionNumberOfOppositions // - this.menuitemDistributionNumberOfOppositions.AccessibleDescription = "Shows the distribution of the number of oppositions"; - this.menuitemDistributionNumberOfOppositions.AccessibleName = "Distribution of the number of oppositions"; - this.menuitemDistributionNumberOfOppositions.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemDistributionNumberOfOppositions.AutoToolTip = true; - this.menuitemDistributionNumberOfOppositions.Enabled = false; - this.menuitemDistributionNumberOfOppositions.Image = ((System.Drawing.Image)(resources.GetObject("menuitemDistributionNumberOfOppositions.Image"))); - this.menuitemDistributionNumberOfOppositions.Name = "menuitemDistributionNumberOfOppositions"; - this.menuitemDistributionNumberOfOppositions.Size = new System.Drawing.Size(249, 22); - this.menuitemDistributionNumberOfOppositions.Text = "Number of oppositions"; - this.menuitemDistributionNumberOfOppositions.Click += new System.EventHandler(this.MenuitemDistributionNumberOfOppositions_Click); - this.menuitemDistributionNumberOfOppositions.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemDistributionNumberOfOppositions.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemDistributionNumberOfOppositions.AccessibleDescription = "Shows the distribution of the number of oppositions"; + menuitemDistributionNumberOfOppositions.AccessibleName = "Distribution of the number of oppositions"; + menuitemDistributionNumberOfOppositions.AccessibleRole = AccessibleRole.MenuItem; + menuitemDistributionNumberOfOppositions.AutoToolTip = true; + menuitemDistributionNumberOfOppositions.Enabled = false; + menuitemDistributionNumberOfOppositions.Image = (Image)resources.GetObject("menuitemDistributionNumberOfOppositions.Image"); + menuitemDistributionNumberOfOppositions.Name = "menuitemDistributionNumberOfOppositions"; + menuitemDistributionNumberOfOppositions.Size = new Size(249, 22); + menuitemDistributionNumberOfOppositions.Text = "Number of oppositions"; + menuitemDistributionNumberOfOppositions.Click += MenuitemDistributionNumberOfOppositions_Click; + menuitemDistributionNumberOfOppositions.MouseEnter += SetStatusbar_Enter; + menuitemDistributionNumberOfOppositions.MouseLeave += ClearStatusbar_Leave; // // menuitemDistributionNumberOfObservations // - this.menuitemDistributionNumberOfObservations.AccessibleDescription = "Show the distribution of the number of observations"; - this.menuitemDistributionNumberOfObservations.AccessibleName = "Distribution of the number of observations"; - this.menuitemDistributionNumberOfObservations.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemDistributionNumberOfObservations.AutoToolTip = true; - this.menuitemDistributionNumberOfObservations.Enabled = false; - this.menuitemDistributionNumberOfObservations.Image = ((System.Drawing.Image)(resources.GetObject("menuitemDistributionNumberOfObservations.Image"))); - this.menuitemDistributionNumberOfObservations.Name = "menuitemDistributionNumberOfObservations"; - this.menuitemDistributionNumberOfObservations.Size = new System.Drawing.Size(249, 22); - this.menuitemDistributionNumberOfObservations.Text = "Number of observations"; - this.menuitemDistributionNumberOfObservations.Click += new System.EventHandler(this.MenuitemDistributionNumberOfObservations_Click); - this.menuitemDistributionNumberOfObservations.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemDistributionNumberOfObservations.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemDistributionNumberOfObservations.AccessibleDescription = "Show the distribution of the number of observations"; + menuitemDistributionNumberOfObservations.AccessibleName = "Distribution of the number of observations"; + menuitemDistributionNumberOfObservations.AccessibleRole = AccessibleRole.MenuItem; + menuitemDistributionNumberOfObservations.AutoToolTip = true; + menuitemDistributionNumberOfObservations.Enabled = false; + menuitemDistributionNumberOfObservations.Image = (Image)resources.GetObject("menuitemDistributionNumberOfObservations.Image"); + menuitemDistributionNumberOfObservations.Name = "menuitemDistributionNumberOfObservations"; + menuitemDistributionNumberOfObservations.Size = new Size(249, 22); + menuitemDistributionNumberOfObservations.Text = "Number of observations"; + menuitemDistributionNumberOfObservations.Click += MenuitemDistributionNumberOfObservations_Click; + menuitemDistributionNumberOfObservations.MouseEnter += SetStatusbar_Enter; + menuitemDistributionNumberOfObservations.MouseLeave += ClearStatusbar_Leave; // // menuitemDistributionObservationSpan // - this.menuitemDistributionObservationSpan.AccessibleDescription = "Shows the distribution of the observation span"; - this.menuitemDistributionObservationSpan.AccessibleName = "Distribution of the observation span"; - this.menuitemDistributionObservationSpan.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemDistributionObservationSpan.AutoToolTip = true; - this.menuitemDistributionObservationSpan.Enabled = false; - this.menuitemDistributionObservationSpan.Image = ((System.Drawing.Image)(resources.GetObject("menuitemDistributionObservationSpan.Image"))); - this.menuitemDistributionObservationSpan.Name = "menuitemDistributionObservationSpan"; - this.menuitemDistributionObservationSpan.Size = new System.Drawing.Size(249, 22); - this.menuitemDistributionObservationSpan.Text = "Observation span"; - this.menuitemDistributionObservationSpan.Click += new System.EventHandler(this.MenuitemDistributionObservationSpan_Click); - this.menuitemDistributionObservationSpan.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemDistributionObservationSpan.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemDistributionObservationSpan.AccessibleDescription = "Shows the distribution of the observation span"; + menuitemDistributionObservationSpan.AccessibleName = "Distribution of the observation span"; + menuitemDistributionObservationSpan.AccessibleRole = AccessibleRole.MenuItem; + menuitemDistributionObservationSpan.AutoToolTip = true; + menuitemDistributionObservationSpan.Enabled = false; + menuitemDistributionObservationSpan.Image = (Image)resources.GetObject("menuitemDistributionObservationSpan.Image"); + menuitemDistributionObservationSpan.Name = "menuitemDistributionObservationSpan"; + menuitemDistributionObservationSpan.Size = new Size(249, 22); + menuitemDistributionObservationSpan.Text = "Observation span"; + menuitemDistributionObservationSpan.Click += MenuitemDistributionObservationSpan_Click; + menuitemDistributionObservationSpan.MouseEnter += SetStatusbar_Enter; + menuitemDistributionObservationSpan.MouseLeave += ClearStatusbar_Leave; // // menuitemDistributionRmsResidual // - this.menuitemDistributionRmsResidual.AccessibleDescription = "Shows the distribution of the r.m.s. residual"; - this.menuitemDistributionRmsResidual.AccessibleName = "Distribution of the r.m.s. residual"; - this.menuitemDistributionRmsResidual.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemDistributionRmsResidual.AutoToolTip = true; - this.menuitemDistributionRmsResidual.Enabled = false; - this.menuitemDistributionRmsResidual.Image = ((System.Drawing.Image)(resources.GetObject("menuitemDistributionRmsResidual.Image"))); - this.menuitemDistributionRmsResidual.Name = "menuitemDistributionRmsResidual"; - this.menuitemDistributionRmsResidual.Size = new System.Drawing.Size(249, 22); - this.menuitemDistributionRmsResidual.Text = "r.m.s. residual"; - this.menuitemDistributionRmsResidual.Click += new System.EventHandler(this.MenuitemDistributionRmsResidual_Click); - this.menuitemDistributionRmsResidual.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemDistributionRmsResidual.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemDistributionRmsResidual.AccessibleDescription = "Shows the distribution of the r.m.s. residual"; + menuitemDistributionRmsResidual.AccessibleName = "Distribution of the r.m.s. residual"; + menuitemDistributionRmsResidual.AccessibleRole = AccessibleRole.MenuItem; + menuitemDistributionRmsResidual.AutoToolTip = true; + menuitemDistributionRmsResidual.Enabled = false; + menuitemDistributionRmsResidual.Image = (Image)resources.GetObject("menuitemDistributionRmsResidual.Image"); + menuitemDistributionRmsResidual.Name = "menuitemDistributionRmsResidual"; + menuitemDistributionRmsResidual.Size = new Size(249, 22); + menuitemDistributionRmsResidual.Text = "r.m.s. residual"; + menuitemDistributionRmsResidual.Click += MenuitemDistributionRmsResidual_Click; + menuitemDistributionRmsResidual.MouseEnter += SetStatusbar_Enter; + menuitemDistributionRmsResidual.MouseLeave += ClearStatusbar_Leave; // // menuitemDistributionComputerName // - this.menuitemDistributionComputerName.AccessibleDescription = "Shows the distribution of the computer name"; - this.menuitemDistributionComputerName.AccessibleName = "Distribution of the computer name"; - this.menuitemDistributionComputerName.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemDistributionComputerName.AutoToolTip = true; - this.menuitemDistributionComputerName.Enabled = false; - this.menuitemDistributionComputerName.Image = ((System.Drawing.Image)(resources.GetObject("menuitemDistributionComputerName.Image"))); - this.menuitemDistributionComputerName.Name = "menuitemDistributionComputerName"; - this.menuitemDistributionComputerName.Size = new System.Drawing.Size(249, 22); - this.menuitemDistributionComputerName.Text = "Computer name"; - this.menuitemDistributionComputerName.Click += new System.EventHandler(this.MenuitemDistributionComputerName_Click); - this.menuitemDistributionComputerName.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemDistributionComputerName.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemDistributionComputerName.AccessibleDescription = "Shows the distribution of the computer name"; + menuitemDistributionComputerName.AccessibleName = "Distribution of the computer name"; + menuitemDistributionComputerName.AccessibleRole = AccessibleRole.MenuItem; + menuitemDistributionComputerName.AutoToolTip = true; + menuitemDistributionComputerName.Enabled = false; + menuitemDistributionComputerName.Image = (Image)resources.GetObject("menuitemDistributionComputerName.Image"); + menuitemDistributionComputerName.Name = "menuitemDistributionComputerName"; + menuitemDistributionComputerName.Size = new Size(249, 22); + menuitemDistributionComputerName.Text = "Computer name"; + menuitemDistributionComputerName.Click += MenuitemDistributionComputerName_Click; + menuitemDistributionComputerName.MouseEnter += SetStatusbar_Enter; + menuitemDistributionComputerName.MouseLeave += ClearStatusbar_Leave; // - // menuitemDistribution + // splitbuttonDistribution // - this.menuitemDistribution.AccessibleDescription = "Shows some distributions"; - this.menuitemDistribution.AccessibleName = "Distributions"; - this.menuitemDistribution.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemDistribution.AutoToolTip = true; - this.menuitemDistribution.DoubleClickEnabled = true; - this.menuitemDistribution.DropDown = this.contextMenuDistributions; - this.menuitemDistribution.Enabled = false; - this.menuitemDistribution.Image = global::Planetoid_DB.Properties.Resources.silk_chart_bar; - this.menuitemDistribution.Name = "menuitemDistribution"; - this.menuitemDistribution.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.D))); - this.menuitemDistribution.Size = new System.Drawing.Size(251, 22); - this.menuitemDistribution.Text = "&Distributions"; - this.menuitemDistribution.Click += new System.EventHandler(this.MenuitemDistribution_Click); - this.menuitemDistribution.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemDistribution.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + splitbuttonDistribution.AccessibleDescription = "Shows some distributions"; + splitbuttonDistribution.AccessibleName = "Distributions"; + splitbuttonDistribution.AccessibleRole = AccessibleRole.SplitButton; + splitbuttonDistribution.DisplayStyle = ToolStripItemDisplayStyle.Image; + splitbuttonDistribution.DropDown = contextMenuDistributions; + splitbuttonDistribution.Enabled = false; + splitbuttonDistribution.Image = Properties.Resources.silk_chart_bar; + splitbuttonDistribution.ImageTransparentColor = Color.Magenta; + splitbuttonDistribution.Name = "splitbuttonDistribution"; + splitbuttonDistribution.Size = new Size(32, 22); + splitbuttonDistribution.Text = "Distributions"; + splitbuttonDistribution.ButtonClick += SplitbuttonDistribution_ButtonClick; + splitbuttonDistribution.MouseEnter += SetStatusbar_Enter; + splitbuttonDistribution.MouseLeave += ClearStatusbar_Leave; // // contextMenuCopyToClipboardOrbitalElements // - this.contextMenuCopyToClipboardOrbitalElements.AccessibleDescription = "Shows the context menu of the orbital elements to copy to clipboard"; - this.contextMenuCopyToClipboardOrbitalElements.AccessibleName = "context menu of the orbital elements to copy to clipboard"; - this.contextMenuCopyToClipboardOrbitalElements.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuPopup; - this.contextMenuCopyToClipboardOrbitalElements.Font = new System.Drawing.Font("Segoe UI", 9F); - this.contextMenuCopyToClipboardOrbitalElements.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.menuitemCopyToClipboardIndexNumber, - this.menuitemCopyToClipboardReadableDesignation, - this.menuitemCopyToClipboardEpoch, - this.menuitemCopyToClipboardMeanAnomalyAtTheEpoch, - this.menuitemCopyToClipboardArgumentOfPerihelion, - this.menuitemCopyToClipboardLongitudeOfTheAscendingNode, - this.menuitemCopyToClipboardInclinationToTheEcliptic, - this.menuitemCopyToClipboardOrbitalEccentricity, - this.menuitemCopyToClipboardMeanDailyMotion, - this.menuitemCopyToClipboardSemiMajorAxis, - this.menuitemCopyToClipboardAbsoluteMagnitude, - this.menuitemCopyToClipboardSlopeParameter, - this.menuitemCopyToClipboardReference, - this.menuitemCopyToClipboardNumberOfOppositions, - this.menuitemCopyToClipboardNumberOfObservations, - this.menuitemCopyToClipboardObservationSpan, - this.menuitemCopyToClipboardRmsResidual, - this.menuitemCopyToClipboardComputerName, - this.menuitemCopyToClipboardDateOfTheLastObservation, - this.menuitemCopyToClipboardFlags}); - this.contextMenuCopyToClipboardOrbitalElements.Name = "contextMenuCopyToClipboardOrbitalElements"; - this.contextMenuCopyToClipboardOrbitalElements.OwnerItem = this.menuitemCopytoClipboard; - this.contextMenuCopyToClipboardOrbitalElements.Size = new System.Drawing.Size(309, 444); - this.contextMenuCopyToClipboardOrbitalElements.Text = "Copy to clipboard"; - this.toolTip.SetToolTip(this.contextMenuCopyToClipboardOrbitalElements, "Copy to clipboard"); + contextMenuCopyToClipboardOrbitalElements.AccessibleDescription = "Shows the context menu of the orbital elements to copy to clipboard"; + contextMenuCopyToClipboardOrbitalElements.AccessibleName = "context menu of the orbital elements to copy to clipboard"; + contextMenuCopyToClipboardOrbitalElements.AccessibleRole = AccessibleRole.MenuPopup; + contextMenuCopyToClipboardOrbitalElements.Font = new Font("Segoe UI", 9F, FontStyle.Regular, GraphicsUnit.Point); + contextMenuCopyToClipboardOrbitalElements.Items.AddRange(new ToolStripItem[] { menuitemCopyToClipboardIndexNumber, menuitemCopyToClipboardReadableDesignation, menuitemCopyToClipboardEpoch, menuitemCopyToClipboardMeanAnomalyAtTheEpoch, menuitemCopyToClipboardArgumentOfPerihelion, menuitemCopyToClipboardLongitudeOfTheAscendingNode, menuitemCopyToClipboardInclinationToTheEcliptic, menuitemCopyToClipboardOrbitalEccentricity, menuitemCopyToClipboardMeanDailyMotion, menuitemCopyToClipboardSemiMajorAxis, menuitemCopyToClipboardAbsoluteMagnitude, menuitemCopyToClipboardSlopeParameter, menuitemCopyToClipboardReference, menuitemCopyToClipboardNumberOfOppositions, menuitemCopyToClipboardNumberOfObservations, menuitemCopyToClipboardObservationSpan, menuitemCopyToClipboardRmsResidual, menuitemCopyToClipboardComputerName, menuitemCopyToClipboardDateOfTheLastObservation, menuitemCopyToClipboardFlags }); + contextMenuCopyToClipboardOrbitalElements.Name = "contextMenuCopyToClipboardOrbitalElements"; + contextMenuCopyToClipboardOrbitalElements.OwnerItem = splitbuttonCopyToClipboard; + contextMenuCopyToClipboardOrbitalElements.Size = new Size(309, 444); + contextMenuCopyToClipboardOrbitalElements.Text = "Copy to clipboard"; + toolTip.SetToolTip(contextMenuCopyToClipboardOrbitalElements, "Copy to clipboard"); // // menuitemCopyToClipboardIndexNumber // - this.menuitemCopyToClipboardIndexNumber.AccessibleDescription = "Copy to clipboard: Index number"; - this.menuitemCopyToClipboardIndexNumber.AccessibleName = "Copy to clipboard: Index number"; - this.menuitemCopyToClipboardIndexNumber.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemCopyToClipboardIndexNumber.AutoToolTip = true; - this.menuitemCopyToClipboardIndexNumber.Image = ((System.Drawing.Image)(resources.GetObject("menuitemCopyToClipboardIndexNumber.Image"))); - this.menuitemCopyToClipboardIndexNumber.Name = "menuitemCopyToClipboardIndexNumber"; - this.menuitemCopyToClipboardIndexNumber.Size = new System.Drawing.Size(308, 22); - this.menuitemCopyToClipboardIndexNumber.Text = "Index No."; - this.menuitemCopyToClipboardIndexNumber.Click += new System.EventHandler(this.ToolStripMenuItemCopyToClipboardIndexNumber_Click); - this.menuitemCopyToClipboardIndexNumber.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemCopyToClipboardIndexNumber.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemCopyToClipboardIndexNumber.AccessibleDescription = "Copy to clipboard: Index number"; + menuitemCopyToClipboardIndexNumber.AccessibleName = "Copy to clipboard: Index number"; + menuitemCopyToClipboardIndexNumber.AccessibleRole = AccessibleRole.MenuItem; + menuitemCopyToClipboardIndexNumber.AutoToolTip = true; + menuitemCopyToClipboardIndexNumber.Image = (Image)resources.GetObject("menuitemCopyToClipboardIndexNumber.Image"); + menuitemCopyToClipboardIndexNumber.Name = "menuitemCopyToClipboardIndexNumber"; + menuitemCopyToClipboardIndexNumber.Size = new Size(308, 22); + menuitemCopyToClipboardIndexNumber.Text = "Index No."; + menuitemCopyToClipboardIndexNumber.Click += ToolStripMenuItemCopyToClipboardIndexNumber_Click; + menuitemCopyToClipboardIndexNumber.MouseEnter += SetStatusbar_Enter; + menuitemCopyToClipboardIndexNumber.MouseLeave += ClearStatusbar_Leave; // // menuitemCopyToClipboardReadableDesignation // - this.menuitemCopyToClipboardReadableDesignation.AccessibleDescription = "Copy to clipboard: Readable designation"; - this.menuitemCopyToClipboardReadableDesignation.AccessibleName = "Copy to clipboard: Readable designation"; - this.menuitemCopyToClipboardReadableDesignation.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemCopyToClipboardReadableDesignation.AutoToolTip = true; - this.menuitemCopyToClipboardReadableDesignation.Image = ((System.Drawing.Image)(resources.GetObject("menuitemCopyToClipboardReadableDesignation.Image"))); - this.menuitemCopyToClipboardReadableDesignation.Name = "menuitemCopyToClipboardReadableDesignation"; - this.menuitemCopyToClipboardReadableDesignation.Size = new System.Drawing.Size(308, 22); - this.menuitemCopyToClipboardReadableDesignation.Text = "Readable designation"; - this.menuitemCopyToClipboardReadableDesignation.Click += new System.EventHandler(this.ToolStripMenuItemCopyToClipboardReadableDesignation_Click); - this.menuitemCopyToClipboardReadableDesignation.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemCopyToClipboardReadableDesignation.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemCopyToClipboardReadableDesignation.AccessibleDescription = "Copy to clipboard: Readable designation"; + menuitemCopyToClipboardReadableDesignation.AccessibleName = "Copy to clipboard: Readable designation"; + menuitemCopyToClipboardReadableDesignation.AccessibleRole = AccessibleRole.MenuItem; + menuitemCopyToClipboardReadableDesignation.AutoToolTip = true; + menuitemCopyToClipboardReadableDesignation.Image = (Image)resources.GetObject("menuitemCopyToClipboardReadableDesignation.Image"); + menuitemCopyToClipboardReadableDesignation.Name = "menuitemCopyToClipboardReadableDesignation"; + menuitemCopyToClipboardReadableDesignation.Size = new Size(308, 22); + menuitemCopyToClipboardReadableDesignation.Text = "Readable designation"; + menuitemCopyToClipboardReadableDesignation.Click += ToolStripMenuItemCopyToClipboardReadableDesignation_Click; + menuitemCopyToClipboardReadableDesignation.MouseEnter += SetStatusbar_Enter; + menuitemCopyToClipboardReadableDesignation.MouseLeave += ClearStatusbar_Leave; // // menuitemCopyToClipboardEpoch // - this.menuitemCopyToClipboardEpoch.AccessibleDescription = "Copy to clipboard: Epoch"; - this.menuitemCopyToClipboardEpoch.AccessibleName = "Copy to clipboard: Epoch"; - this.menuitemCopyToClipboardEpoch.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemCopyToClipboardEpoch.AutoToolTip = true; - this.menuitemCopyToClipboardEpoch.Image = ((System.Drawing.Image)(resources.GetObject("menuitemCopyToClipboardEpoch.Image"))); - this.menuitemCopyToClipboardEpoch.Name = "menuitemCopyToClipboardEpoch"; - this.menuitemCopyToClipboardEpoch.Size = new System.Drawing.Size(308, 22); - this.menuitemCopyToClipboardEpoch.Text = "Epoch (in packed form, .0 TT)"; - this.menuitemCopyToClipboardEpoch.Click += new System.EventHandler(this.ToolStripMenuItemCopyToClipboardEpoch_Click); - this.menuitemCopyToClipboardEpoch.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemCopyToClipboardEpoch.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemCopyToClipboardEpoch.AccessibleDescription = "Copy to clipboard: Epoch"; + menuitemCopyToClipboardEpoch.AccessibleName = "Copy to clipboard: Epoch"; + menuitemCopyToClipboardEpoch.AccessibleRole = AccessibleRole.MenuItem; + menuitemCopyToClipboardEpoch.AutoToolTip = true; + menuitemCopyToClipboardEpoch.Image = (Image)resources.GetObject("menuitemCopyToClipboardEpoch.Image"); + menuitemCopyToClipboardEpoch.Name = "menuitemCopyToClipboardEpoch"; + menuitemCopyToClipboardEpoch.Size = new Size(308, 22); + menuitemCopyToClipboardEpoch.Text = "Epoch (in packed form, .0 TT)"; + menuitemCopyToClipboardEpoch.Click += ToolStripMenuItemCopyToClipboardEpoch_Click; + menuitemCopyToClipboardEpoch.MouseEnter += SetStatusbar_Enter; + menuitemCopyToClipboardEpoch.MouseLeave += ClearStatusbar_Leave; // // menuitemCopyToClipboardMeanAnomalyAtTheEpoch // - this.menuitemCopyToClipboardMeanAnomalyAtTheEpoch.AccessibleDescription = "Copy to clipboard: Mean anomaly at the epoch"; - this.menuitemCopyToClipboardMeanAnomalyAtTheEpoch.AccessibleName = "Copy to clipboard: Mean anomaly at the epoch"; - this.menuitemCopyToClipboardMeanAnomalyAtTheEpoch.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemCopyToClipboardMeanAnomalyAtTheEpoch.AutoToolTip = true; - this.menuitemCopyToClipboardMeanAnomalyAtTheEpoch.Image = ((System.Drawing.Image)(resources.GetObject("menuitemCopyToClipboardMeanAnomalyAtTheEpoch.Image"))); - this.menuitemCopyToClipboardMeanAnomalyAtTheEpoch.Name = "menuitemCopyToClipboardMeanAnomalyAtTheEpoch"; - this.menuitemCopyToClipboardMeanAnomalyAtTheEpoch.Size = new System.Drawing.Size(308, 22); - this.menuitemCopyToClipboardMeanAnomalyAtTheEpoch.Text = "Mean anomaly at the epoch (°)"; - this.menuitemCopyToClipboardMeanAnomalyAtTheEpoch.Click += new System.EventHandler(this.ToolStripMenuItemCopyToClipboardMeanAnomaly_Click); - this.menuitemCopyToClipboardMeanAnomalyAtTheEpoch.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemCopyToClipboardMeanAnomalyAtTheEpoch.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemCopyToClipboardMeanAnomalyAtTheEpoch.AccessibleDescription = "Copy to clipboard: Mean anomaly at the epoch"; + menuitemCopyToClipboardMeanAnomalyAtTheEpoch.AccessibleName = "Copy to clipboard: Mean anomaly at the epoch"; + menuitemCopyToClipboardMeanAnomalyAtTheEpoch.AccessibleRole = AccessibleRole.MenuItem; + menuitemCopyToClipboardMeanAnomalyAtTheEpoch.AutoToolTip = true; + menuitemCopyToClipboardMeanAnomalyAtTheEpoch.Image = (Image)resources.GetObject("menuitemCopyToClipboardMeanAnomalyAtTheEpoch.Image"); + menuitemCopyToClipboardMeanAnomalyAtTheEpoch.Name = "menuitemCopyToClipboardMeanAnomalyAtTheEpoch"; + menuitemCopyToClipboardMeanAnomalyAtTheEpoch.Size = new Size(308, 22); + menuitemCopyToClipboardMeanAnomalyAtTheEpoch.Text = "Mean anomaly at the epoch (°)"; + menuitemCopyToClipboardMeanAnomalyAtTheEpoch.Click += ToolStripMenuItemCopyToClipboardMeanAnomaly_Click; + menuitemCopyToClipboardMeanAnomalyAtTheEpoch.MouseEnter += SetStatusbar_Enter; + menuitemCopyToClipboardMeanAnomalyAtTheEpoch.MouseLeave += ClearStatusbar_Leave; // // menuitemCopyToClipboardArgumentOfPerihelion // - this.menuitemCopyToClipboardArgumentOfPerihelion.AccessibleDescription = "Copy to clipboard: Argument of perihelion"; - this.menuitemCopyToClipboardArgumentOfPerihelion.AccessibleName = "Copy to clipboard: Argument of perihelion"; - this.menuitemCopyToClipboardArgumentOfPerihelion.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemCopyToClipboardArgumentOfPerihelion.AutoToolTip = true; - this.menuitemCopyToClipboardArgumentOfPerihelion.Image = ((System.Drawing.Image)(resources.GetObject("menuitemCopyToClipboardArgumentOfPerihelion.Image"))); - this.menuitemCopyToClipboardArgumentOfPerihelion.Name = "menuitemCopyToClipboardArgumentOfPerihelion"; - this.menuitemCopyToClipboardArgumentOfPerihelion.Size = new System.Drawing.Size(308, 22); - this.menuitemCopyToClipboardArgumentOfPerihelion.Text = "Argument of perihelion, J2000.0 (°)"; - this.menuitemCopyToClipboardArgumentOfPerihelion.Click += new System.EventHandler(this.ToolStripMenuItemCopyToClipboardArgumentOfPerihelion_Click); - this.menuitemCopyToClipboardArgumentOfPerihelion.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemCopyToClipboardArgumentOfPerihelion.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemCopyToClipboardArgumentOfPerihelion.AccessibleDescription = "Copy to clipboard: Argument of perihelion"; + menuitemCopyToClipboardArgumentOfPerihelion.AccessibleName = "Copy to clipboard: Argument of perihelion"; + menuitemCopyToClipboardArgumentOfPerihelion.AccessibleRole = AccessibleRole.MenuItem; + menuitemCopyToClipboardArgumentOfPerihelion.AutoToolTip = true; + menuitemCopyToClipboardArgumentOfPerihelion.Image = (Image)resources.GetObject("menuitemCopyToClipboardArgumentOfPerihelion.Image"); + menuitemCopyToClipboardArgumentOfPerihelion.Name = "menuitemCopyToClipboardArgumentOfPerihelion"; + menuitemCopyToClipboardArgumentOfPerihelion.Size = new Size(308, 22); + menuitemCopyToClipboardArgumentOfPerihelion.Text = "Argument of perihelion, J2000.0 (°)"; + menuitemCopyToClipboardArgumentOfPerihelion.Click += ToolStripMenuItemCopyToClipboardArgumentOfPerihelion_Click; + menuitemCopyToClipboardArgumentOfPerihelion.MouseEnter += SetStatusbar_Enter; + menuitemCopyToClipboardArgumentOfPerihelion.MouseLeave += ClearStatusbar_Leave; // // menuitemCopyToClipboardLongitudeOfTheAscendingNode // - this.menuitemCopyToClipboardLongitudeOfTheAscendingNode.AccessibleDescription = "Copy to clipboard: Longitude of the ascending node"; - this.menuitemCopyToClipboardLongitudeOfTheAscendingNode.AccessibleName = "Copy to clipboard: Longitude of the ascending node"; - this.menuitemCopyToClipboardLongitudeOfTheAscendingNode.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemCopyToClipboardLongitudeOfTheAscendingNode.AutoToolTip = true; - this.menuitemCopyToClipboardLongitudeOfTheAscendingNode.Image = ((System.Drawing.Image)(resources.GetObject("menuitemCopyToClipboardLongitudeOfTheAscendingNode.Image"))); - this.menuitemCopyToClipboardLongitudeOfTheAscendingNode.Name = "menuitemCopyToClipboardLongitudeOfTheAscendingNode"; - this.menuitemCopyToClipboardLongitudeOfTheAscendingNode.Size = new System.Drawing.Size(308, 22); - this.menuitemCopyToClipboardLongitudeOfTheAscendingNode.Text = "Longitude of the ascending node, J2000.0 (°)"; - this.menuitemCopyToClipboardLongitudeOfTheAscendingNode.Click += new System.EventHandler(this.ToolStripMenuItemCopyToClipboardLongitudeOfTheAscendingNode_Click); - this.menuitemCopyToClipboardLongitudeOfTheAscendingNode.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemCopyToClipboardLongitudeOfTheAscendingNode.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemCopyToClipboardLongitudeOfTheAscendingNode.AccessibleDescription = "Copy to clipboard: Longitude of the ascending node"; + menuitemCopyToClipboardLongitudeOfTheAscendingNode.AccessibleName = "Copy to clipboard: Longitude of the ascending node"; + menuitemCopyToClipboardLongitudeOfTheAscendingNode.AccessibleRole = AccessibleRole.MenuItem; + menuitemCopyToClipboardLongitudeOfTheAscendingNode.AutoToolTip = true; + menuitemCopyToClipboardLongitudeOfTheAscendingNode.Image = (Image)resources.GetObject("menuitemCopyToClipboardLongitudeOfTheAscendingNode.Image"); + menuitemCopyToClipboardLongitudeOfTheAscendingNode.Name = "menuitemCopyToClipboardLongitudeOfTheAscendingNode"; + menuitemCopyToClipboardLongitudeOfTheAscendingNode.Size = new Size(308, 22); + menuitemCopyToClipboardLongitudeOfTheAscendingNode.Text = "Longitude of the ascending node, J2000.0 (°)"; + menuitemCopyToClipboardLongitudeOfTheAscendingNode.Click += ToolStripMenuItemCopyToClipboardLongitudeOfTheAscendingNode_Click; + menuitemCopyToClipboardLongitudeOfTheAscendingNode.MouseEnter += SetStatusbar_Enter; + menuitemCopyToClipboardLongitudeOfTheAscendingNode.MouseLeave += ClearStatusbar_Leave; // // menuitemCopyToClipboardInclinationToTheEcliptic // - this.menuitemCopyToClipboardInclinationToTheEcliptic.AccessibleDescription = "Copy to clipboard: Inclination"; - this.menuitemCopyToClipboardInclinationToTheEcliptic.AccessibleName = "Copy to clipboard: Inclination"; - this.menuitemCopyToClipboardInclinationToTheEcliptic.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemCopyToClipboardInclinationToTheEcliptic.AutoToolTip = true; - this.menuitemCopyToClipboardInclinationToTheEcliptic.Image = ((System.Drawing.Image)(resources.GetObject("menuitemCopyToClipboardInclinationToTheEcliptic.Image"))); - this.menuitemCopyToClipboardInclinationToTheEcliptic.Name = "menuitemCopyToClipboardInclinationToTheEcliptic"; - this.menuitemCopyToClipboardInclinationToTheEcliptic.Size = new System.Drawing.Size(308, 22); - this.menuitemCopyToClipboardInclinationToTheEcliptic.Text = "Inclination to the ecliptic, J2000.0 (°)"; - this.menuitemCopyToClipboardInclinationToTheEcliptic.Click += new System.EventHandler(this.ToolStripMenuItemCopyToClipboardInclinationToTheEcliptic_Click); - this.menuitemCopyToClipboardInclinationToTheEcliptic.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemCopyToClipboardInclinationToTheEcliptic.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemCopyToClipboardInclinationToTheEcliptic.AccessibleDescription = "Copy to clipboard: Inclination"; + menuitemCopyToClipboardInclinationToTheEcliptic.AccessibleName = "Copy to clipboard: Inclination"; + menuitemCopyToClipboardInclinationToTheEcliptic.AccessibleRole = AccessibleRole.MenuItem; + menuitemCopyToClipboardInclinationToTheEcliptic.AutoToolTip = true; + menuitemCopyToClipboardInclinationToTheEcliptic.Image = (Image)resources.GetObject("menuitemCopyToClipboardInclinationToTheEcliptic.Image"); + menuitemCopyToClipboardInclinationToTheEcliptic.Name = "menuitemCopyToClipboardInclinationToTheEcliptic"; + menuitemCopyToClipboardInclinationToTheEcliptic.Size = new Size(308, 22); + menuitemCopyToClipboardInclinationToTheEcliptic.Text = "Inclination to the ecliptic, J2000.0 (°)"; + menuitemCopyToClipboardInclinationToTheEcliptic.Click += ToolStripMenuItemCopyToClipboardInclinationToTheEcliptic_Click; + menuitemCopyToClipboardInclinationToTheEcliptic.MouseEnter += SetStatusbar_Enter; + menuitemCopyToClipboardInclinationToTheEcliptic.MouseLeave += ClearStatusbar_Leave; // // menuitemCopyToClipboardOrbitalEccentricity // - this.menuitemCopyToClipboardOrbitalEccentricity.AccessibleDescription = "Copy to clipboard: Orbital eccentricity"; - this.menuitemCopyToClipboardOrbitalEccentricity.AccessibleName = "Copy to clipboard: Orbital eccentricity"; - this.menuitemCopyToClipboardOrbitalEccentricity.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemCopyToClipboardOrbitalEccentricity.AutoToolTip = true; - this.menuitemCopyToClipboardOrbitalEccentricity.Image = ((System.Drawing.Image)(resources.GetObject("menuitemCopyToClipboardOrbitalEccentricity.Image"))); - this.menuitemCopyToClipboardOrbitalEccentricity.Name = "menuitemCopyToClipboardOrbitalEccentricity"; - this.menuitemCopyToClipboardOrbitalEccentricity.Size = new System.Drawing.Size(308, 22); - this.menuitemCopyToClipboardOrbitalEccentricity.Text = "Orbital eccentricity"; - this.menuitemCopyToClipboardOrbitalEccentricity.Click += new System.EventHandler(this.ToolStripMenuItemCopyToClipboardOrbitalEccentricity_Click); - this.menuitemCopyToClipboardOrbitalEccentricity.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemCopyToClipboardOrbitalEccentricity.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemCopyToClipboardOrbitalEccentricity.AccessibleDescription = "Copy to clipboard: Orbital eccentricity"; + menuitemCopyToClipboardOrbitalEccentricity.AccessibleName = "Copy to clipboard: Orbital eccentricity"; + menuitemCopyToClipboardOrbitalEccentricity.AccessibleRole = AccessibleRole.MenuItem; + menuitemCopyToClipboardOrbitalEccentricity.AutoToolTip = true; + menuitemCopyToClipboardOrbitalEccentricity.Image = (Image)resources.GetObject("menuitemCopyToClipboardOrbitalEccentricity.Image"); + menuitemCopyToClipboardOrbitalEccentricity.Name = "menuitemCopyToClipboardOrbitalEccentricity"; + menuitemCopyToClipboardOrbitalEccentricity.Size = new Size(308, 22); + menuitemCopyToClipboardOrbitalEccentricity.Text = "Orbital eccentricity"; + menuitemCopyToClipboardOrbitalEccentricity.Click += ToolStripMenuItemCopyToClipboardOrbitalEccentricity_Click; + menuitemCopyToClipboardOrbitalEccentricity.MouseEnter += SetStatusbar_Enter; + menuitemCopyToClipboardOrbitalEccentricity.MouseLeave += ClearStatusbar_Leave; // // menuitemCopyToClipboardMeanDailyMotion // - this.menuitemCopyToClipboardMeanDailyMotion.AccessibleDescription = "Copy to clipboard: Mean daily motion"; - this.menuitemCopyToClipboardMeanDailyMotion.AccessibleName = "Copy to clipboard: Mean daily motion"; - this.menuitemCopyToClipboardMeanDailyMotion.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemCopyToClipboardMeanDailyMotion.AutoToolTip = true; - this.menuitemCopyToClipboardMeanDailyMotion.Image = ((System.Drawing.Image)(resources.GetObject("menuitemCopyToClipboardMeanDailyMotion.Image"))); - this.menuitemCopyToClipboardMeanDailyMotion.Name = "menuitemCopyToClipboardMeanDailyMotion"; - this.menuitemCopyToClipboardMeanDailyMotion.Size = new System.Drawing.Size(308, 22); - this.menuitemCopyToClipboardMeanDailyMotion.Text = "Mean daily motion (°/day)"; - this.menuitemCopyToClipboardMeanDailyMotion.Click += new System.EventHandler(this.ToolStripMenuItemCopyToClipboardMeanDailyMotion_Click); - this.menuitemCopyToClipboardMeanDailyMotion.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemCopyToClipboardMeanDailyMotion.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemCopyToClipboardMeanDailyMotion.AccessibleDescription = "Copy to clipboard: Mean daily motion"; + menuitemCopyToClipboardMeanDailyMotion.AccessibleName = "Copy to clipboard: Mean daily motion"; + menuitemCopyToClipboardMeanDailyMotion.AccessibleRole = AccessibleRole.MenuItem; + menuitemCopyToClipboardMeanDailyMotion.AutoToolTip = true; + menuitemCopyToClipboardMeanDailyMotion.Image = (Image)resources.GetObject("menuitemCopyToClipboardMeanDailyMotion.Image"); + menuitemCopyToClipboardMeanDailyMotion.Name = "menuitemCopyToClipboardMeanDailyMotion"; + menuitemCopyToClipboardMeanDailyMotion.Size = new Size(308, 22); + menuitemCopyToClipboardMeanDailyMotion.Text = "Mean daily motion (°/day)"; + menuitemCopyToClipboardMeanDailyMotion.Click += ToolStripMenuItemCopyToClipboardMeanDailyMotion_Click; + menuitemCopyToClipboardMeanDailyMotion.MouseEnter += SetStatusbar_Enter; + menuitemCopyToClipboardMeanDailyMotion.MouseLeave += ClearStatusbar_Leave; // // menuitemCopyToClipboardSemiMajorAxis // - this.menuitemCopyToClipboardSemiMajorAxis.AccessibleDescription = "Copy to clipboard: Semi-major axis"; - this.menuitemCopyToClipboardSemiMajorAxis.AccessibleName = "Copy to clipboard: Semi-major axis"; - this.menuitemCopyToClipboardSemiMajorAxis.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemCopyToClipboardSemiMajorAxis.AutoToolTip = true; - this.menuitemCopyToClipboardSemiMajorAxis.Image = ((System.Drawing.Image)(resources.GetObject("menuitemCopyToClipboardSemiMajorAxis.Image"))); - this.menuitemCopyToClipboardSemiMajorAxis.Name = "menuitemCopyToClipboardSemiMajorAxis"; - this.menuitemCopyToClipboardSemiMajorAxis.Size = new System.Drawing.Size(308, 22); - this.menuitemCopyToClipboardSemiMajorAxis.Text = "Semi-major axis (AU)"; - this.menuitemCopyToClipboardSemiMajorAxis.Click += new System.EventHandler(this.ToolStripMenuItemCopyToClipboardSemiMajorAxis_Click); - this.menuitemCopyToClipboardSemiMajorAxis.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemCopyToClipboardSemiMajorAxis.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemCopyToClipboardSemiMajorAxis.AccessibleDescription = "Copy to clipboard: Semi-major axis"; + menuitemCopyToClipboardSemiMajorAxis.AccessibleName = "Copy to clipboard: Semi-major axis"; + menuitemCopyToClipboardSemiMajorAxis.AccessibleRole = AccessibleRole.MenuItem; + menuitemCopyToClipboardSemiMajorAxis.AutoToolTip = true; + menuitemCopyToClipboardSemiMajorAxis.Image = (Image)resources.GetObject("menuitemCopyToClipboardSemiMajorAxis.Image"); + menuitemCopyToClipboardSemiMajorAxis.Name = "menuitemCopyToClipboardSemiMajorAxis"; + menuitemCopyToClipboardSemiMajorAxis.Size = new Size(308, 22); + menuitemCopyToClipboardSemiMajorAxis.Text = "Semi-major axis (AU)"; + menuitemCopyToClipboardSemiMajorAxis.Click += ToolStripMenuItemCopyToClipboardSemiMajorAxis_Click; + menuitemCopyToClipboardSemiMajorAxis.MouseEnter += SetStatusbar_Enter; + menuitemCopyToClipboardSemiMajorAxis.MouseLeave += ClearStatusbar_Leave; // // menuitemCopyToClipboardAbsoluteMagnitude // - this.menuitemCopyToClipboardAbsoluteMagnitude.AccessibleDescription = "Copy to clipboard: Absolute magnitude"; - this.menuitemCopyToClipboardAbsoluteMagnitude.AccessibleName = "Copy to clipboard: Absolute magnitude"; - this.menuitemCopyToClipboardAbsoluteMagnitude.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemCopyToClipboardAbsoluteMagnitude.AutoToolTip = true; - this.menuitemCopyToClipboardAbsoluteMagnitude.Image = ((System.Drawing.Image)(resources.GetObject("menuitemCopyToClipboardAbsoluteMagnitude.Image"))); - this.menuitemCopyToClipboardAbsoluteMagnitude.Name = "menuitemCopyToClipboardAbsoluteMagnitude"; - this.menuitemCopyToClipboardAbsoluteMagnitude.Size = new System.Drawing.Size(308, 22); - this.menuitemCopyToClipboardAbsoluteMagnitude.Text = "Absolute magnitude, H"; - this.menuitemCopyToClipboardAbsoluteMagnitude.Click += new System.EventHandler(this.ToolStripMenuItemCopyToClipboardAbsoluteMagnitude_Click); - this.menuitemCopyToClipboardAbsoluteMagnitude.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemCopyToClipboardAbsoluteMagnitude.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemCopyToClipboardAbsoluteMagnitude.AccessibleDescription = "Copy to clipboard: Absolute magnitude"; + menuitemCopyToClipboardAbsoluteMagnitude.AccessibleName = "Copy to clipboard: Absolute magnitude"; + menuitemCopyToClipboardAbsoluteMagnitude.AccessibleRole = AccessibleRole.MenuItem; + menuitemCopyToClipboardAbsoluteMagnitude.AutoToolTip = true; + menuitemCopyToClipboardAbsoluteMagnitude.Image = (Image)resources.GetObject("menuitemCopyToClipboardAbsoluteMagnitude.Image"); + menuitemCopyToClipboardAbsoluteMagnitude.Name = "menuitemCopyToClipboardAbsoluteMagnitude"; + menuitemCopyToClipboardAbsoluteMagnitude.Size = new Size(308, 22); + menuitemCopyToClipboardAbsoluteMagnitude.Text = "Absolute magnitude, H"; + menuitemCopyToClipboardAbsoluteMagnitude.Click += ToolStripMenuItemCopyToClipboardAbsoluteMagnitude_Click; + menuitemCopyToClipboardAbsoluteMagnitude.MouseEnter += SetStatusbar_Enter; + menuitemCopyToClipboardAbsoluteMagnitude.MouseLeave += ClearStatusbar_Leave; // // menuitemCopyToClipboardSlopeParameter // - this.menuitemCopyToClipboardSlopeParameter.AccessibleDescription = "Copy to clipboard: Slope parameter"; - this.menuitemCopyToClipboardSlopeParameter.AccessibleName = "Copy to clipboard: Slope parameter"; - this.menuitemCopyToClipboardSlopeParameter.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemCopyToClipboardSlopeParameter.AutoToolTip = true; - this.menuitemCopyToClipboardSlopeParameter.Image = ((System.Drawing.Image)(resources.GetObject("menuitemCopyToClipboardSlopeParameter.Image"))); - this.menuitemCopyToClipboardSlopeParameter.Name = "menuitemCopyToClipboardSlopeParameter"; - this.menuitemCopyToClipboardSlopeParameter.Size = new System.Drawing.Size(308, 22); - this.menuitemCopyToClipboardSlopeParameter.Text = "Slope parameter, G"; - this.menuitemCopyToClipboardSlopeParameter.Click += new System.EventHandler(this.ToolStripMenuItemCopyToClipboardSlopeParameter_Click); - this.menuitemCopyToClipboardSlopeParameter.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemCopyToClipboardSlopeParameter.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemCopyToClipboardSlopeParameter.AccessibleDescription = "Copy to clipboard: Slope parameter"; + menuitemCopyToClipboardSlopeParameter.AccessibleName = "Copy to clipboard: Slope parameter"; + menuitemCopyToClipboardSlopeParameter.AccessibleRole = AccessibleRole.MenuItem; + menuitemCopyToClipboardSlopeParameter.AutoToolTip = true; + menuitemCopyToClipboardSlopeParameter.Image = (Image)resources.GetObject("menuitemCopyToClipboardSlopeParameter.Image"); + menuitemCopyToClipboardSlopeParameter.Name = "menuitemCopyToClipboardSlopeParameter"; + menuitemCopyToClipboardSlopeParameter.Size = new Size(308, 22); + menuitemCopyToClipboardSlopeParameter.Text = "Slope parameter, G"; + menuitemCopyToClipboardSlopeParameter.Click += ToolStripMenuItemCopyToClipboardSlopeParameter_Click; + menuitemCopyToClipboardSlopeParameter.MouseEnter += SetStatusbar_Enter; + menuitemCopyToClipboardSlopeParameter.MouseLeave += ClearStatusbar_Leave; // // menuitemCopyToClipboardReference // - this.menuitemCopyToClipboardReference.AccessibleDescription = "Copy to clipboard: Reference"; - this.menuitemCopyToClipboardReference.AccessibleName = "Copy to clipboard: Reference"; - this.menuitemCopyToClipboardReference.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemCopyToClipboardReference.AutoToolTip = true; - this.menuitemCopyToClipboardReference.Image = ((System.Drawing.Image)(resources.GetObject("menuitemCopyToClipboardReference.Image"))); - this.menuitemCopyToClipboardReference.Name = "menuitemCopyToClipboardReference"; - this.menuitemCopyToClipboardReference.Size = new System.Drawing.Size(308, 22); - this.menuitemCopyToClipboardReference.Text = "Reference"; - this.menuitemCopyToClipboardReference.Click += new System.EventHandler(this.ToolStripMenuItemCopyToClipboardReference_Click); - this.menuitemCopyToClipboardReference.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemCopyToClipboardReference.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemCopyToClipboardReference.AccessibleDescription = "Copy to clipboard: Reference"; + menuitemCopyToClipboardReference.AccessibleName = "Copy to clipboard: Reference"; + menuitemCopyToClipboardReference.AccessibleRole = AccessibleRole.MenuItem; + menuitemCopyToClipboardReference.AutoToolTip = true; + menuitemCopyToClipboardReference.Image = (Image)resources.GetObject("menuitemCopyToClipboardReference.Image"); + menuitemCopyToClipboardReference.Name = "menuitemCopyToClipboardReference"; + menuitemCopyToClipboardReference.Size = new Size(308, 22); + menuitemCopyToClipboardReference.Text = "Reference"; + menuitemCopyToClipboardReference.Click += ToolStripMenuItemCopyToClipboardReference_Click; + menuitemCopyToClipboardReference.MouseEnter += SetStatusbar_Enter; + menuitemCopyToClipboardReference.MouseLeave += ClearStatusbar_Leave; // // menuitemCopyToClipboardNumberOfOppositions // - this.menuitemCopyToClipboardNumberOfOppositions.AccessibleDescription = "Copy to clipboard: Number of oppositions"; - this.menuitemCopyToClipboardNumberOfOppositions.AccessibleName = "Copy to clipboard: Number of oppositions "; - this.menuitemCopyToClipboardNumberOfOppositions.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemCopyToClipboardNumberOfOppositions.AutoToolTip = true; - this.menuitemCopyToClipboardNumberOfOppositions.Image = ((System.Drawing.Image)(resources.GetObject("menuitemCopyToClipboardNumberOfOppositions.Image"))); - this.menuitemCopyToClipboardNumberOfOppositions.Name = "menuitemCopyToClipboardNumberOfOppositions"; - this.menuitemCopyToClipboardNumberOfOppositions.Size = new System.Drawing.Size(308, 22); - this.menuitemCopyToClipboardNumberOfOppositions.Text = "Number of oppositions"; - this.menuitemCopyToClipboardNumberOfOppositions.Click += new System.EventHandler(this.ToolStripMenuItemCopyToClipboardNumberOfOppositions_Click); - this.menuitemCopyToClipboardNumberOfOppositions.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemCopyToClipboardNumberOfOppositions.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemCopyToClipboardNumberOfOppositions.AccessibleDescription = "Copy to clipboard: Number of oppositions"; + menuitemCopyToClipboardNumberOfOppositions.AccessibleName = "Copy to clipboard: Number of oppositions "; + menuitemCopyToClipboardNumberOfOppositions.AccessibleRole = AccessibleRole.MenuItem; + menuitemCopyToClipboardNumberOfOppositions.AutoToolTip = true; + menuitemCopyToClipboardNumberOfOppositions.Image = (Image)resources.GetObject("menuitemCopyToClipboardNumberOfOppositions.Image"); + menuitemCopyToClipboardNumberOfOppositions.Name = "menuitemCopyToClipboardNumberOfOppositions"; + menuitemCopyToClipboardNumberOfOppositions.Size = new Size(308, 22); + menuitemCopyToClipboardNumberOfOppositions.Text = "Number of oppositions"; + menuitemCopyToClipboardNumberOfOppositions.Click += ToolStripMenuItemCopyToClipboardNumberOfOppositions_Click; + menuitemCopyToClipboardNumberOfOppositions.MouseEnter += SetStatusbar_Enter; + menuitemCopyToClipboardNumberOfOppositions.MouseLeave += ClearStatusbar_Leave; // // menuitemCopyToClipboardNumberOfObservations // - this.menuitemCopyToClipboardNumberOfObservations.AccessibleDescription = "Copy to clipboard: Number of observations"; - this.menuitemCopyToClipboardNumberOfObservations.AccessibleName = "Copy to clipboard: Number of observations"; - this.menuitemCopyToClipboardNumberOfObservations.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemCopyToClipboardNumberOfObservations.AutoToolTip = true; - this.menuitemCopyToClipboardNumberOfObservations.Image = ((System.Drawing.Image)(resources.GetObject("menuitemCopyToClipboardNumberOfObservations.Image"))); - this.menuitemCopyToClipboardNumberOfObservations.Name = "menuitemCopyToClipboardNumberOfObservations"; - this.menuitemCopyToClipboardNumberOfObservations.Size = new System.Drawing.Size(308, 22); - this.menuitemCopyToClipboardNumberOfObservations.Text = "Number of observations"; - this.menuitemCopyToClipboardNumberOfObservations.Click += new System.EventHandler(this.ToolStripMenuItemCopyToClipboardNumberOfObservations_Click); - this.menuitemCopyToClipboardNumberOfObservations.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemCopyToClipboardNumberOfObservations.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemCopyToClipboardNumberOfObservations.AccessibleDescription = "Copy to clipboard: Number of observations"; + menuitemCopyToClipboardNumberOfObservations.AccessibleName = "Copy to clipboard: Number of observations"; + menuitemCopyToClipboardNumberOfObservations.AccessibleRole = AccessibleRole.MenuItem; + menuitemCopyToClipboardNumberOfObservations.AutoToolTip = true; + menuitemCopyToClipboardNumberOfObservations.Image = (Image)resources.GetObject("menuitemCopyToClipboardNumberOfObservations.Image"); + menuitemCopyToClipboardNumberOfObservations.Name = "menuitemCopyToClipboardNumberOfObservations"; + menuitemCopyToClipboardNumberOfObservations.Size = new Size(308, 22); + menuitemCopyToClipboardNumberOfObservations.Text = "Number of observations"; + menuitemCopyToClipboardNumberOfObservations.Click += ToolStripMenuItemCopyToClipboardNumberOfObservations_Click; + menuitemCopyToClipboardNumberOfObservations.MouseEnter += SetStatusbar_Enter; + menuitemCopyToClipboardNumberOfObservations.MouseLeave += ClearStatusbar_Leave; // // menuitemCopyToClipboardObservationSpan // - this.menuitemCopyToClipboardObservationSpan.AccessibleDescription = "Copy to clipboard: Observation span"; - this.menuitemCopyToClipboardObservationSpan.AccessibleName = "Copy to clipboard: Observation span"; - this.menuitemCopyToClipboardObservationSpan.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemCopyToClipboardObservationSpan.AutoToolTip = true; - this.menuitemCopyToClipboardObservationSpan.Image = ((System.Drawing.Image)(resources.GetObject("menuitemCopyToClipboardObservationSpan.Image"))); - this.menuitemCopyToClipboardObservationSpan.Name = "menuitemCopyToClipboardObservationSpan"; - this.menuitemCopyToClipboardObservationSpan.Size = new System.Drawing.Size(308, 22); - this.menuitemCopyToClipboardObservationSpan.Text = "Observation span"; - this.menuitemCopyToClipboardObservationSpan.Click += new System.EventHandler(this.ToolStripMenuItemCopyToClipboardObservationSpan_Click); - this.menuitemCopyToClipboardObservationSpan.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemCopyToClipboardObservationSpan.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemCopyToClipboardObservationSpan.AccessibleDescription = "Copy to clipboard: Observation span"; + menuitemCopyToClipboardObservationSpan.AccessibleName = "Copy to clipboard: Observation span"; + menuitemCopyToClipboardObservationSpan.AccessibleRole = AccessibleRole.MenuItem; + menuitemCopyToClipboardObservationSpan.AutoToolTip = true; + menuitemCopyToClipboardObservationSpan.Image = (Image)resources.GetObject("menuitemCopyToClipboardObservationSpan.Image"); + menuitemCopyToClipboardObservationSpan.Name = "menuitemCopyToClipboardObservationSpan"; + menuitemCopyToClipboardObservationSpan.Size = new Size(308, 22); + menuitemCopyToClipboardObservationSpan.Text = "Observation span"; + menuitemCopyToClipboardObservationSpan.Click += ToolStripMenuItemCopyToClipboardObservationSpan_Click; + menuitemCopyToClipboardObservationSpan.MouseEnter += SetStatusbar_Enter; + menuitemCopyToClipboardObservationSpan.MouseLeave += ClearStatusbar_Leave; // // menuitemCopyToClipboardRmsResidual // - this.menuitemCopyToClipboardRmsResidual.AccessibleDescription = "Copy to clipboard: r.m.s. residual"; - this.menuitemCopyToClipboardRmsResidual.AccessibleName = "Copy to clipboard: r.m.s. residual"; - this.menuitemCopyToClipboardRmsResidual.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemCopyToClipboardRmsResidual.AutoToolTip = true; - this.menuitemCopyToClipboardRmsResidual.Image = ((System.Drawing.Image)(resources.GetObject("menuitemCopyToClipboardRmsResidual.Image"))); - this.menuitemCopyToClipboardRmsResidual.Name = "menuitemCopyToClipboardRmsResidual"; - this.menuitemCopyToClipboardRmsResidual.Size = new System.Drawing.Size(308, 22); - this.menuitemCopyToClipboardRmsResidual.Text = "r.m.s. residual (\")"; - this.menuitemCopyToClipboardRmsResidual.Click += new System.EventHandler(this.ToolStripMenuItemCopyToClipboardRmsResidual_Click); - this.menuitemCopyToClipboardRmsResidual.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemCopyToClipboardRmsResidual.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemCopyToClipboardRmsResidual.AccessibleDescription = "Copy to clipboard: r.m.s. residual"; + menuitemCopyToClipboardRmsResidual.AccessibleName = "Copy to clipboard: r.m.s. residual"; + menuitemCopyToClipboardRmsResidual.AccessibleRole = AccessibleRole.MenuItem; + menuitemCopyToClipboardRmsResidual.AutoToolTip = true; + menuitemCopyToClipboardRmsResidual.Image = (Image)resources.GetObject("menuitemCopyToClipboardRmsResidual.Image"); + menuitemCopyToClipboardRmsResidual.Name = "menuitemCopyToClipboardRmsResidual"; + menuitemCopyToClipboardRmsResidual.Size = new Size(308, 22); + menuitemCopyToClipboardRmsResidual.Text = "r.m.s. residual (\")"; + menuitemCopyToClipboardRmsResidual.Click += ToolStripMenuItemCopyToClipboardRmsResidual_Click; + menuitemCopyToClipboardRmsResidual.MouseEnter += SetStatusbar_Enter; + menuitemCopyToClipboardRmsResidual.MouseLeave += ClearStatusbar_Leave; // // menuitemCopyToClipboardComputerName // - this.menuitemCopyToClipboardComputerName.AccessibleDescription = "Copy to clipboard: Computer name"; - this.menuitemCopyToClipboardComputerName.AccessibleName = "Copy to clipboard: Computer name"; - this.menuitemCopyToClipboardComputerName.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemCopyToClipboardComputerName.AutoToolTip = true; - this.menuitemCopyToClipboardComputerName.Image = ((System.Drawing.Image)(resources.GetObject("menuitemCopyToClipboardComputerName.Image"))); - this.menuitemCopyToClipboardComputerName.Name = "menuitemCopyToClipboardComputerName"; - this.menuitemCopyToClipboardComputerName.Size = new System.Drawing.Size(308, 22); - this.menuitemCopyToClipboardComputerName.Text = "Computer name"; - this.menuitemCopyToClipboardComputerName.Click += new System.EventHandler(this.ToolStripMenuItemCopyToClipboardComputerName_Click); - this.menuitemCopyToClipboardComputerName.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemCopyToClipboardComputerName.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemCopyToClipboardComputerName.AccessibleDescription = "Copy to clipboard: Computer name"; + menuitemCopyToClipboardComputerName.AccessibleName = "Copy to clipboard: Computer name"; + menuitemCopyToClipboardComputerName.AccessibleRole = AccessibleRole.MenuItem; + menuitemCopyToClipboardComputerName.AutoToolTip = true; + menuitemCopyToClipboardComputerName.Image = (Image)resources.GetObject("menuitemCopyToClipboardComputerName.Image"); + menuitemCopyToClipboardComputerName.Name = "menuitemCopyToClipboardComputerName"; + menuitemCopyToClipboardComputerName.Size = new Size(308, 22); + menuitemCopyToClipboardComputerName.Text = "Computer name"; + menuitemCopyToClipboardComputerName.Click += ToolStripMenuItemCopyToClipboardComputerName_Click; + menuitemCopyToClipboardComputerName.MouseEnter += SetStatusbar_Enter; + menuitemCopyToClipboardComputerName.MouseLeave += ClearStatusbar_Leave; // // menuitemCopyToClipboardDateOfTheLastObservation // - this.menuitemCopyToClipboardDateOfTheLastObservation.AccessibleDescription = "Copy to clipboard: Date of last observation"; - this.menuitemCopyToClipboardDateOfTheLastObservation.AccessibleName = "Copy to clipboard: Date of last observation"; - this.menuitemCopyToClipboardDateOfTheLastObservation.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemCopyToClipboardDateOfTheLastObservation.AutoToolTip = true; - this.menuitemCopyToClipboardDateOfTheLastObservation.Image = ((System.Drawing.Image)(resources.GetObject("menuitemCopyToClipboardDateOfTheLastObservation.Image"))); - this.menuitemCopyToClipboardDateOfTheLastObservation.Name = "menuitemCopyToClipboardDateOfTheLastObservation"; - this.menuitemCopyToClipboardDateOfTheLastObservation.Size = new System.Drawing.Size(308, 22); - this.menuitemCopyToClipboardDateOfTheLastObservation.Text = "Date of last observation"; - this.menuitemCopyToClipboardDateOfTheLastObservation.Click += new System.EventHandler(this.ToolStripMenuItemCopyToClipboardDateOfLastObservation_Click); - this.menuitemCopyToClipboardDateOfTheLastObservation.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemCopyToClipboardDateOfTheLastObservation.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemCopyToClipboardDateOfTheLastObservation.AccessibleDescription = "Copy to clipboard: Date of last observation"; + menuitemCopyToClipboardDateOfTheLastObservation.AccessibleName = "Copy to clipboard: Date of last observation"; + menuitemCopyToClipboardDateOfTheLastObservation.AccessibleRole = AccessibleRole.MenuItem; + menuitemCopyToClipboardDateOfTheLastObservation.AutoToolTip = true; + menuitemCopyToClipboardDateOfTheLastObservation.Image = (Image)resources.GetObject("menuitemCopyToClipboardDateOfTheLastObservation.Image"); + menuitemCopyToClipboardDateOfTheLastObservation.Name = "menuitemCopyToClipboardDateOfTheLastObservation"; + menuitemCopyToClipboardDateOfTheLastObservation.Size = new Size(308, 22); + menuitemCopyToClipboardDateOfTheLastObservation.Text = "Date of last observation"; + menuitemCopyToClipboardDateOfTheLastObservation.Click += ToolStripMenuItemCopyToClipboardDateOfLastObservation_Click; + menuitemCopyToClipboardDateOfTheLastObservation.MouseEnter += SetStatusbar_Enter; + menuitemCopyToClipboardDateOfTheLastObservation.MouseLeave += ClearStatusbar_Leave; // // menuitemCopyToClipboardFlags // - this.menuitemCopyToClipboardFlags.AccessibleDescription = "Copy to clipboard: 4-hexdigit flags"; - this.menuitemCopyToClipboardFlags.AccessibleName = "Copy to clipboard: 4-hexdigit flags"; - this.menuitemCopyToClipboardFlags.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemCopyToClipboardFlags.AutoToolTip = true; - this.menuitemCopyToClipboardFlags.Image = ((System.Drawing.Image)(resources.GetObject("menuitemCopyToClipboardFlags.Image"))); - this.menuitemCopyToClipboardFlags.Name = "menuitemCopyToClipboardFlags"; - this.menuitemCopyToClipboardFlags.Size = new System.Drawing.Size(308, 22); - this.menuitemCopyToClipboardFlags.Text = "4-hexdigit flags"; - this.menuitemCopyToClipboardFlags.Click += new System.EventHandler(this.MenuitemRecordsDateOfTheLastObservation_Click); - this.menuitemCopyToClipboardFlags.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemCopyToClipboardFlags.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemCopyToClipboardFlags.AccessibleDescription = "Copy to clipboard: 4-hexdigit flags"; + menuitemCopyToClipboardFlags.AccessibleName = "Copy to clipboard: 4-hexdigit flags"; + menuitemCopyToClipboardFlags.AccessibleRole = AccessibleRole.MenuItem; + menuitemCopyToClipboardFlags.AutoToolTip = true; + menuitemCopyToClipboardFlags.Image = (Image)resources.GetObject("menuitemCopyToClipboardFlags.Image"); + menuitemCopyToClipboardFlags.Name = "menuitemCopyToClipboardFlags"; + menuitemCopyToClipboardFlags.Size = new Size(308, 22); + menuitemCopyToClipboardFlags.Text = "4-hexdigit flags"; + menuitemCopyToClipboardFlags.Click += MenuitemRecordsDateOfTheLastObservation_Click; + menuitemCopyToClipboardFlags.MouseEnter += SetStatusbar_Enter; + menuitemCopyToClipboardFlags.MouseLeave += ClearStatusbar_Leave; // - // splitbuttonCopyToClipboard + // menuitemCopytoClipboard // - this.splitbuttonCopyToClipboard.AccessibleDescription = "Copys to clipboard"; - this.splitbuttonCopyToClipboard.AccessibleName = "Copy to clipboard"; - this.splitbuttonCopyToClipboard.AccessibleRole = System.Windows.Forms.AccessibleRole.SplitButton; - this.splitbuttonCopyToClipboard.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.splitbuttonCopyToClipboard.DropDown = this.contextMenuCopyToClipboardOrbitalElements; - this.splitbuttonCopyToClipboard.Image = global::Planetoid_DB.Properties.Resources.silk_page_copy; - this.splitbuttonCopyToClipboard.ImageTransparentColor = System.Drawing.Color.Magenta; - this.splitbuttonCopyToClipboard.Name = "splitbuttonCopyToClipboard"; - this.splitbuttonCopyToClipboard.Size = new System.Drawing.Size(32, 22); - this.splitbuttonCopyToClipboard.Text = "Copy to clipboard"; - this.splitbuttonCopyToClipboard.ButtonClick += new System.EventHandler(this.ToolStripButtonCopyToClipboard_Click); - this.splitbuttonCopyToClipboard.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.splitbuttonCopyToClipboard.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemCopytoClipboard.AccessibleDescription = "Copy to clipboard"; + menuitemCopytoClipboard.AccessibleName = "Copy to clipboard"; + menuitemCopytoClipboard.AccessibleRole = AccessibleRole.MenuItem; + menuitemCopytoClipboard.AutoToolTip = true; + menuitemCopytoClipboard.DoubleClickEnabled = true; + menuitemCopytoClipboard.DropDown = contextMenuCopyToClipboardOrbitalElements; + menuitemCopytoClipboard.Image = Properties.Resources.silk_page_copy; + menuitemCopytoClipboard.Name = "menuitemCopytoClipboard"; + menuitemCopytoClipboard.ShortcutKeys = Keys.Alt | Keys.C; + menuitemCopytoClipboard.Size = new Size(145, 22); + menuitemCopytoClipboard.Text = "&Copy"; + menuitemCopytoClipboard.Click += ToolStripButtonCopyToClipboard_Click; + menuitemCopytoClipboard.MouseEnter += SetStatusbar_Enter; + menuitemCopytoClipboard.MouseLeave += ClearStatusbar_Leave; // // menu // - this.menu.AccessibleDescription = "Shows the menubar"; - this.menu.AccessibleName = "menu"; - this.menu.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuBar; - this.menu.AllowItemReorder = true; - this.menu.Dock = System.Windows.Forms.DockStyle.None; - this.menu.Font = new System.Drawing.Font("Segoe UI", 9F); - this.menu.GripMargin = new System.Windows.Forms.Padding(0); - this.menu.GripStyle = System.Windows.Forms.ToolStripGripStyle.Visible; - this.menu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.menuitemFile, - this.menuitemEdit, - this.menuitemNavigation, - this.menuitemTools, - this.menuitemUpdate, - this.menuitemOptions, - this.menuitemHelp}); - this.menu.Location = new System.Drawing.Point(0, 0); - this.menu.Name = "menu"; - this.menu.Padding = new System.Windows.Forms.Padding(2, 0, 0, 0); - this.menu.ShowItemToolTips = true; - this.menu.Size = new System.Drawing.Size(804, 24); - this.menu.TabIndex = 0; - this.menu.Text = "menu"; - this.toolTip.SetToolTip(this.menu, "Menu"); - this.menu.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.menu.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.menu.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menu.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menu.AccessibleDescription = "Shows the menubar"; + menu.AccessibleName = "menu"; + menu.AccessibleRole = AccessibleRole.MenuBar; + menu.AllowItemReorder = true; + menu.Dock = DockStyle.None; + menu.Font = new Font("Segoe UI", 9F, FontStyle.Regular, GraphicsUnit.Point); + menu.GripMargin = new Padding(0); + menu.GripStyle = ToolStripGripStyle.Visible; + menu.Items.AddRange(new ToolStripItem[] { menuitemFile, menuitemEdit, menuitemNavigation, menuitemTools, menuitemUpdate, menuitemOptions, menuitemHelp }); + menu.Location = new Point(0, 0); + menu.Name = "menu"; + menu.Padding = new Padding(2, 0, 0, 0); + menu.ShowItemToolTips = true; + menu.Size = new Size(804, 24); + menu.TabIndex = 0; + menu.Text = "menu"; + toolTip.SetToolTip(menu, "Menu"); + menu.Enter += SetStatusbar_Enter; + menu.Leave += ClearStatusbar_Leave; + menu.MouseEnter += SetStatusbar_Enter; + menu.MouseLeave += ClearStatusbar_Leave; // // menuitemFile // - this.menuitemFile.AccessibleDescription = "Opens the menu \"file\""; - this.menuitemFile.AccessibleName = "File"; - this.menuitemFile.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuPopup; - this.menuitemFile.AutoToolTip = true; - this.menuitemFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.menuitemOpenALocalMpcorbdatFile, - this.toolStripSeparator13, - this.menuitemExportDataEntry, - this.menuitemPrint, - this.toolStripSeparatorFile1, - this.menuitemRestart, - this.menuitemExit}); - this.menuitemFile.Name = "menuitemFile"; - this.menuitemFile.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F))); - this.menuitemFile.Size = new System.Drawing.Size(37, 24); - this.menuitemFile.Text = "&File"; - this.menuitemFile.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemFile.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemFile.AccessibleDescription = "Opens the menu \"file\""; + menuitemFile.AccessibleName = "File"; + menuitemFile.AccessibleRole = AccessibleRole.MenuPopup; + menuitemFile.AutoToolTip = true; + menuitemFile.DropDownItems.AddRange(new ToolStripItem[] { menuitemOpenALocalMpcorbdatFile, toolStripSeparator13, menuitemExportDataEntry, menuitemPrint, toolStripSeparatorFile1, menuitemRestart, menuitemExit }); + menuitemFile.Name = "menuitemFile"; + menuitemFile.ShortcutKeys = Keys.Alt | Keys.F; + menuitemFile.Size = new Size(37, 24); + menuitemFile.Text = "&File"; + menuitemFile.MouseEnter += SetStatusbar_Enter; + menuitemFile.MouseLeave += ClearStatusbar_Leave; // // menuitemOpenALocalMpcorbdatFile // - this.menuitemOpenALocalMpcorbdatFile.AccessibleDescription = "Opens a local MPCORB.DAT file"; - this.menuitemOpenALocalMpcorbdatFile.AccessibleName = "Open"; - this.menuitemOpenALocalMpcorbdatFile.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemOpenALocalMpcorbdatFile.AutoToolTip = true; - this.menuitemOpenALocalMpcorbdatFile.Enabled = false; - this.menuitemOpenALocalMpcorbdatFile.Image = global::Planetoid_DB.Properties.Resources.silk_folder; - this.menuitemOpenALocalMpcorbdatFile.Name = "menuitemOpenALocalMpcorbdatFile"; - this.menuitemOpenALocalMpcorbdatFile.Size = new System.Drawing.Size(235, 22); - this.menuitemOpenALocalMpcorbdatFile.Text = "&Open a local MPCORB.DAT file"; - this.menuitemOpenALocalMpcorbdatFile.Click += new System.EventHandler(this.MenuitemOpenALocalMpcorbdatFile_Click); - this.menuitemOpenALocalMpcorbdatFile.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemOpenALocalMpcorbdatFile.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemOpenALocalMpcorbdatFile.AccessibleDescription = "Opens a local MPCORB.DAT file"; + menuitemOpenALocalMpcorbdatFile.AccessibleName = "Open"; + menuitemOpenALocalMpcorbdatFile.AccessibleRole = AccessibleRole.MenuItem; + menuitemOpenALocalMpcorbdatFile.AutoToolTip = true; + menuitemOpenALocalMpcorbdatFile.Enabled = false; + menuitemOpenALocalMpcorbdatFile.Image = Properties.Resources.silk_folder; + menuitemOpenALocalMpcorbdatFile.Name = "menuitemOpenALocalMpcorbdatFile"; + menuitemOpenALocalMpcorbdatFile.Size = new Size(235, 22); + menuitemOpenALocalMpcorbdatFile.Text = "&Open a local MPCORB.DAT file"; + menuitemOpenALocalMpcorbdatFile.Click += MenuitemOpenALocalMpcorbdatFile_Click; + menuitemOpenALocalMpcorbdatFile.MouseEnter += SetStatusbar_Enter; + menuitemOpenALocalMpcorbdatFile.MouseLeave += ClearStatusbar_Leave; // // toolStripSeparator13 // - this.toolStripSeparator13.AccessibleDescription = "Just a separator"; - this.toolStripSeparator13.AccessibleName = "Just a separator"; - this.toolStripSeparator13.AccessibleRole = System.Windows.Forms.AccessibleRole.Separator; - this.toolStripSeparator13.Name = "toolStripSeparator13"; - this.toolStripSeparator13.Size = new System.Drawing.Size(232, 6); - this.toolStripSeparator13.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripSeparator13.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripSeparator13.AccessibleDescription = "Just a separator"; + toolStripSeparator13.AccessibleName = "Just a separator"; + toolStripSeparator13.AccessibleRole = AccessibleRole.Separator; + toolStripSeparator13.Name = "toolStripSeparator13"; + toolStripSeparator13.Size = new Size(232, 6); + toolStripSeparator13.MouseEnter += SetStatusbar_Enter; + toolStripSeparator13.MouseLeave += ClearStatusbar_Leave; // // menuitemExportDataEntry // - this.menuitemExportDataEntry.AccessibleDescription = "Exports data entry"; - this.menuitemExportDataEntry.AccessibleName = "Export"; - this.menuitemExportDataEntry.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemExportDataEntry.AutoToolTip = true; - this.menuitemExportDataEntry.Image = global::Planetoid_DB.Properties.Resources.silk_page_save; - this.menuitemExportDataEntry.Name = "menuitemExportDataEntry"; - this.menuitemExportDataEntry.Size = new System.Drawing.Size(235, 22); - this.menuitemExportDataEntry.Text = "&Export data entry"; - this.menuitemExportDataEntry.Click += new System.EventHandler(this.ToolStripSplitButtonExport_Click); - this.menuitemExportDataEntry.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemExportDataEntry.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemExportDataEntry.AccessibleDescription = "Exports data entry"; + menuitemExportDataEntry.AccessibleName = "Export"; + menuitemExportDataEntry.AccessibleRole = AccessibleRole.MenuItem; + menuitemExportDataEntry.AutoToolTip = true; + menuitemExportDataEntry.Image = Properties.Resources.silk_page_save; + menuitemExportDataEntry.Name = "menuitemExportDataEntry"; + menuitemExportDataEntry.Size = new Size(235, 22); + menuitemExportDataEntry.Text = "&Export data entry"; + menuitemExportDataEntry.Click += ToolStripSplitButtonExport_Click; + menuitemExportDataEntry.MouseEnter += SetStatusbar_Enter; + menuitemExportDataEntry.MouseLeave += ClearStatusbar_Leave; // // menuitemPrint // - this.menuitemPrint.AccessibleDescription = "Prints the information"; - this.menuitemPrint.AccessibleName = "Print"; - this.menuitemPrint.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemPrint.AutoToolTip = true; - this.menuitemPrint.Image = global::Planetoid_DB.Properties.Resources.silk_printer; - this.menuitemPrint.Name = "menuitemPrint"; - this.menuitemPrint.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.P))); - this.menuitemPrint.Size = new System.Drawing.Size(235, 22); - this.menuitemPrint.Text = "&Print data sheet"; - this.menuitemPrint.Click += new System.EventHandler(this.ToolStripMenuItemPrint_Click); - this.menuitemPrint.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemPrint.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemPrint.AccessibleDescription = "Prints the information"; + menuitemPrint.AccessibleName = "Print"; + menuitemPrint.AccessibleRole = AccessibleRole.MenuItem; + menuitemPrint.AutoToolTip = true; + menuitemPrint.Image = Properties.Resources.silk_printer; + menuitemPrint.Name = "menuitemPrint"; + menuitemPrint.ShortcutKeys = Keys.Alt | Keys.P; + menuitemPrint.Size = new Size(235, 22); + menuitemPrint.Text = "&Print data sheet"; + menuitemPrint.Click += ToolStripMenuItemPrint_Click; + menuitemPrint.MouseEnter += SetStatusbar_Enter; + menuitemPrint.MouseLeave += ClearStatusbar_Leave; // // toolStripSeparatorFile1 // - this.toolStripSeparatorFile1.AccessibleDescription = "Just a separator"; - this.toolStripSeparatorFile1.AccessibleName = "Just a separator"; - this.toolStripSeparatorFile1.AccessibleRole = System.Windows.Forms.AccessibleRole.Separator; - this.toolStripSeparatorFile1.Name = "toolStripSeparatorFile1"; - this.toolStripSeparatorFile1.Size = new System.Drawing.Size(232, 6); - this.toolStripSeparatorFile1.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripSeparatorFile1.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripSeparatorFile1.AccessibleDescription = "Just a separator"; + toolStripSeparatorFile1.AccessibleName = "Just a separator"; + toolStripSeparatorFile1.AccessibleRole = AccessibleRole.Separator; + toolStripSeparatorFile1.Name = "toolStripSeparatorFile1"; + toolStripSeparatorFile1.Size = new Size(232, 6); + toolStripSeparatorFile1.MouseEnter += SetStatusbar_Enter; + toolStripSeparatorFile1.MouseLeave += ClearStatusbar_Leave; // // menuitemRestart // - this.menuitemRestart.AccessibleDescription = "Restarts the application"; - this.menuitemRestart.AccessibleName = "Restart"; - this.menuitemRestart.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemRestart.AutoToolTip = true; - this.menuitemRestart.Image = global::Planetoid_DB.Properties.Resources.silk_reload; - this.menuitemRestart.Name = "menuitemRestart"; - this.menuitemRestart.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.R))); - this.menuitemRestart.Size = new System.Drawing.Size(235, 22); - this.menuitemRestart.Text = "&Restart"; - this.menuitemRestart.Click += new System.EventHandler(this.ToolStripMenuItemRestart_Click); - this.menuitemRestart.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemRestart.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemRestart.AccessibleDescription = "Restarts the application"; + menuitemRestart.AccessibleName = "Restart"; + menuitemRestart.AccessibleRole = AccessibleRole.MenuItem; + menuitemRestart.AutoToolTip = true; + menuitemRestart.Image = Properties.Resources.silk_reload; + menuitemRestart.Name = "menuitemRestart"; + menuitemRestart.ShortcutKeys = Keys.Alt | Keys.R; + menuitemRestart.Size = new Size(235, 22); + menuitemRestart.Text = "&Restart"; + menuitemRestart.Click += ToolStripMenuItemRestart_Click; + menuitemRestart.MouseEnter += SetStatusbar_Enter; + menuitemRestart.MouseLeave += ClearStatusbar_Leave; // // menuitemExit // - this.menuitemExit.AccessibleDescription = "Exits the application"; - this.menuitemExit.AccessibleName = "Exit"; - this.menuitemExit.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemExit.AutoToolTip = true; - this.menuitemExit.DoubleClickEnabled = true; - this.menuitemExit.Image = global::Planetoid_DB.Properties.Resources.silk_door_in; - this.menuitemExit.Name = "menuitemExit"; - this.menuitemExit.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.X))); - this.menuitemExit.Size = new System.Drawing.Size(235, 22); - this.menuitemExit.Text = "E&xit"; - this.menuitemExit.Click += new System.EventHandler(this.MenuitemExit_Click); - this.menuitemExit.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemExit.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemExit.AccessibleDescription = "Exits the application"; + menuitemExit.AccessibleName = "Exit"; + menuitemExit.AccessibleRole = AccessibleRole.MenuItem; + menuitemExit.AutoToolTip = true; + menuitemExit.DoubleClickEnabled = true; + menuitemExit.Image = Properties.Resources.silk_door_in; + menuitemExit.Name = "menuitemExit"; + menuitemExit.ShortcutKeys = Keys.Alt | Keys.X; + menuitemExit.Size = new Size(235, 22); + menuitemExit.Text = "E&xit"; + menuitemExit.Click += MenuitemExit_Click; + menuitemExit.MouseEnter += SetStatusbar_Enter; + menuitemExit.MouseLeave += ClearStatusbar_Leave; // // menuitemEdit // - this.menuitemEdit.AccessibleDescription = "Opens the menu \"edit\""; - this.menuitemEdit.AccessibleName = "Edit"; - this.menuitemEdit.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuPopup; - this.menuitemEdit.AutoToolTip = true; - this.menuitemEdit.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.menuitemCopytoClipboard, - this.menuitemSearch}); - this.menuitemEdit.Name = "menuitemEdit"; - this.menuitemEdit.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.E))); - this.menuitemEdit.Size = new System.Drawing.Size(39, 24); - this.menuitemEdit.Text = "&Edit"; - this.menuitemEdit.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemEdit.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); - // - // menuitemCopytoClipboard - // - this.menuitemCopytoClipboard.AccessibleDescription = "Copy to clipboard"; - this.menuitemCopytoClipboard.AccessibleName = "Copy to clipboard"; - this.menuitemCopytoClipboard.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemCopytoClipboard.AutoToolTip = true; - this.menuitemCopytoClipboard.DoubleClickEnabled = true; - this.menuitemCopytoClipboard.DropDown = this.contextMenuCopyToClipboardOrbitalElements; - this.menuitemCopytoClipboard.Image = global::Planetoid_DB.Properties.Resources.silk_page_copy; - this.menuitemCopytoClipboard.Name = "menuitemCopytoClipboard"; - this.menuitemCopytoClipboard.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.C))); - this.menuitemCopytoClipboard.Size = new System.Drawing.Size(145, 22); - this.menuitemCopytoClipboard.Text = "&Copy"; - this.menuitemCopytoClipboard.Click += new System.EventHandler(this.ToolStripButtonCopyToClipboard_Click); - this.menuitemCopytoClipboard.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemCopytoClipboard.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemEdit.AccessibleDescription = "Opens the menu \"edit\""; + menuitemEdit.AccessibleName = "Edit"; + menuitemEdit.AccessibleRole = AccessibleRole.MenuPopup; + menuitemEdit.AutoToolTip = true; + menuitemEdit.DropDownItems.AddRange(new ToolStripItem[] { menuitemCopytoClipboard, menuitemSearch }); + menuitemEdit.Name = "menuitemEdit"; + menuitemEdit.ShortcutKeys = Keys.Alt | Keys.E; + menuitemEdit.Size = new Size(39, 24); + menuitemEdit.Text = "&Edit"; + menuitemEdit.MouseEnter += SetStatusbar_Enter; + menuitemEdit.MouseLeave += ClearStatusbar_Leave; // // menuitemSearch // - this.menuitemSearch.AccessibleDescription = "Search"; - this.menuitemSearch.AccessibleName = "Search"; - this.menuitemSearch.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemSearch.AutoToolTip = true; - this.menuitemSearch.DoubleClickEnabled = true; - this.menuitemSearch.Image = global::Planetoid_DB.Properties.Resources.silk_magnifier; - this.menuitemSearch.Name = "menuitemSearch"; - this.menuitemSearch.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.S))); - this.menuitemSearch.Size = new System.Drawing.Size(145, 22); - this.menuitemSearch.Text = "&Search"; - this.menuitemSearch.Click += new System.EventHandler(this.ToolStripMenuItemSearch_Click); - this.menuitemSearch.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemSearch.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemSearch.AccessibleDescription = "Search"; + menuitemSearch.AccessibleName = "Search"; + menuitemSearch.AccessibleRole = AccessibleRole.MenuItem; + menuitemSearch.AutoToolTip = true; + menuitemSearch.DoubleClickEnabled = true; + menuitemSearch.Image = Properties.Resources.silk_magnifier; + menuitemSearch.Name = "menuitemSearch"; + menuitemSearch.ShortcutKeys = Keys.Alt | Keys.S; + menuitemSearch.Size = new Size(145, 22); + menuitemSearch.Text = "&Search"; + menuitemSearch.Click += ToolStripMenuItemSearch_Click; + menuitemSearch.MouseEnter += SetStatusbar_Enter; + menuitemSearch.MouseLeave += ClearStatusbar_Leave; // // menuitemNavigation // - this.menuitemNavigation.AccessibleDescription = "Opens the menu \"navigation\""; - this.menuitemNavigation.AccessibleName = "Navigation"; - this.menuitemNavigation.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuPopup; - this.menuitemNavigation.AutoToolTip = true; - this.menuitemNavigation.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.menuitemRandomMinorPlanet, - this.toolStripSeparatorNavigation1, - this.menuitemNavigateToTheBeginning, - this.menuitemNavigateSomeDataBackward, - this.menuitemNavigateToThePreviousData, - this.menuitemNavigateToTheNextData, - this.menuitemNavigateSomeDataForward, - this.menuitemNavigateToTheEnd}); - this.menuitemNavigation.Name = "menuitemNavigation"; - this.menuitemNavigation.Size = new System.Drawing.Size(77, 24); - this.menuitemNavigation.Text = "&Navigation"; - this.menuitemNavigation.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemNavigation.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemNavigation.AccessibleDescription = "Opens the menu \"navigation\""; + menuitemNavigation.AccessibleName = "Navigation"; + menuitemNavigation.AccessibleRole = AccessibleRole.MenuPopup; + menuitemNavigation.AutoToolTip = true; + menuitemNavigation.DropDownItems.AddRange(new ToolStripItem[] { menuitemRandomMinorPlanet, toolStripSeparatorNavigation1, menuitemNavigateToTheBeginning, menuitemNavigateSomeDataBackward, menuitemNavigateToThePreviousData, menuitemNavigateToTheNextData, menuitemNavigateSomeDataForward, menuitemNavigateToTheEnd }); + menuitemNavigation.Name = "menuitemNavigation"; + menuitemNavigation.Size = new Size(77, 24); + menuitemNavigation.Text = "&Navigation"; + menuitemNavigation.MouseEnter += SetStatusbar_Enter; + menuitemNavigation.MouseLeave += ClearStatusbar_Leave; // // menuitemRandomMinorPlanet // - this.menuitemRandomMinorPlanet.AccessibleDescription = "Loads a random minor planet"; - this.menuitemRandomMinorPlanet.AccessibleName = "Random minor planet"; - this.menuitemRandomMinorPlanet.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemRandomMinorPlanet.AutoToolTip = true; - this.menuitemRandomMinorPlanet.DoubleClickEnabled = true; - this.menuitemRandomMinorPlanet.Image = global::Planetoid_DB.Properties.Resources.silk_arrow_refresh; - this.menuitemRandomMinorPlanet.Name = "menuitemRandomMinorPlanet"; - this.menuitemRandomMinorPlanet.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.R))); - this.menuitemRandomMinorPlanet.Size = new System.Drawing.Size(274, 22); - this.menuitemRandomMinorPlanet.Text = "&Random minor planet"; - this.menuitemRandomMinorPlanet.Click += new System.EventHandler(this.ToolStripMenuItemRandomMinorPlanet_Click); - this.menuitemRandomMinorPlanet.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemRandomMinorPlanet.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemRandomMinorPlanet.AccessibleDescription = "Loads a random minor planet"; + menuitemRandomMinorPlanet.AccessibleName = "Random minor planet"; + menuitemRandomMinorPlanet.AccessibleRole = AccessibleRole.MenuItem; + menuitemRandomMinorPlanet.AutoToolTip = true; + menuitemRandomMinorPlanet.DoubleClickEnabled = true; + menuitemRandomMinorPlanet.Image = Properties.Resources.silk_arrow_refresh; + menuitemRandomMinorPlanet.Name = "menuitemRandomMinorPlanet"; + menuitemRandomMinorPlanet.ShortcutKeys = Keys.Alt | Keys.R; + menuitemRandomMinorPlanet.Size = new Size(274, 22); + menuitemRandomMinorPlanet.Text = "&Random minor planet"; + menuitemRandomMinorPlanet.Click += ToolStripMenuItemRandomMinorPlanet_Click; + menuitemRandomMinorPlanet.MouseEnter += SetStatusbar_Enter; + menuitemRandomMinorPlanet.MouseLeave += ClearStatusbar_Leave; // // toolStripSeparatorNavigation1 // - this.toolStripSeparatorNavigation1.AccessibleDescription = "Just a separator"; - this.toolStripSeparatorNavigation1.AccessibleName = "Just a separator"; - this.toolStripSeparatorNavigation1.AccessibleRole = System.Windows.Forms.AccessibleRole.Separator; - this.toolStripSeparatorNavigation1.Name = "toolStripSeparatorNavigation1"; - this.toolStripSeparatorNavigation1.Size = new System.Drawing.Size(271, 6); - this.toolStripSeparatorNavigation1.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripSeparatorNavigation1.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripSeparatorNavigation1.AccessibleDescription = "Just a separator"; + toolStripSeparatorNavigation1.AccessibleName = "Just a separator"; + toolStripSeparatorNavigation1.AccessibleRole = AccessibleRole.Separator; + toolStripSeparatorNavigation1.Name = "toolStripSeparatorNavigation1"; + toolStripSeparatorNavigation1.Size = new Size(271, 6); + toolStripSeparatorNavigation1.MouseEnter += SetStatusbar_Enter; + toolStripSeparatorNavigation1.MouseLeave += ClearStatusbar_Leave; // // menuitemNavigateToTheBeginning // - this.menuitemNavigateToTheBeginning.AccessibleDescription = "Navigates to the beginning of the data"; - this.menuitemNavigateToTheBeginning.AccessibleName = "Navigates to the beginning"; - this.menuitemNavigateToTheBeginning.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemNavigateToTheBeginning.AutoToolTip = true; - this.menuitemNavigateToTheBeginning.DoubleClickEnabled = true; - this.menuitemNavigateToTheBeginning.Image = global::Planetoid_DB.Properties.Resources.silk_backward_end_green; - this.menuitemNavigateToTheBeginning.Name = "menuitemNavigateToTheBeginning"; - this.menuitemNavigateToTheBeginning.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.B))); - this.menuitemNavigateToTheBeginning.Size = new System.Drawing.Size(274, 22); - this.menuitemNavigateToTheBeginning.Text = "Navigate to the &beginning"; - this.menuitemNavigateToTheBeginning.Click += new System.EventHandler(this.ToolStripMenuItemNavigateToTheBegin_Click); - this.menuitemNavigateToTheBeginning.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemNavigateToTheBeginning.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemNavigateToTheBeginning.AccessibleDescription = "Navigates to the beginning of the data"; + menuitemNavigateToTheBeginning.AccessibleName = "Navigates to the beginning"; + menuitemNavigateToTheBeginning.AccessibleRole = AccessibleRole.MenuItem; + menuitemNavigateToTheBeginning.AutoToolTip = true; + menuitemNavigateToTheBeginning.DoubleClickEnabled = true; + menuitemNavigateToTheBeginning.Image = Properties.Resources.silk_backward_end_green; + menuitemNavigateToTheBeginning.Name = "menuitemNavigateToTheBeginning"; + menuitemNavigateToTheBeginning.ShortcutKeys = Keys.Alt | Keys.B; + menuitemNavigateToTheBeginning.Size = new Size(274, 22); + menuitemNavigateToTheBeginning.Text = "Navigate to the &beginning"; + menuitemNavigateToTheBeginning.Click += ToolStripMenuItemNavigateToTheBegin_Click; + menuitemNavigateToTheBeginning.MouseEnter += SetStatusbar_Enter; + menuitemNavigateToTheBeginning.MouseLeave += ClearStatusbar_Leave; // // menuitemNavigateToThePreviousData // - this.menuitemNavigateToThePreviousData.AccessibleDescription = "Navigates to the previous data"; - this.menuitemNavigateToThePreviousData.AccessibleName = "Navigates to the previous"; - this.menuitemNavigateToThePreviousData.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemNavigateToThePreviousData.AutoToolTip = true; - this.menuitemNavigateToThePreviousData.DoubleClickEnabled = true; - this.menuitemNavigateToThePreviousData.Image = global::Planetoid_DB.Properties.Resources.silk_backward_1_green; - this.menuitemNavigateToThePreviousData.Name = "menuitemNavigateToThePreviousData"; - this.menuitemNavigateToThePreviousData.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.P))); - this.menuitemNavigateToThePreviousData.Size = new System.Drawing.Size(274, 22); - this.menuitemNavigateToThePreviousData.Text = "Navigate to the &previous"; - this.menuitemNavigateToThePreviousData.Click += new System.EventHandler(this.ToolStripMenuItemNavigateToThePreviousData_Click); - this.menuitemNavigateToThePreviousData.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemNavigateToThePreviousData.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemNavigateToThePreviousData.AccessibleDescription = "Navigates to the previous data"; + menuitemNavigateToThePreviousData.AccessibleName = "Navigates to the previous"; + menuitemNavigateToThePreviousData.AccessibleRole = AccessibleRole.MenuItem; + menuitemNavigateToThePreviousData.AutoToolTip = true; + menuitemNavigateToThePreviousData.DoubleClickEnabled = true; + menuitemNavigateToThePreviousData.Image = Properties.Resources.silk_backward_1_green; + menuitemNavigateToThePreviousData.Name = "menuitemNavigateToThePreviousData"; + menuitemNavigateToThePreviousData.ShortcutKeys = Keys.Alt | Keys.P; + menuitemNavigateToThePreviousData.Size = new Size(274, 22); + menuitemNavigateToThePreviousData.Text = "Navigate to the &previous"; + menuitemNavigateToThePreviousData.Click += ToolStripMenuItemNavigateToThePreviousData_Click; + menuitemNavigateToThePreviousData.MouseEnter += SetStatusbar_Enter; + menuitemNavigateToThePreviousData.MouseLeave += ClearStatusbar_Leave; // // menuitemNavigateToTheNextData // - this.menuitemNavigateToTheNextData.AccessibleDescription = "Navigates to the next data"; - this.menuitemNavigateToTheNextData.AccessibleName = "Navigates to the next"; - this.menuitemNavigateToTheNextData.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemNavigateToTheNextData.AutoToolTip = true; - this.menuitemNavigateToTheNextData.DoubleClickEnabled = true; - this.menuitemNavigateToTheNextData.Image = global::Planetoid_DB.Properties.Resources.silk_forward_1_green; - this.menuitemNavigateToTheNextData.Name = "menuitemNavigateToTheNextData"; - this.menuitemNavigateToTheNextData.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.N))); - this.menuitemNavigateToTheNextData.Size = new System.Drawing.Size(274, 22); - this.menuitemNavigateToTheNextData.Text = "Navigate to the &next"; - this.menuitemNavigateToTheNextData.Click += new System.EventHandler(this.ToolStripMenuItemNavigateToTheNextData_Click); - this.menuitemNavigateToTheNextData.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemNavigateToTheNextData.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemNavigateToTheNextData.AccessibleDescription = "Navigates to the next data"; + menuitemNavigateToTheNextData.AccessibleName = "Navigates to the next"; + menuitemNavigateToTheNextData.AccessibleRole = AccessibleRole.MenuItem; + menuitemNavigateToTheNextData.AutoToolTip = true; + menuitemNavigateToTheNextData.DoubleClickEnabled = true; + menuitemNavigateToTheNextData.Image = Properties.Resources.silk_forward_1_green; + menuitemNavigateToTheNextData.Name = "menuitemNavigateToTheNextData"; + menuitemNavigateToTheNextData.ShortcutKeys = Keys.Alt | Keys.N; + menuitemNavigateToTheNextData.Size = new Size(274, 22); + menuitemNavigateToTheNextData.Text = "Navigate to the &next"; + menuitemNavigateToTheNextData.Click += ToolStripMenuItemNavigateToTheNextData_Click; + menuitemNavigateToTheNextData.MouseEnter += SetStatusbar_Enter; + menuitemNavigateToTheNextData.MouseLeave += ClearStatusbar_Leave; // // menuitemNavigateToTheEnd // - this.menuitemNavigateToTheEnd.AccessibleDescription = "Navigates to the end of the data"; - this.menuitemNavigateToTheEnd.AccessibleName = "Navigates to the end"; - this.menuitemNavigateToTheEnd.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemNavigateToTheEnd.AutoToolTip = true; - this.menuitemNavigateToTheEnd.DoubleClickEnabled = true; - this.menuitemNavigateToTheEnd.Image = global::Planetoid_DB.Properties.Resources.silk_forward_end_green; - this.menuitemNavigateToTheEnd.Name = "menuitemNavigateToTheEnd"; - this.menuitemNavigateToTheEnd.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.E))); - this.menuitemNavigateToTheEnd.Size = new System.Drawing.Size(274, 22); - this.menuitemNavigateToTheEnd.Text = "Navigate to the &end"; - this.menuitemNavigateToTheEnd.Click += new System.EventHandler(this.ToolStripMenuItemNavigateToTheEnd_Click); - this.menuitemNavigateToTheEnd.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemNavigateToTheEnd.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemNavigateToTheEnd.AccessibleDescription = "Navigates to the end of the data"; + menuitemNavigateToTheEnd.AccessibleName = "Navigates to the end"; + menuitemNavigateToTheEnd.AccessibleRole = AccessibleRole.MenuItem; + menuitemNavigateToTheEnd.AutoToolTip = true; + menuitemNavigateToTheEnd.DoubleClickEnabled = true; + menuitemNavigateToTheEnd.Image = Properties.Resources.silk_forward_end_green; + menuitemNavigateToTheEnd.Name = "menuitemNavigateToTheEnd"; + menuitemNavigateToTheEnd.ShortcutKeys = Keys.Alt | Keys.E; + menuitemNavigateToTheEnd.Size = new Size(274, 22); + menuitemNavigateToTheEnd.Text = "Navigate to the &end"; + menuitemNavigateToTheEnd.Click += ToolStripMenuItemNavigateToTheEnd_Click; + menuitemNavigateToTheEnd.MouseEnter += SetStatusbar_Enter; + menuitemNavigateToTheEnd.MouseLeave += ClearStatusbar_Leave; // // menuitemTools // - this.menuitemTools.AccessibleDescription = "Opens the menu \"tools\""; - this.menuitemTools.AccessibleName = "Tools"; - this.menuitemTools.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuPopup; - this.menuitemTools.AutoToolTip = true; - this.menuitemTools.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.menuitemDerivatedOrbitElements, - this.menuitemFilter, - this.toolStripSeparatorTools1, - this.menuitemRecords, - this.toolStripSeparator10, - this.menuitemDistribution, - this.toolStripSeparatorTools2, - this.menuitemDatabaseInformation, - this.menuitemTableMode, - this.menuitemTerminology}); - this.menuitemTools.Name = "menuitemTools"; - this.menuitemTools.Size = new System.Drawing.Size(46, 24); - this.menuitemTools.Text = "&Tools"; - this.menuitemTools.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemTools.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemTools.AccessibleDescription = "Opens the menu \"tools\""; + menuitemTools.AccessibleName = "Tools"; + menuitemTools.AccessibleRole = AccessibleRole.MenuPopup; + menuitemTools.AutoToolTip = true; + menuitemTools.DropDownItems.AddRange(new ToolStripItem[] { menuitemDerivatedOrbitElements, menuitemFilter, toolStripSeparatorTools1, menuitemRecords, toolStripSeparator10, menuitemDistribution, toolStripSeparatorTools2, menuitemDatabaseInformation, menuitemTableMode, menuitemTerminology }); + menuitemTools.Name = "menuitemTools"; + menuitemTools.Size = new Size(46, 24); + menuitemTools.Text = "&Tools"; + menuitemTools.MouseEnter += SetStatusbar_Enter; + menuitemTools.MouseLeave += ClearStatusbar_Leave; // // menuitemDerivatedOrbitElements // - this.menuitemDerivatedOrbitElements.AccessibleDescription = "Calculates derivated orbital elements"; - this.menuitemDerivatedOrbitElements.AccessibleName = "Derivated orbital elements"; - this.menuitemDerivatedOrbitElements.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemDerivatedOrbitElements.AutoToolTip = true; - this.menuitemDerivatedOrbitElements.Image = global::Planetoid_DB.Properties.Resources.silk_arrow_branch; - this.menuitemDerivatedOrbitElements.Name = "menuitemDerivatedOrbitElements"; - this.menuitemDerivatedOrbitElements.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.O))); - this.menuitemDerivatedOrbitElements.Size = new System.Drawing.Size(251, 22); - this.menuitemDerivatedOrbitElements.Text = "Derivated &orbital elements"; - this.menuitemDerivatedOrbitElements.Click += new System.EventHandler(this.ToolStripMenuItemDerivatedOrbitElements_Click); - this.menuitemDerivatedOrbitElements.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemDerivatedOrbitElements.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemDerivatedOrbitElements.AccessibleDescription = "Calculates derivated orbital elements"; + menuitemDerivatedOrbitElements.AccessibleName = "Derivated orbital elements"; + menuitemDerivatedOrbitElements.AccessibleRole = AccessibleRole.MenuItem; + menuitemDerivatedOrbitElements.AutoToolTip = true; + menuitemDerivatedOrbitElements.Image = Properties.Resources.silk_arrow_branch; + menuitemDerivatedOrbitElements.Name = "menuitemDerivatedOrbitElements"; + menuitemDerivatedOrbitElements.ShortcutKeys = Keys.Alt | Keys.O; + menuitemDerivatedOrbitElements.Size = new Size(251, 22); + menuitemDerivatedOrbitElements.Text = "Derivated &orbital elements"; + menuitemDerivatedOrbitElements.Click += ToolStripMenuItemDerivatedOrbitElements_Click; + menuitemDerivatedOrbitElements.MouseEnter += SetStatusbar_Enter; + menuitemDerivatedOrbitElements.MouseLeave += ClearStatusbar_Leave; // // menuitemFilter // - this.menuitemFilter.AccessibleDescription = "Filters the orbital elements in some ranges"; - this.menuitemFilter.AccessibleName = "Filter"; - this.menuitemFilter.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemFilter.AutoToolTip = true; - this.menuitemFilter.Enabled = false; - this.menuitemFilter.Image = global::Planetoid_DB.Properties.Resources.silk_arrow_divide; - this.menuitemFilter.Name = "menuitemFilter"; - this.menuitemFilter.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F))); - this.menuitemFilter.Size = new System.Drawing.Size(251, 22); - this.menuitemFilter.Text = "&Filter"; - this.menuitemFilter.Click += new System.EventHandler(this.ToolStripMenuItemFilter_Click); - this.menuitemFilter.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemFilter.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemFilter.AccessibleDescription = "Filters the orbital elements in some ranges"; + menuitemFilter.AccessibleName = "Filter"; + menuitemFilter.AccessibleRole = AccessibleRole.MenuItem; + menuitemFilter.AutoToolTip = true; + menuitemFilter.Enabled = false; + menuitemFilter.Image = Properties.Resources.silk_arrow_divide; + menuitemFilter.Name = "menuitemFilter"; + menuitemFilter.ShortcutKeys = Keys.Alt | Keys.F; + menuitemFilter.Size = new Size(251, 22); + menuitemFilter.Text = "&Filter"; + menuitemFilter.Click += ToolStripMenuItemFilter_Click; + menuitemFilter.MouseEnter += SetStatusbar_Enter; + menuitemFilter.MouseLeave += ClearStatusbar_Leave; // // toolStripSeparatorTools1 // - this.toolStripSeparatorTools1.AccessibleDescription = "Just a separator"; - this.toolStripSeparatorTools1.AccessibleName = "Just a separator"; - this.toolStripSeparatorTools1.AccessibleRole = System.Windows.Forms.AccessibleRole.Separator; - this.toolStripSeparatorTools1.Name = "toolStripSeparatorTools1"; - this.toolStripSeparatorTools1.Size = new System.Drawing.Size(248, 6); - this.toolStripSeparatorTools1.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripSeparatorTools1.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripSeparatorTools1.AccessibleDescription = "Just a separator"; + toolStripSeparatorTools1.AccessibleName = "Just a separator"; + toolStripSeparatorTools1.AccessibleRole = AccessibleRole.Separator; + toolStripSeparatorTools1.Name = "toolStripSeparatorTools1"; + toolStripSeparatorTools1.Size = new Size(248, 6); + toolStripSeparatorTools1.MouseEnter += SetStatusbar_Enter; + toolStripSeparatorTools1.MouseLeave += ClearStatusbar_Leave; + // + // menuitemRecords + // + menuitemRecords.AccessibleDescription = "Shows some topn ten records"; + menuitemRecords.AccessibleName = "Top ten records"; + menuitemRecords.AccessibleRole = AccessibleRole.MenuItem; + menuitemRecords.AutoToolTip = true; + menuitemRecords.DropDown = contextMenuTopTenRecords; + menuitemRecords.Enabled = false; + menuitemRecords.Image = Properties.Resources.silk_text_list_numbers; + menuitemRecords.Name = "menuitemRecords"; + menuitemRecords.ShortcutKeys = Keys.Alt | Keys.R; + menuitemRecords.Size = new Size(251, 22); + menuitemRecords.Text = "Top ten &records"; + menuitemRecords.Click += MenuitemTopTenRecords_Click; + menuitemRecords.MouseEnter += SetStatusbar_Enter; + menuitemRecords.MouseLeave += ClearStatusbar_Leave; // // toolStripSeparator10 // - this.toolStripSeparator10.AccessibleDescription = "Just a separator"; - this.toolStripSeparator10.AccessibleName = "Just a separator"; - this.toolStripSeparator10.AccessibleRole = System.Windows.Forms.AccessibleRole.Separator; - this.toolStripSeparator10.Name = "toolStripSeparator10"; - this.toolStripSeparator10.Size = new System.Drawing.Size(248, 6); + toolStripSeparator10.AccessibleDescription = "Just a separator"; + toolStripSeparator10.AccessibleName = "Just a separator"; + toolStripSeparator10.AccessibleRole = AccessibleRole.Separator; + toolStripSeparator10.Name = "toolStripSeparator10"; + toolStripSeparator10.Size = new Size(248, 6); + // + // menuitemDistribution + // + menuitemDistribution.AccessibleDescription = "Shows some distributions"; + menuitemDistribution.AccessibleName = "Distributions"; + menuitemDistribution.AccessibleRole = AccessibleRole.MenuItem; + menuitemDistribution.AutoToolTip = true; + menuitemDistribution.DoubleClickEnabled = true; + menuitemDistribution.DropDown = contextMenuDistributions; + menuitemDistribution.Enabled = false; + menuitemDistribution.Image = Properties.Resources.silk_chart_bar; + menuitemDistribution.Name = "menuitemDistribution"; + menuitemDistribution.ShortcutKeys = Keys.Alt | Keys.D; + menuitemDistribution.Size = new Size(251, 22); + menuitemDistribution.Text = "&Distributions"; + menuitemDistribution.Click += MenuitemDistribution_Click; + menuitemDistribution.MouseEnter += SetStatusbar_Enter; + menuitemDistribution.MouseLeave += ClearStatusbar_Leave; // // toolStripSeparatorTools2 // - this.toolStripSeparatorTools2.AccessibleDescription = "Just a separator"; - this.toolStripSeparatorTools2.AccessibleName = "Just a separator"; - this.toolStripSeparatorTools2.AccessibleRole = System.Windows.Forms.AccessibleRole.Separator; - this.toolStripSeparatorTools2.Name = "toolStripSeparatorTools2"; - this.toolStripSeparatorTools2.Size = new System.Drawing.Size(248, 6); - this.toolStripSeparatorTools2.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripSeparatorTools2.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripSeparatorTools2.AccessibleDescription = "Just a separator"; + toolStripSeparatorTools2.AccessibleName = "Just a separator"; + toolStripSeparatorTools2.AccessibleRole = AccessibleRole.Separator; + toolStripSeparatorTools2.Name = "toolStripSeparatorTools2"; + toolStripSeparatorTools2.Size = new Size(248, 6); + toolStripSeparatorTools2.MouseEnter += SetStatusbar_Enter; + toolStripSeparatorTools2.MouseLeave += ClearStatusbar_Leave; // // menuitemDatabaseInformation // - this.menuitemDatabaseInformation.AccessibleDescription = "Shows the information of the MPCORB.DAT databbase"; - this.menuitemDatabaseInformation.AccessibleName = "Database information"; - this.menuitemDatabaseInformation.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemDatabaseInformation.AutoToolTip = true; - this.menuitemDatabaseInformation.DoubleClickEnabled = true; - this.menuitemDatabaseInformation.Image = global::Planetoid_DB.Properties.Resources.silk_database; - this.menuitemDatabaseInformation.Name = "menuitemDatabaseInformation"; - this.menuitemDatabaseInformation.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.I))); - this.menuitemDatabaseInformation.Size = new System.Drawing.Size(251, 22); - this.menuitemDatabaseInformation.Text = "Database &information"; - this.menuitemDatabaseInformation.Click += new System.EventHandler(this.ToolStripMenuItemDatabaseInformation_Click); - this.menuitemDatabaseInformation.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemDatabaseInformation.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemDatabaseInformation.AccessibleDescription = "Shows the information of the MPCORB.DAT databbase"; + menuitemDatabaseInformation.AccessibleName = "Database information"; + menuitemDatabaseInformation.AccessibleRole = AccessibleRole.MenuItem; + menuitemDatabaseInformation.AutoToolTip = true; + menuitemDatabaseInformation.DoubleClickEnabled = true; + menuitemDatabaseInformation.Image = Properties.Resources.silk_database; + menuitemDatabaseInformation.Name = "menuitemDatabaseInformation"; + menuitemDatabaseInformation.ShortcutKeys = Keys.Alt | Keys.I; + menuitemDatabaseInformation.Size = new Size(251, 22); + menuitemDatabaseInformation.Text = "Database &information"; + menuitemDatabaseInformation.Click += ToolStripMenuItemDatabaseInformation_Click; + menuitemDatabaseInformation.MouseEnter += SetStatusbar_Enter; + menuitemDatabaseInformation.MouseLeave += ClearStatusbar_Leave; // // menuitemTableMode // - this.menuitemTableMode.AccessibleDescription = "Activates the table mode"; - this.menuitemTableMode.AccessibleName = "Table mode"; - this.menuitemTableMode.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemTableMode.AutoToolTip = true; - this.menuitemTableMode.DoubleClickEnabled = true; - this.menuitemTableMode.Image = global::Planetoid_DB.Properties.Resources.silk_table; - this.menuitemTableMode.Name = "menuitemTableMode"; - this.menuitemTableMode.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.T))); - this.menuitemTableMode.Size = new System.Drawing.Size(251, 22); - this.menuitemTableMode.Text = "&Table mode"; - this.menuitemTableMode.Click += new System.EventHandler(this.ToolStripMenuItemTableMode_Click); - this.menuitemTableMode.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemTableMode.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemTableMode.AccessibleDescription = "Activates the table mode"; + menuitemTableMode.AccessibleName = "Table mode"; + menuitemTableMode.AccessibleRole = AccessibleRole.MenuItem; + menuitemTableMode.AutoToolTip = true; + menuitemTableMode.DoubleClickEnabled = true; + menuitemTableMode.Image = Properties.Resources.silk_table; + menuitemTableMode.Name = "menuitemTableMode"; + menuitemTableMode.ShortcutKeys = Keys.Alt | Keys.T; + menuitemTableMode.Size = new Size(251, 22); + menuitemTableMode.Text = "&Table mode"; + menuitemTableMode.Click += ToolStripMenuItemTableMode_Click; + menuitemTableMode.MouseEnter += SetStatusbar_Enter; + menuitemTableMode.MouseLeave += ClearStatusbar_Leave; // // menuitemTerminology // - this.menuitemTerminology.AccessibleDescription = "Shows the terminology"; - this.menuitemTerminology.AccessibleName = "Terminology"; - this.menuitemTerminology.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemTerminology.AutoToolTip = true; - this.menuitemTerminology.DoubleClickEnabled = true; - this.menuitemTerminology.Image = global::Planetoid_DB.Properties.Resources.silk_text_list_bullets; - this.menuitemTerminology.Name = "menuitemTerminology"; - this.menuitemTerminology.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.Y))); - this.menuitemTerminology.Size = new System.Drawing.Size(251, 22); - this.menuitemTerminology.Text = "Terminolog&y"; - this.menuitemTerminology.Click += new System.EventHandler(this.ToolStripMenuItemTerminology_Click); - this.menuitemTerminology.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemTerminology.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemTerminology.AccessibleDescription = "Shows the terminology"; + menuitemTerminology.AccessibleName = "Terminology"; + menuitemTerminology.AccessibleRole = AccessibleRole.MenuItem; + menuitemTerminology.AutoToolTip = true; + menuitemTerminology.DoubleClickEnabled = true; + menuitemTerminology.Image = Properties.Resources.silk_text_list_bullets; + menuitemTerminology.Name = "menuitemTerminology"; + menuitemTerminology.ShortcutKeys = Keys.Alt | Keys.Y; + menuitemTerminology.Size = new Size(251, 22); + menuitemTerminology.Text = "Terminolog&y"; + menuitemTerminology.Click += ToolStripMenuItemTerminology_Click; + menuitemTerminology.MouseEnter += SetStatusbar_Enter; + menuitemTerminology.MouseLeave += ClearStatusbar_Leave; // // menuitemUpdate // - this.menuitemUpdate.AccessibleDescription = "Opens the menu \"updates\""; - this.menuitemUpdate.AccessibleName = "Update"; - this.menuitemUpdate.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuPopup; - this.menuitemUpdate.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.menuitemCheckMpcorbDat, - this.menuitemDownloadMpcorbDat}); - this.menuitemUpdate.Name = "menuitemUpdate"; - this.menuitemUpdate.Size = new System.Drawing.Size(57, 24); - this.menuitemUpdate.Text = "&Update"; - this.menuitemUpdate.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemUpdate.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemUpdate.AccessibleDescription = "Opens the menu \"updates\""; + menuitemUpdate.AccessibleName = "Update"; + menuitemUpdate.AccessibleRole = AccessibleRole.MenuPopup; + menuitemUpdate.DropDownItems.AddRange(new ToolStripItem[] { menuitemCheckMpcorbDat, menuitemDownloadMpcorbDat }); + menuitemUpdate.Name = "menuitemUpdate"; + menuitemUpdate.Size = new Size(57, 24); + menuitemUpdate.Text = "&Update"; + menuitemUpdate.MouseEnter += SetStatusbar_Enter; + menuitemUpdate.MouseLeave += ClearStatusbar_Leave; // // menuitemCheckMpcorbDat // - this.menuitemCheckMpcorbDat.AccessibleDescription = "Checks for updates of the database"; - this.menuitemCheckMpcorbDat.AccessibleName = "Check MPCORB.DAT"; - this.menuitemCheckMpcorbDat.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemCheckMpcorbDat.AutoToolTip = true; - this.menuitemCheckMpcorbDat.DoubleClickEnabled = true; - this.menuitemCheckMpcorbDat.Image = global::Planetoid_DB.Properties.Resources.silk_database_lightning; - this.menuitemCheckMpcorbDat.Name = "menuitemCheckMpcorbDat"; - this.menuitemCheckMpcorbDat.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.C))); - this.menuitemCheckMpcorbDat.Size = new System.Drawing.Size(242, 22); - this.menuitemCheckMpcorbDat.Text = "&Check MPCORB.DAT"; - this.menuitemCheckMpcorbDat.Click += new System.EventHandler(this.MenuitemCheckMpcorbDat_Click); - this.menuitemCheckMpcorbDat.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemCheckMpcorbDat.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemCheckMpcorbDat.AccessibleDescription = "Checks for updates of the database"; + menuitemCheckMpcorbDat.AccessibleName = "Check MPCORB.DAT"; + menuitemCheckMpcorbDat.AccessibleRole = AccessibleRole.MenuItem; + menuitemCheckMpcorbDat.AutoToolTip = true; + menuitemCheckMpcorbDat.DoubleClickEnabled = true; + menuitemCheckMpcorbDat.Image = Properties.Resources.silk_database_lightning; + menuitemCheckMpcorbDat.Name = "menuitemCheckMpcorbDat"; + menuitemCheckMpcorbDat.ShortcutKeys = Keys.Alt | Keys.C; + menuitemCheckMpcorbDat.Size = new Size(242, 22); + menuitemCheckMpcorbDat.Text = "&Check MPCORB.DAT"; + menuitemCheckMpcorbDat.Click += MenuitemCheckMpcorbDat_Click; + menuitemCheckMpcorbDat.MouseEnter += SetStatusbar_Enter; + menuitemCheckMpcorbDat.MouseLeave += ClearStatusbar_Leave; // // menuitemDownloadMpcorbDat // - this.menuitemDownloadMpcorbDat.AccessibleDescription = "Downloads the database"; - this.menuitemDownloadMpcorbDat.AccessibleName = "Download MPCORB.DAT"; - this.menuitemDownloadMpcorbDat.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemDownloadMpcorbDat.AutoToolTip = true; - this.menuitemDownloadMpcorbDat.DoubleClickEnabled = true; - this.menuitemDownloadMpcorbDat.Image = global::Planetoid_DB.Properties.Resources.silk_package; - this.menuitemDownloadMpcorbDat.Name = "menuitemDownloadMpcorbDat"; - this.menuitemDownloadMpcorbDat.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.D))); - this.menuitemDownloadMpcorbDat.Size = new System.Drawing.Size(242, 22); - this.menuitemDownloadMpcorbDat.Text = "&Download MPCORB.DAT"; - this.menuitemDownloadMpcorbDat.Click += new System.EventHandler(this.MenuitemDownloadMpcorbDat_Click); - this.menuitemDownloadMpcorbDat.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemDownloadMpcorbDat.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemDownloadMpcorbDat.AccessibleDescription = "Downloads the database"; + menuitemDownloadMpcorbDat.AccessibleName = "Download MPCORB.DAT"; + menuitemDownloadMpcorbDat.AccessibleRole = AccessibleRole.MenuItem; + menuitemDownloadMpcorbDat.AutoToolTip = true; + menuitemDownloadMpcorbDat.DoubleClickEnabled = true; + menuitemDownloadMpcorbDat.Image = Properties.Resources.silk_package; + menuitemDownloadMpcorbDat.Name = "menuitemDownloadMpcorbDat"; + menuitemDownloadMpcorbDat.ShortcutKeys = Keys.Alt | Keys.D; + menuitemDownloadMpcorbDat.Size = new Size(242, 22); + menuitemDownloadMpcorbDat.Text = "&Download MPCORB.DAT"; + menuitemDownloadMpcorbDat.Click += MenuitemDownloadMpcorbDat_Click; + menuitemDownloadMpcorbDat.MouseEnter += SetStatusbar_Enter; + menuitemDownloadMpcorbDat.MouseLeave += ClearStatusbar_Leave; // // menuitemOptions // - this.menuitemOptions.AccessibleDescription = "Opens the menu \"options\""; - this.menuitemOptions.AccessibleName = "Options"; - this.menuitemOptions.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuPopup; - this.menuitemOptions.AutoToolTip = true; - this.menuitemOptions.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.menuitemSettings, - this.menuitemStyle, - this.toolStripSeparatorOptions, - this.menuitemOptionStayOnTop, - this.menuitemOptionEnabledCopyingByDoubleClicking, - this.menuitemOptionEnableLinkingToTerminology}); - this.menuitemOptions.Name = "menuitemOptions"; - this.menuitemOptions.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.O))); - this.menuitemOptions.Size = new System.Drawing.Size(61, 24); - this.menuitemOptions.Text = "&Options"; - this.menuitemOptions.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemOptions.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemOptions.AccessibleDescription = "Opens the menu \"options\""; + menuitemOptions.AccessibleName = "Options"; + menuitemOptions.AccessibleRole = AccessibleRole.MenuPopup; + menuitemOptions.AutoToolTip = true; + menuitemOptions.DropDownItems.AddRange(new ToolStripItem[] { menuitemSettings, menuitemStyle, toolStripSeparatorOptions, menuitemOptionStayOnTop, menuitemOptionEnabledCopyingByDoubleClicking, menuitemOptionEnableLinkingToTerminology }); + menuitemOptions.Name = "menuitemOptions"; + menuitemOptions.ShortcutKeys = Keys.Alt | Keys.O; + menuitemOptions.Size = new Size(61, 24); + menuitemOptions.Text = "&Options"; + menuitemOptions.MouseEnter += SetStatusbar_Enter; + menuitemOptions.MouseLeave += ClearStatusbar_Leave; // // menuitemSettings // - this.menuitemSettings.AccessibleDescription = "Changes the settings"; - this.menuitemSettings.AccessibleName = "settings"; - this.menuitemSettings.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemSettings.AutoToolTip = true; - this.menuitemSettings.Enabled = false; - this.menuitemSettings.Image = global::Planetoid_DB.Properties.Resources.silk_wrench; - this.menuitemSettings.Name = "menuitemSettings"; - this.menuitemSettings.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.S))); - this.menuitemSettings.Size = new System.Drawing.Size(302, 22); - this.menuitemSettings.Text = "&Settings"; - this.menuitemSettings.Click += new System.EventHandler(this.ToolStripMenuItemSettings_Click); - this.menuitemSettings.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemSettings.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemSettings.AccessibleDescription = "Changes the settings"; + menuitemSettings.AccessibleName = "settings"; + menuitemSettings.AccessibleRole = AccessibleRole.MenuItem; + menuitemSettings.AutoToolTip = true; + menuitemSettings.Enabled = false; + menuitemSettings.Image = Properties.Resources.silk_wrench; + menuitemSettings.Name = "menuitemSettings"; + menuitemSettings.ShortcutKeys = Keys.Alt | Keys.S; + menuitemSettings.Size = new Size(302, 22); + menuitemSettings.Text = "&Settings"; + menuitemSettings.Click += ToolStripMenuItemSettings_Click; + menuitemSettings.MouseEnter += SetStatusbar_Enter; + menuitemSettings.MouseLeave += ClearStatusbar_Leave; // // menuitemStyle // - this.menuitemStyle.AccessibleDescription = "Changes the style"; - this.menuitemStyle.AccessibleName = "Look and Feel"; - this.menuitemStyle.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemStyle.AutoToolTip = true; - this.menuitemStyle.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.menuitemIconsetSilk, - this.menuitemIconsetFugue, - this.menuitemIconsetFatcow}); - this.menuitemStyle.Image = global::Planetoid_DB.Properties.Resources.silk_theme; - this.menuitemStyle.Name = "menuitemStyle"; - this.menuitemStyle.ShortcutKeyDisplayString = ""; - this.menuitemStyle.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.L))); - this.menuitemStyle.Size = new System.Drawing.Size(302, 22); - this.menuitemStyle.Text = "&Look and Feel"; - this.menuitemStyle.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemStyle.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemStyle.AccessibleDescription = "Changes the style"; + menuitemStyle.AccessibleName = "Look and Feel"; + menuitemStyle.AccessibleRole = AccessibleRole.MenuItem; + menuitemStyle.AutoToolTip = true; + menuitemStyle.DropDownItems.AddRange(new ToolStripItem[] { menuitemIconsetSilk, menuitemIconsetFugue, menuitemIconsetFatcow }); + menuitemStyle.Image = Properties.Resources.silk_theme; + menuitemStyle.Name = "menuitemStyle"; + menuitemStyle.ShortcutKeyDisplayString = ""; + menuitemStyle.ShortcutKeys = Keys.Alt | Keys.L; + menuitemStyle.Size = new Size(302, 22); + menuitemStyle.Text = "&Look and Feel"; + menuitemStyle.MouseEnter += SetStatusbar_Enter; + menuitemStyle.MouseLeave += ClearStatusbar_Leave; // // menuitemIconsetSilk // - this.menuitemIconsetSilk.AccessibleDescription = "Changes the icon set to Silk icons"; - this.menuitemIconsetSilk.AccessibleName = "Silk icons"; - this.menuitemIconsetSilk.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemIconsetSilk.AutoToolTip = true; - this.menuitemIconsetSilk.Checked = true; - this.menuitemIconsetSilk.CheckOnClick = true; - this.menuitemIconsetSilk.CheckState = System.Windows.Forms.CheckState.Checked; - this.menuitemIconsetSilk.Enabled = false; - this.menuitemIconsetSilk.Name = "menuitemIconsetSilk"; - this.menuitemIconsetSilk.Size = new System.Drawing.Size(143, 22); - this.menuitemIconsetSilk.Text = "Silk icons"; - this.menuitemIconsetSilk.Click += new System.EventHandler(this.ToolStripMenuItemIconsetSilk_Click); - this.menuitemIconsetSilk.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemIconsetSilk.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemIconsetSilk.AccessibleDescription = "Changes the icon set to Silk icons"; + menuitemIconsetSilk.AccessibleName = "Silk icons"; + menuitemIconsetSilk.AccessibleRole = AccessibleRole.MenuItem; + menuitemIconsetSilk.AutoToolTip = true; + menuitemIconsetSilk.Checked = true; + menuitemIconsetSilk.CheckOnClick = true; + menuitemIconsetSilk.CheckState = CheckState.Checked; + menuitemIconsetSilk.Enabled = false; + menuitemIconsetSilk.Name = "menuitemIconsetSilk"; + menuitemIconsetSilk.Size = new Size(143, 22); + menuitemIconsetSilk.Text = "Silk icons"; + menuitemIconsetSilk.Click += ToolStripMenuItemIconsetSilk_Click; + menuitemIconsetSilk.MouseEnter += SetStatusbar_Enter; + menuitemIconsetSilk.MouseLeave += ClearStatusbar_Leave; // // menuitemIconsetFugue // - this.menuitemIconsetFugue.AccessibleDescription = "Changes the icon set to Fugue icons"; - this.menuitemIconsetFugue.AccessibleName = "Fugue icons"; - this.menuitemIconsetFugue.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemIconsetFugue.AutoToolTip = true; - this.menuitemIconsetFugue.CheckOnClick = true; - this.menuitemIconsetFugue.Enabled = false; - this.menuitemIconsetFugue.Name = "menuitemIconsetFugue"; - this.menuitemIconsetFugue.Size = new System.Drawing.Size(143, 22); - this.menuitemIconsetFugue.Text = "Fugue icons"; - this.menuitemIconsetFugue.Click += new System.EventHandler(this.ToolStripMenuItemIconsetFugue_Click); - this.menuitemIconsetFugue.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemIconsetFugue.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemIconsetFugue.AccessibleDescription = "Changes the icon set to Fugue icons"; + menuitemIconsetFugue.AccessibleName = "Fugue icons"; + menuitemIconsetFugue.AccessibleRole = AccessibleRole.MenuItem; + menuitemIconsetFugue.AutoToolTip = true; + menuitemIconsetFugue.CheckOnClick = true; + menuitemIconsetFugue.Enabled = false; + menuitemIconsetFugue.Name = "menuitemIconsetFugue"; + menuitemIconsetFugue.Size = new Size(143, 22); + menuitemIconsetFugue.Text = "Fugue icons"; + menuitemIconsetFugue.Click += ToolStripMenuItemIconsetFugue_Click; + menuitemIconsetFugue.MouseEnter += SetStatusbar_Enter; + menuitemIconsetFugue.MouseLeave += ClearStatusbar_Leave; // // menuitemIconsetFatcow // - this.menuitemIconsetFatcow.AccessibleDescription = "Changes the icon set to Fatcow icons"; - this.menuitemIconsetFatcow.AccessibleName = "Fatcow icons"; - this.menuitemIconsetFatcow.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemIconsetFatcow.AutoToolTip = true; - this.menuitemIconsetFatcow.CheckOnClick = true; - this.menuitemIconsetFatcow.Enabled = false; - this.menuitemIconsetFatcow.Name = "menuitemIconsetFatcow"; - this.menuitemIconsetFatcow.Size = new System.Drawing.Size(143, 22); - this.menuitemIconsetFatcow.Text = "Fatcow icons"; - this.menuitemIconsetFatcow.Click += new System.EventHandler(this.ToolStripMenuItemIconsetFatcow_Click); - this.menuitemIconsetFatcow.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemIconsetFatcow.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemIconsetFatcow.AccessibleDescription = "Changes the icon set to Fatcow icons"; + menuitemIconsetFatcow.AccessibleName = "Fatcow icons"; + menuitemIconsetFatcow.AccessibleRole = AccessibleRole.MenuItem; + menuitemIconsetFatcow.AutoToolTip = true; + menuitemIconsetFatcow.CheckOnClick = true; + menuitemIconsetFatcow.Enabled = false; + menuitemIconsetFatcow.Name = "menuitemIconsetFatcow"; + menuitemIconsetFatcow.Size = new Size(143, 22); + menuitemIconsetFatcow.Text = "Fatcow icons"; + menuitemIconsetFatcow.Click += ToolStripMenuItemIconsetFatcow_Click; + menuitemIconsetFatcow.MouseEnter += SetStatusbar_Enter; + menuitemIconsetFatcow.MouseLeave += ClearStatusbar_Leave; // // toolStripSeparatorOptions // - this.toolStripSeparatorOptions.AccessibleDescription = "Just a separator"; - this.toolStripSeparatorOptions.AccessibleName = "Just a separator"; - this.toolStripSeparatorOptions.AccessibleRole = System.Windows.Forms.AccessibleRole.Separator; - this.toolStripSeparatorOptions.Name = "toolStripSeparatorOptions"; - this.toolStripSeparatorOptions.Size = new System.Drawing.Size(299, 6); - this.toolStripSeparatorOptions.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripSeparatorOptions.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripSeparatorOptions.AccessibleDescription = "Just a separator"; + toolStripSeparatorOptions.AccessibleName = "Just a separator"; + toolStripSeparatorOptions.AccessibleRole = AccessibleRole.Separator; + toolStripSeparatorOptions.Name = "toolStripSeparatorOptions"; + toolStripSeparatorOptions.Size = new Size(299, 6); + toolStripSeparatorOptions.MouseEnter += SetStatusbar_Enter; + toolStripSeparatorOptions.MouseLeave += ClearStatusbar_Leave; // // menuitemOptionStayOnTop // - this.menuitemOptionStayOnTop.AccessibleDescription = "Stays the application always on top"; - this.menuitemOptionStayOnTop.AccessibleName = "Stays always on top"; - this.menuitemOptionStayOnTop.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemOptionStayOnTop.AutoToolTip = true; - this.menuitemOptionStayOnTop.CheckOnClick = true; - this.menuitemOptionStayOnTop.Name = "menuitemOptionStayOnTop"; - this.menuitemOptionStayOnTop.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.T))); - this.menuitemOptionStayOnTop.Size = new System.Drawing.Size(302, 22); - this.menuitemOptionStayOnTop.Text = "Stay always on &top"; - this.menuitemOptionStayOnTop.Click += new System.EventHandler(this.ToolStripMenuItemStayOnTop_Click); - this.menuitemOptionStayOnTop.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemOptionStayOnTop.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemOptionStayOnTop.AccessibleDescription = "Stays the application always on top"; + menuitemOptionStayOnTop.AccessibleName = "Stays always on top"; + menuitemOptionStayOnTop.AccessibleRole = AccessibleRole.MenuItem; + menuitemOptionStayOnTop.AutoToolTip = true; + menuitemOptionStayOnTop.CheckOnClick = true; + menuitemOptionStayOnTop.Name = "menuitemOptionStayOnTop"; + menuitemOptionStayOnTop.ShortcutKeys = Keys.Alt | Keys.T; + menuitemOptionStayOnTop.Size = new Size(302, 22); + menuitemOptionStayOnTop.Text = "Stay always on &top"; + menuitemOptionStayOnTop.Click += ToolStripMenuItemStayOnTop_Click; + menuitemOptionStayOnTop.MouseEnter += SetStatusbar_Enter; + menuitemOptionStayOnTop.MouseLeave += ClearStatusbar_Leave; // // menuitemOptionEnabledCopyingByDoubleClicking // - this.menuitemOptionEnabledCopyingByDoubleClicking.AccessibleDescription = "Enableds copying data to the clipboard by double-clicking"; - this.menuitemOptionEnabledCopyingByDoubleClicking.AccessibleName = "Enableds copying by double-clicking"; - this.menuitemOptionEnabledCopyingByDoubleClicking.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemOptionEnabledCopyingByDoubleClicking.AutoToolTip = true; - this.menuitemOptionEnabledCopyingByDoubleClicking.Checked = true; - this.menuitemOptionEnabledCopyingByDoubleClicking.CheckOnClick = true; - this.menuitemOptionEnabledCopyingByDoubleClicking.CheckState = System.Windows.Forms.CheckState.Checked; - this.menuitemOptionEnabledCopyingByDoubleClicking.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.menuitemOptionEnabledCopyingByDoubleClicking.Name = "menuitemOptionEnabledCopyingByDoubleClicking"; - this.menuitemOptionEnabledCopyingByDoubleClicking.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.C))); - this.menuitemOptionEnabledCopyingByDoubleClicking.Size = new System.Drawing.Size(302, 22); - this.menuitemOptionEnabledCopyingByDoubleClicking.Text = "Enabled ©ing by double-clicking"; - this.menuitemOptionEnabledCopyingByDoubleClicking.Click += new System.EventHandler(this.ToolStripMenuItemEnableCopyingByDoubleClicking_Click); - this.menuitemOptionEnabledCopyingByDoubleClicking.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemOptionEnabledCopyingByDoubleClicking.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemOptionEnabledCopyingByDoubleClicking.AccessibleDescription = "Enableds copying data to the clipboard by double-clicking"; + menuitemOptionEnabledCopyingByDoubleClicking.AccessibleName = "Enableds copying by double-clicking"; + menuitemOptionEnabledCopyingByDoubleClicking.AccessibleRole = AccessibleRole.MenuItem; + menuitemOptionEnabledCopyingByDoubleClicking.AutoToolTip = true; + menuitemOptionEnabledCopyingByDoubleClicking.Checked = true; + menuitemOptionEnabledCopyingByDoubleClicking.CheckOnClick = true; + menuitemOptionEnabledCopyingByDoubleClicking.CheckState = CheckState.Checked; + menuitemOptionEnabledCopyingByDoubleClicking.Font = new Font("Segoe UI", 9F, FontStyle.Regular, GraphicsUnit.Point); + menuitemOptionEnabledCopyingByDoubleClicking.Name = "menuitemOptionEnabledCopyingByDoubleClicking"; + menuitemOptionEnabledCopyingByDoubleClicking.ShortcutKeys = Keys.Alt | Keys.C; + menuitemOptionEnabledCopyingByDoubleClicking.Size = new Size(302, 22); + menuitemOptionEnabledCopyingByDoubleClicking.Text = "Enabled ©ing by double-clicking"; + menuitemOptionEnabledCopyingByDoubleClicking.Click += ToolStripMenuItemEnableCopyingByDoubleClicking_Click; + menuitemOptionEnabledCopyingByDoubleClicking.MouseEnter += SetStatusbar_Enter; + menuitemOptionEnabledCopyingByDoubleClicking.MouseLeave += ClearStatusbar_Leave; // // menuitemOptionEnableLinkingToTerminology // - this.menuitemOptionEnableLinkingToTerminology.AccessibleDescription = "Enables linking to terminology"; - this.menuitemOptionEnableLinkingToTerminology.AccessibleName = "Enables linking to terminology"; - this.menuitemOptionEnableLinkingToTerminology.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemOptionEnableLinkingToTerminology.AutoToolTip = true; - this.menuitemOptionEnableLinkingToTerminology.Checked = true; - this.menuitemOptionEnableLinkingToTerminology.CheckOnClick = true; - this.menuitemOptionEnableLinkingToTerminology.CheckState = System.Windows.Forms.CheckState.Checked; - this.menuitemOptionEnableLinkingToTerminology.Enabled = false; - this.menuitemOptionEnableLinkingToTerminology.Name = "menuitemOptionEnableLinkingToTerminology"; - this.menuitemOptionEnableLinkingToTerminology.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.Y))); - this.menuitemOptionEnableLinkingToTerminology.Size = new System.Drawing.Size(302, 22); - this.menuitemOptionEnableLinkingToTerminology.Text = "Enable linking to terminolog&y"; - this.menuitemOptionEnableLinkingToTerminology.Click += new System.EventHandler(this.ToolStripMenuItemEnableLinkingToTerminology_Click); - this.menuitemOptionEnableLinkingToTerminology.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemOptionEnableLinkingToTerminology.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemOptionEnableLinkingToTerminology.AccessibleDescription = "Enables linking to terminology"; + menuitemOptionEnableLinkingToTerminology.AccessibleName = "Enables linking to terminology"; + menuitemOptionEnableLinkingToTerminology.AccessibleRole = AccessibleRole.MenuItem; + menuitemOptionEnableLinkingToTerminology.AutoToolTip = true; + menuitemOptionEnableLinkingToTerminology.Checked = true; + menuitemOptionEnableLinkingToTerminology.CheckOnClick = true; + menuitemOptionEnableLinkingToTerminology.CheckState = CheckState.Checked; + menuitemOptionEnableLinkingToTerminology.Enabled = false; + menuitemOptionEnableLinkingToTerminology.Name = "menuitemOptionEnableLinkingToTerminology"; + menuitemOptionEnableLinkingToTerminology.ShortcutKeys = Keys.Alt | Keys.Y; + menuitemOptionEnableLinkingToTerminology.Size = new Size(302, 22); + menuitemOptionEnableLinkingToTerminology.Text = "Enable linking to terminolog&y"; + menuitemOptionEnableLinkingToTerminology.Click += ToolStripMenuItemEnableLinkingToTerminology_Click; + menuitemOptionEnableLinkingToTerminology.MouseEnter += SetStatusbar_Enter; + menuitemOptionEnableLinkingToTerminology.MouseLeave += ClearStatusbar_Leave; // // menuitemHelp // - this.menuitemHelp.AccessibleDescription = "Opens the menu \"help\""; - this.menuitemHelp.AccessibleName = "Help"; - this.menuitemHelp.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuPopup; - this.menuitemHelp.AutoToolTip = true; - this.menuitemHelp.DoubleClickEnabled = true; - this.menuitemHelp.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.menuitemAbout, - this.toolStripSeparatorMisc1, - this.menuitemOpenWebsitePDB, - this.menuitemOpenWebsiteMPC, - this.menuitemOpenMPCORBWebsite}); - this.menuitemHelp.Name = "menuitemHelp"; - this.menuitemHelp.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.H))); - this.menuitemHelp.Size = new System.Drawing.Size(44, 24); - this.menuitemHelp.Text = "&Help"; - this.menuitemHelp.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemHelp.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemHelp.AccessibleDescription = "Opens the menu \"help\""; + menuitemHelp.AccessibleName = "Help"; + menuitemHelp.AccessibleRole = AccessibleRole.MenuPopup; + menuitemHelp.AutoToolTip = true; + menuitemHelp.DoubleClickEnabled = true; + menuitemHelp.DropDownItems.AddRange(new ToolStripItem[] { menuitemAbout, toolStripSeparatorMisc1, menuitemOpenWebsitePDB, menuitemOpenWebsiteMPC, menuitemOpenMPCORBWebsite }); + menuitemHelp.Name = "menuitemHelp"; + menuitemHelp.ShortcutKeys = Keys.Alt | Keys.H; + menuitemHelp.Size = new Size(44, 24); + menuitemHelp.Text = "&Help"; + menuitemHelp.MouseEnter += SetStatusbar_Enter; + menuitemHelp.MouseLeave += ClearStatusbar_Leave; // // menuitemAbout // - this.menuitemAbout.AccessibleDescription = "More information about the application"; - this.menuitemAbout.AccessibleName = "About"; - this.menuitemAbout.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemAbout.AutoToolTip = true; - this.menuitemAbout.DoubleClickEnabled = true; - this.menuitemAbout.Image = global::Planetoid_DB.Properties.Resources.silk_information; - this.menuitemAbout.Name = "menuitemAbout"; - this.menuitemAbout.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.A))); - this.menuitemAbout.Size = new System.Drawing.Size(236, 22); - this.menuitemAbout.Text = "&About"; - this.menuitemAbout.ToolTipText = "More information about the application"; - this.menuitemAbout.Click += new System.EventHandler(this.MenuitemAbout_Click); - this.menuitemAbout.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemAbout.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemAbout.AccessibleDescription = "More information about the application"; + menuitemAbout.AccessibleName = "About"; + menuitemAbout.AccessibleRole = AccessibleRole.MenuItem; + menuitemAbout.AutoToolTip = true; + menuitemAbout.DoubleClickEnabled = true; + menuitemAbout.Image = Properties.Resources.silk_information; + menuitemAbout.Name = "menuitemAbout"; + menuitemAbout.ShortcutKeys = Keys.Alt | Keys.A; + menuitemAbout.Size = new Size(236, 22); + menuitemAbout.Text = "&About"; + menuitemAbout.ToolTipText = "More information about the application"; + menuitemAbout.Click += MenuitemAbout_Click; + menuitemAbout.MouseEnter += SetStatusbar_Enter; + menuitemAbout.MouseLeave += ClearStatusbar_Leave; // // toolStripSeparatorMisc1 // - this.toolStripSeparatorMisc1.AccessibleDescription = "Just a separator"; - this.toolStripSeparatorMisc1.AccessibleName = "Just a separator"; - this.toolStripSeparatorMisc1.AccessibleRole = System.Windows.Forms.AccessibleRole.Separator; - this.toolStripSeparatorMisc1.Name = "toolStripSeparatorMisc1"; - this.toolStripSeparatorMisc1.Size = new System.Drawing.Size(233, 6); - this.toolStripSeparatorMisc1.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripSeparatorMisc1.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripSeparatorMisc1.AccessibleDescription = "Just a separator"; + toolStripSeparatorMisc1.AccessibleName = "Just a separator"; + toolStripSeparatorMisc1.AccessibleRole = AccessibleRole.Separator; + toolStripSeparatorMisc1.Name = "toolStripSeparatorMisc1"; + toolStripSeparatorMisc1.Size = new Size(233, 6); + toolStripSeparatorMisc1.MouseEnter += SetStatusbar_Enter; + toolStripSeparatorMisc1.MouseLeave += ClearStatusbar_Leave; // // menuitemOpenWebsitePDB // - this.menuitemOpenWebsitePDB.AccessibleDescription = "Opens the Planetoid-DB homepage"; - this.menuitemOpenWebsitePDB.AccessibleName = "Opens Planetoid-DB homepage"; - this.menuitemOpenWebsitePDB.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemOpenWebsitePDB.AutoToolTip = true; - this.menuitemOpenWebsitePDB.DoubleClickEnabled = true; - this.menuitemOpenWebsitePDB.Image = global::Planetoid_DB.Properties.Resources.silk_house; - this.menuitemOpenWebsitePDB.Name = "menuitemOpenWebsitePDB"; - this.menuitemOpenWebsitePDB.Size = new System.Drawing.Size(236, 22); - this.menuitemOpenWebsitePDB.Text = "Open Planetoid-DB homepage"; - this.menuitemOpenWebsitePDB.ToolTipText = "Opens the Planetoid-DB homepage"; - this.menuitemOpenWebsitePDB.Click += new System.EventHandler(this.MenuitemOpenWebsitePDB_Click); - this.menuitemOpenWebsitePDB.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemOpenWebsitePDB.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemOpenWebsitePDB.AccessibleDescription = "Opens the Planetoid-DB homepage"; + menuitemOpenWebsitePDB.AccessibleName = "Opens Planetoid-DB homepage"; + menuitemOpenWebsitePDB.AccessibleRole = AccessibleRole.MenuItem; + menuitemOpenWebsitePDB.AutoToolTip = true; + menuitemOpenWebsitePDB.DoubleClickEnabled = true; + menuitemOpenWebsitePDB.Image = Properties.Resources.silk_house; + menuitemOpenWebsitePDB.Name = "menuitemOpenWebsitePDB"; + menuitemOpenWebsitePDB.Size = new Size(236, 22); + menuitemOpenWebsitePDB.Text = "Open Planetoid-DB homepage"; + menuitemOpenWebsitePDB.ToolTipText = "Opens the Planetoid-DB homepage"; + menuitemOpenWebsitePDB.Click += MenuitemOpenWebsitePDB_Click; + menuitemOpenWebsitePDB.MouseEnter += SetStatusbar_Enter; + menuitemOpenWebsitePDB.MouseLeave += ClearStatusbar_Leave; // // menuitemOpenWebsiteMPC // - this.menuitemOpenWebsiteMPC.AccessibleDescription = "Opens the MPC homepage"; - this.menuitemOpenWebsiteMPC.AccessibleName = "Opens MPC homepage"; - this.menuitemOpenWebsiteMPC.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemOpenWebsiteMPC.AutoToolTip = true; - this.menuitemOpenWebsiteMPC.DoubleClickEnabled = true; - this.menuitemOpenWebsiteMPC.Image = global::Planetoid_DB.Properties.Resources.silk_world; - this.menuitemOpenWebsiteMPC.Name = "menuitemOpenWebsiteMPC"; - this.menuitemOpenWebsiteMPC.Size = new System.Drawing.Size(236, 22); - this.menuitemOpenWebsiteMPC.Text = "Open MPC homepage"; - this.menuitemOpenWebsiteMPC.ToolTipText = "Opens the MPC homepage"; - this.menuitemOpenWebsiteMPC.Click += new System.EventHandler(this.MenuitemOpenWebsiteMPC_Click); - this.menuitemOpenWebsiteMPC.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemOpenWebsiteMPC.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemOpenWebsiteMPC.AccessibleDescription = "Opens the MPC homepage"; + menuitemOpenWebsiteMPC.AccessibleName = "Opens MPC homepage"; + menuitemOpenWebsiteMPC.AccessibleRole = AccessibleRole.MenuItem; + menuitemOpenWebsiteMPC.AutoToolTip = true; + menuitemOpenWebsiteMPC.DoubleClickEnabled = true; + menuitemOpenWebsiteMPC.Image = Properties.Resources.silk_world; + menuitemOpenWebsiteMPC.Name = "menuitemOpenWebsiteMPC"; + menuitemOpenWebsiteMPC.Size = new Size(236, 22); + menuitemOpenWebsiteMPC.Text = "Open MPC homepage"; + menuitemOpenWebsiteMPC.ToolTipText = "Opens the MPC homepage"; + menuitemOpenWebsiteMPC.Click += MenuitemOpenWebsiteMPC_Click; + menuitemOpenWebsiteMPC.MouseEnter += SetStatusbar_Enter; + menuitemOpenWebsiteMPC.MouseLeave += ClearStatusbar_Leave; // // menuitemOpenMPCORBWebsite // - this.menuitemOpenMPCORBWebsite.AccessibleDescription = "Opens the MPCORB website"; - this.menuitemOpenMPCORBWebsite.AccessibleName = "Opens MPCORB homepage"; - this.menuitemOpenMPCORBWebsite.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemOpenMPCORBWebsite.AutoToolTip = true; - this.menuitemOpenMPCORBWebsite.DoubleClickEnabled = true; - this.menuitemOpenMPCORBWebsite.Image = global::Planetoid_DB.Properties.Resources.silk_world; - this.menuitemOpenMPCORBWebsite.Name = "menuitemOpenMPCORBWebsite"; - this.menuitemOpenMPCORBWebsite.Size = new System.Drawing.Size(236, 22); - this.menuitemOpenMPCORBWebsite.Text = "Open MPCORB website"; - this.menuitemOpenMPCORBWebsite.ToolTipText = "Opens the MPCORB website"; - this.menuitemOpenMPCORBWebsite.Click += new System.EventHandler(this.MenuitemOpenMPCORBWebsite_Click); - this.menuitemOpenMPCORBWebsite.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemOpenMPCORBWebsite.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemOpenMPCORBWebsite.AccessibleDescription = "Opens the MPCORB website"; + menuitemOpenMPCORBWebsite.AccessibleName = "Opens MPCORB homepage"; + menuitemOpenMPCORBWebsite.AccessibleRole = AccessibleRole.MenuItem; + menuitemOpenMPCORBWebsite.AutoToolTip = true; + menuitemOpenMPCORBWebsite.DoubleClickEnabled = true; + menuitemOpenMPCORBWebsite.Image = Properties.Resources.silk_world; + menuitemOpenMPCORBWebsite.Name = "menuitemOpenMPCORBWebsite"; + menuitemOpenMPCORBWebsite.Size = new Size(236, 22); + menuitemOpenMPCORBWebsite.Text = "Open MPCORB website"; + menuitemOpenMPCORBWebsite.ToolTipText = "Opens the MPCORB website"; + menuitemOpenMPCORBWebsite.Click += MenuitemOpenMPCORBWebsite_Click; + menuitemOpenMPCORBWebsite.MouseEnter += SetStatusbar_Enter; + menuitemOpenMPCORBWebsite.MouseLeave += ClearStatusbar_Leave; // // toolStripContainer // - this.toolStripContainer.AccessibleDescription = "Container"; - this.toolStripContainer.AccessibleName = "Container"; - this.toolStripContainer.AccessibleRole = System.Windows.Forms.AccessibleRole.Pane; + toolStripContainer.AccessibleDescription = "Container"; + toolStripContainer.AccessibleName = "Container"; + toolStripContainer.AccessibleRole = AccessibleRole.Pane; // // toolStripContainer.BottomToolStripPanel // - this.toolStripContainer.BottomToolStripPanel.AccessibleDescription = "Lower part of the control panel"; - this.toolStripContainer.BottomToolStripPanel.AccessibleName = "Lower part of the control panel"; - this.toolStripContainer.BottomToolStripPanel.AccessibleRole = System.Windows.Forms.AccessibleRole.Pane; - this.toolStripContainer.BottomToolStripPanel.Controls.Add(this.statusBar); + toolStripContainer.BottomToolStripPanel.AccessibleDescription = "Lower part of the control panel"; + toolStripContainer.BottomToolStripPanel.AccessibleName = "Lower part of the control panel"; + toolStripContainer.BottomToolStripPanel.AccessibleRole = AccessibleRole.Pane; + toolStripContainer.BottomToolStripPanel.Controls.Add(statusBar); // // toolStripContainer.ContentPanel // - this.toolStripContainer.ContentPanel.AccessibleDescription = "Group the controls"; - this.toolStripContainer.ContentPanel.AccessibleName = "Container Panel"; - this.toolStripContainer.ContentPanel.AccessibleRole = System.Windows.Forms.AccessibleRole.Pane; - this.toolStripContainer.ContentPanel.AutoScroll = true; - this.toolStripContainer.ContentPanel.BackColor = System.Drawing.Color.Transparent; - this.toolStripContainer.ContentPanel.Controls.Add(this.tableLayoutPanelData); - this.toolStripContainer.ContentPanel.RenderMode = System.Windows.Forms.ToolStripRenderMode.ManagerRenderMode; - this.toolStripContainer.ContentPanel.Size = new System.Drawing.Size(804, 290); - this.toolStripContainer.Dock = System.Windows.Forms.DockStyle.Fill; + toolStripContainer.ContentPanel.AccessibleDescription = "Group the controls"; + toolStripContainer.ContentPanel.AccessibleName = "Container Panel"; + toolStripContainer.ContentPanel.AccessibleRole = AccessibleRole.Pane; + toolStripContainer.ContentPanel.AutoScroll = true; + toolStripContainer.ContentPanel.BackColor = Color.Transparent; + toolStripContainer.ContentPanel.Controls.Add(tableLayoutPanelData); + toolStripContainer.ContentPanel.RenderMode = ToolStripRenderMode.ManagerRenderMode; + toolStripContainer.ContentPanel.Size = new Size(804, 290); + toolStripContainer.Dock = DockStyle.Fill; // // toolStripContainer.LeftToolStripPanel // - this.toolStripContainer.LeftToolStripPanel.AccessibleDescription = "Left part of the container panel"; - this.toolStripContainer.LeftToolStripPanel.AccessibleName = "Left part of the container panel"; - this.toolStripContainer.LeftToolStripPanel.AccessibleRole = System.Windows.Forms.AccessibleRole.Pane; - this.toolStripContainer.Location = new System.Drawing.Point(0, 0); - this.toolStripContainer.Name = "toolStripContainer"; + toolStripContainer.LeftToolStripPanel.AccessibleDescription = "Left part of the container panel"; + toolStripContainer.LeftToolStripPanel.AccessibleName = "Left part of the container panel"; + toolStripContainer.LeftToolStripPanel.AccessibleRole = AccessibleRole.Pane; + toolStripContainer.Location = new Point(0, 0); + toolStripContainer.Name = "toolStripContainer"; // // toolStripContainer.RightToolStripPanel // - this.toolStripContainer.RightToolStripPanel.AccessibleDescription = "Right part of the container panel"; - this.toolStripContainer.RightToolStripPanel.AccessibleName = "Right part of the container panel"; - this.toolStripContainer.RightToolStripPanel.AccessibleRole = System.Windows.Forms.AccessibleRole.Pane; - this.toolStripContainer.Size = new System.Drawing.Size(804, 386); - this.toolStripContainer.TabIndex = 16; - this.toolTip.SetToolTip(this.toolStripContainer, "container"); + toolStripContainer.RightToolStripPanel.AccessibleDescription = "Right part of the container panel"; + toolStripContainer.RightToolStripPanel.AccessibleName = "Right part of the container panel"; + toolStripContainer.RightToolStripPanel.AccessibleRole = AccessibleRole.Pane; + toolStripContainer.Size = new Size(804, 386); + toolStripContainer.TabIndex = 16; + toolTip.SetToolTip(toolStripContainer, "container"); // // toolStripContainer.TopToolStripPanel // - this.toolStripContainer.TopToolStripPanel.AccessibleDescription = "Upper part of the container panel"; - this.toolStripContainer.TopToolStripPanel.AccessibleName = "Upper part of the container panel"; - this.toolStripContainer.TopToolStripPanel.AccessibleRole = System.Windows.Forms.AccessibleRole.Pane; - this.toolStripContainer.TopToolStripPanel.Controls.Add(this.menu); - this.toolStripContainer.TopToolStripPanel.Controls.Add(this.toolStripIcons); - this.toolStripContainer.TopToolStripPanel.Controls.Add(this.toolStripNavigation); + toolStripContainer.TopToolStripPanel.AccessibleDescription = "Upper part of the container panel"; + toolStripContainer.TopToolStripPanel.AccessibleName = "Upper part of the container panel"; + toolStripContainer.TopToolStripPanel.AccessibleRole = AccessibleRole.Pane; + toolStripContainer.TopToolStripPanel.Controls.Add(menu); + toolStripContainer.TopToolStripPanel.Controls.Add(toolStripIcons); + toolStripContainer.TopToolStripPanel.Controls.Add(toolStripNavigation); // // statusBar // - this.statusBar.AccessibleDescription = "Shows some information"; - this.statusBar.AccessibleName = "Status bar of some information"; - this.statusBar.AccessibleRole = System.Windows.Forms.AccessibleRole.StatusBar; - this.statusBar.Dock = System.Windows.Forms.DockStyle.None; - this.statusBar.Font = new System.Drawing.Font("Segoe UI", 9F); - this.statusBar.GripStyle = System.Windows.Forms.ToolStripGripStyle.Visible; - this.statusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.toolStripStatusLabelUpdate, - this.toolStripStatusLabelBackgroundDownload, - this.toolStripProgressBarBackgroundDownload, - this.toolStripStatusLabelCancelBackgroundDownload, - this.labelInformation}); - this.statusBar.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.Flow; - this.statusBar.Location = new System.Drawing.Point(0, 0); - this.statusBar.Name = "statusBar"; - this.statusBar.ProgressBars = null; - this.statusBar.RenderMode = System.Windows.Forms.ToolStripRenderMode.ManagerRenderMode; - this.statusBar.ShowItemToolTips = true; - this.statusBar.Size = new System.Drawing.Size(804, 22); - this.statusBar.SizingGrip = false; - this.statusBar.TabIndex = 0; - this.statusBar.TabStop = true; - this.statusBar.Text = "statusStrip"; + statusBar.AccessibleDescription = "Shows some information"; + statusBar.AccessibleName = "Status bar of some information"; + statusBar.AccessibleRole = AccessibleRole.StatusBar; + statusBar.Dock = DockStyle.None; + statusBar.Font = new Font("Segoe UI", 9F, FontStyle.Regular, GraphicsUnit.Point); + statusBar.GripStyle = ToolStripGripStyle.Visible; + statusBar.Items.AddRange(new ToolStripItem[] { toolStripStatusLabelUpdate, toolStripStatusLabelBackgroundDownload, toolStripProgressBarBackgroundDownload, toolStripStatusLabelCancelBackgroundDownload, labelInformation }); + statusBar.LayoutStyle = ToolStripLayoutStyle.Flow; + statusBar.Location = new Point(0, 0); + statusBar.Name = "statusBar"; + statusBar.ProgressBars = null; + statusBar.RenderMode = ToolStripRenderMode.ManagerRenderMode; + statusBar.ShowItemToolTips = true; + statusBar.Size = new Size(804, 22); + statusBar.SizingGrip = false; + statusBar.TabIndex = 0; + statusBar.TabStop = true; + statusBar.Text = "statusStrip"; // // toolStripStatusLabelUpdate // - this.toolStripStatusLabelUpdate.AccessibleDescription = "Shows that an MPCORB.DAT update is aviable"; - this.toolStripStatusLabelUpdate.AccessibleName = "Update information"; - this.toolStripStatusLabelUpdate.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.toolStripStatusLabelUpdate.AutoToolTip = true; - this.toolStripStatusLabelUpdate.Image = global::Planetoid_DB.Properties.Resources.silk_database_lightning; - this.toolStripStatusLabelUpdate.IsLink = true; - this.toolStripStatusLabelUpdate.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline; - this.toolStripStatusLabelUpdate.LinkColor = System.Drawing.SystemColors.ControlText; - this.toolStripStatusLabelUpdate.Margin = new System.Windows.Forms.Padding(5, 3, 0, 2); - this.toolStripStatusLabelUpdate.Name = "toolStripStatusLabelUpdate"; - this.toolStripStatusLabelUpdate.Size = new System.Drawing.Size(185, 16); - this.toolStripStatusLabelUpdate.Text = "MPCORB.DAT update available"; - this.toolStripStatusLabelUpdate.ToolTipText = "MPCORB.DAT update aviable"; - this.toolStripStatusLabelUpdate.Click += new System.EventHandler(this.ToolStripStatusLabelUpdate_Click); - this.toolStripStatusLabelUpdate.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripStatusLabelUpdate.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripStatusLabelUpdate.AccessibleDescription = "Shows that an MPCORB.DAT update is aviable"; + toolStripStatusLabelUpdate.AccessibleName = "Update information"; + toolStripStatusLabelUpdate.AccessibleRole = AccessibleRole.StaticText; + toolStripStatusLabelUpdate.AutoToolTip = true; + toolStripStatusLabelUpdate.Image = Properties.Resources.silk_database_lightning; + toolStripStatusLabelUpdate.IsLink = true; + toolStripStatusLabelUpdate.LinkBehavior = LinkBehavior.HoverUnderline; + toolStripStatusLabelUpdate.LinkColor = SystemColors.ControlText; + toolStripStatusLabelUpdate.Margin = new Padding(5, 3, 0, 2); + toolStripStatusLabelUpdate.Name = "toolStripStatusLabelUpdate"; + toolStripStatusLabelUpdate.Size = new Size(185, 16); + toolStripStatusLabelUpdate.Text = "MPCORB.DAT update available"; + toolStripStatusLabelUpdate.ToolTipText = "MPCORB.DAT update aviable"; + toolStripStatusLabelUpdate.Click += ToolStripStatusLabelUpdate_Click; + toolStripStatusLabelUpdate.MouseEnter += SetStatusbar_Enter; + toolStripStatusLabelUpdate.MouseLeave += ClearStatusbar_Leave; // // toolStripStatusLabelBackgroundDownload // - this.toolStripStatusLabelBackgroundDownload.AccessibleDescription = "Shows the download progres"; - this.toolStripStatusLabelBackgroundDownload.AccessibleName = "Download progress"; - this.toolStripStatusLabelBackgroundDownload.AccessibleRole = System.Windows.Forms.AccessibleRole.StatusBar; - this.toolStripStatusLabelBackgroundDownload.AutoToolTip = true; - this.toolStripStatusLabelBackgroundDownload.Image = global::Planetoid_DB.Properties.Resources.silk_package_go; - this.toolStripStatusLabelBackgroundDownload.Margin = new System.Windows.Forms.Padding(5, 3, 0, 2); - this.toolStripStatusLabelBackgroundDownload.Name = "toolStripStatusLabelBackgroundDownload"; - this.toolStripStatusLabelBackgroundDownload.Size = new System.Drawing.Size(80, 16); - this.toolStripStatusLabelBackgroundDownload.Text = "Download:"; - this.toolStripStatusLabelBackgroundDownload.ToolTipText = "Show the download progres"; - this.toolStripStatusLabelBackgroundDownload.DoubleClick += new System.EventHandler(this.EasterEgg_DoubleClick); - this.toolStripStatusLabelBackgroundDownload.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripStatusLabelBackgroundDownload.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripStatusLabelBackgroundDownload.AccessibleDescription = "Shows the download progres"; + toolStripStatusLabelBackgroundDownload.AccessibleName = "Download progress"; + toolStripStatusLabelBackgroundDownload.AccessibleRole = AccessibleRole.StatusBar; + toolStripStatusLabelBackgroundDownload.AutoToolTip = true; + toolStripStatusLabelBackgroundDownload.Image = Properties.Resources.silk_package_go; + toolStripStatusLabelBackgroundDownload.Margin = new Padding(5, 3, 0, 2); + toolStripStatusLabelBackgroundDownload.Name = "toolStripStatusLabelBackgroundDownload"; + toolStripStatusLabelBackgroundDownload.Size = new Size(80, 16); + toolStripStatusLabelBackgroundDownload.Text = "Download:"; + toolStripStatusLabelBackgroundDownload.ToolTipText = "Show the download progres"; + toolStripStatusLabelBackgroundDownload.DoubleClick += EasterEgg_DoubleClick; + toolStripStatusLabelBackgroundDownload.MouseEnter += SetStatusbar_Enter; + toolStripStatusLabelBackgroundDownload.MouseLeave += ClearStatusbar_Leave; // // toolStripProgressBarBackgroundDownload // - this.toolStripProgressBarBackgroundDownload.AccessibleDescription = "Shows the download progres"; - this.toolStripProgressBarBackgroundDownload.AccessibleName = "Download progress"; - this.toolStripProgressBarBackgroundDownload.AccessibleRole = System.Windows.Forms.AccessibleRole.ProgressBar; - this.toolStripProgressBarBackgroundDownload.AutoToolTip = true; - this.toolStripProgressBarBackgroundDownload.Enabled = false; - this.toolStripProgressBarBackgroundDownload.Name = "toolStripProgressBarBackgroundDownload"; - this.toolStripProgressBarBackgroundDownload.Size = new System.Drawing.Size(100, 16); - this.toolStripProgressBarBackgroundDownload.Style = System.Windows.Forms.ProgressBarStyle.Continuous; - this.toolStripProgressBarBackgroundDownload.ToolTipText = "Show the download progres"; - this.toolStripProgressBarBackgroundDownload.DoubleClick += new System.EventHandler(this.EasterEgg_DoubleClick); - this.toolStripProgressBarBackgroundDownload.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripProgressBarBackgroundDownload.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripProgressBarBackgroundDownload.AccessibleDescription = "Shows the download progres"; + toolStripProgressBarBackgroundDownload.AccessibleName = "Download progress"; + toolStripProgressBarBackgroundDownload.AccessibleRole = AccessibleRole.ProgressBar; + toolStripProgressBarBackgroundDownload.AutoToolTip = true; + toolStripProgressBarBackgroundDownload.Enabled = false; + toolStripProgressBarBackgroundDownload.Name = "toolStripProgressBarBackgroundDownload"; + toolStripProgressBarBackgroundDownload.Size = new Size(100, 16); + toolStripProgressBarBackgroundDownload.Style = ProgressBarStyle.Continuous; + toolStripProgressBarBackgroundDownload.ToolTipText = "Show the download progres"; + toolStripProgressBarBackgroundDownload.DoubleClick += EasterEgg_DoubleClick; + toolStripProgressBarBackgroundDownload.MouseEnter += SetStatusbar_Enter; + toolStripProgressBarBackgroundDownload.MouseLeave += ClearStatusbar_Leave; // // toolStripStatusLabelCancelBackgroundDownload // - this.toolStripStatusLabelCancelBackgroundDownload.AccessibleDescription = "Cancels the background download"; - this.toolStripStatusLabelCancelBackgroundDownload.AccessibleName = "Cancel download"; - this.toolStripStatusLabelCancelBackgroundDownload.AccessibleRole = System.Windows.Forms.AccessibleRole.Graphic; - this.toolStripStatusLabelCancelBackgroundDownload.AutoToolTip = true; - this.toolStripStatusLabelCancelBackgroundDownload.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.toolStripStatusLabelCancelBackgroundDownload.Image = global::Planetoid_DB.Properties.Resources.silk_cancel; - this.toolStripStatusLabelCancelBackgroundDownload.Name = "toolStripStatusLabelCancelBackgroundDownload"; - this.toolStripStatusLabelCancelBackgroundDownload.Size = new System.Drawing.Size(16, 16); - this.toolStripStatusLabelCancelBackgroundDownload.Text = "Cancel background download"; - this.toolStripStatusLabelCancelBackgroundDownload.Click += new System.EventHandler(this.ToolStripStatusLabelCancelBackgroundDownload_Click); - this.toolStripStatusLabelCancelBackgroundDownload.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripStatusLabelCancelBackgroundDownload.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripStatusLabelCancelBackgroundDownload.AccessibleDescription = "Cancels the background download"; + toolStripStatusLabelCancelBackgroundDownload.AccessibleName = "Cancel download"; + toolStripStatusLabelCancelBackgroundDownload.AccessibleRole = AccessibleRole.Graphic; + toolStripStatusLabelCancelBackgroundDownload.AutoToolTip = true; + toolStripStatusLabelCancelBackgroundDownload.DisplayStyle = ToolStripItemDisplayStyle.Image; + toolStripStatusLabelCancelBackgroundDownload.Image = Properties.Resources.silk_cancel; + toolStripStatusLabelCancelBackgroundDownload.Name = "toolStripStatusLabelCancelBackgroundDownload"; + toolStripStatusLabelCancelBackgroundDownload.Size = new Size(16, 16); + toolStripStatusLabelCancelBackgroundDownload.Text = "Cancel background download"; + toolStripStatusLabelCancelBackgroundDownload.Click += ToolStripStatusLabelCancelBackgroundDownload_Click; + toolStripStatusLabelCancelBackgroundDownload.MouseEnter += SetStatusbar_Enter; + toolStripStatusLabelCancelBackgroundDownload.MouseLeave += ClearStatusbar_Leave; // // labelInformation // - this.labelInformation.AccessibleDescription = "Shows some information"; - this.labelInformation.AccessibleName = "Shows some information"; - this.labelInformation.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.labelInformation.AutoToolTip = true; - this.labelInformation.Image = global::Planetoid_DB.Properties.Resources.silk_lightbulb; - this.labelInformation.Margin = new System.Windows.Forms.Padding(5, 3, 0, 2); - this.labelInformation.Name = "labelInformation"; - this.labelInformation.Size = new System.Drawing.Size(144, 16); - this.labelInformation.Spring = true; - this.labelInformation.Text = "some information here"; - this.labelInformation.ToolTipText = "Shows some information"; + labelInformation.AccessibleDescription = "Shows some information"; + labelInformation.AccessibleName = "Shows some information"; + labelInformation.AccessibleRole = AccessibleRole.StaticText; + labelInformation.AutoToolTip = true; + labelInformation.Image = Properties.Resources.silk_lightbulb; + labelInformation.Margin = new Padding(5, 3, 0, 2); + labelInformation.Name = "labelInformation"; + labelInformation.Size = new Size(144, 16); + labelInformation.Text = "some information here"; + labelInformation.ToolTipText = "Shows some information"; // // toolStripIcons // - this.toolStripIcons.AccessibleDescription = "Toolbar of main functions"; - this.toolStripIcons.AccessibleName = "Toolbar of main functions"; - this.toolStripIcons.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar; - this.toolStripIcons.Dock = System.Windows.Forms.DockStyle.None; - this.toolStripIcons.Font = new System.Drawing.Font("Segoe UI", 9F); - this.toolStripIcons.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.toolStripButtonOpen, - this.toolStripButtonExport, - this.toolStripButtonPrint, - this.splitbuttonCopyToClipboard, - this.toolStripSeparator4, - this.toolStripButtonDatabaseInformation, - this.toolStripButtonTableMode, - this.toolStripButtonTerminology, - this.toolStripSeparator3, - this.splitbuttonTopTenRecords, - this.splitbuttonDistribution, - this.toolStripSeparator5, - this.toolStripButtonCheckMpcorbDat, - this.toolStripButtonDownloadMpcorbDat, - this.toolStripSeparator1, - this.toolStripButtonAbout, - this.toolStripButtonOpenWebsitePDB, - this.toolStripSeparator2, - this.toolStripLabelQuickSearch, - this.toolStripTextBoxSearch, - this.splitbuttonSearch}); - this.toolStripIcons.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow; - this.toolStripIcons.Location = new System.Drawing.Point(0, 24); - this.toolStripIcons.Name = "toolStripIcons"; - this.toolStripIcons.Size = new System.Drawing.Size(804, 25); - this.toolStripIcons.Stretch = true; - this.toolStripIcons.TabIndex = 1; - this.toolStripIcons.TabStop = true; - this.toolStripIcons.Text = "Toolbar of main functions"; - this.toolStripIcons.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripIcons.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.toolStripIcons.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripIcons.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripIcons.AccessibleDescription = "Toolbar of main functions"; + toolStripIcons.AccessibleName = "Toolbar of main functions"; + toolStripIcons.AccessibleRole = AccessibleRole.ToolBar; + toolStripIcons.Dock = DockStyle.None; + toolStripIcons.Font = new Font("Segoe UI", 9F, FontStyle.Regular, GraphicsUnit.Point); + toolStripIcons.Items.AddRange(new ToolStripItem[] { toolStripButtonOpen, toolStripButtonExport, toolStripButtonPrint, splitbuttonCopyToClipboard, toolStripSeparator4, toolStripButtonDatabaseInformation, toolStripButtonTableMode, toolStripButtonTerminology, toolStripSeparator3, splitbuttonTopTenRecords, splitbuttonDistribution, toolStripSeparator5, toolStripButtonCheckMpcorbDat, toolStripButtonDownloadMpcorbDat, toolStripSeparator1, toolStripButtonAbout, toolStripButtonOpenWebsitePDB, toolStripSeparator2, toolStripLabelQuickSearch, toolStripTextBoxSearch, splitbuttonSearch }); + toolStripIcons.LayoutStyle = ToolStripLayoutStyle.HorizontalStackWithOverflow; + toolStripIcons.Location = new Point(0, 24); + toolStripIcons.Name = "toolStripIcons"; + toolStripIcons.Size = new Size(804, 25); + toolStripIcons.Stretch = true; + toolStripIcons.TabIndex = 1; + toolStripIcons.TabStop = true; + toolStripIcons.Text = "Toolbar of main functions"; + toolStripIcons.Enter += SetStatusbar_Enter; + toolStripIcons.Leave += ClearStatusbar_Leave; + toolStripIcons.MouseEnter += SetStatusbar_Enter; + toolStripIcons.MouseLeave += ClearStatusbar_Leave; // // toolStripButtonOpen // - this.toolStripButtonOpen.AccessibleDescription = "Opens a local MPCORB.DAT file"; - this.toolStripButtonOpen.AccessibleName = "Open"; - this.toolStripButtonOpen.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.toolStripButtonOpen.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.toolStripButtonOpen.Enabled = false; - this.toolStripButtonOpen.Image = global::Planetoid_DB.Properties.Resources.silk_folder; - this.toolStripButtonOpen.ImageTransparentColor = System.Drawing.Color.Magenta; - this.toolStripButtonOpen.Name = "toolStripButtonOpen"; - this.toolStripButtonOpen.Size = new System.Drawing.Size(23, 22); - this.toolStripButtonOpen.Text = "Open"; - this.toolStripButtonOpen.Click += new System.EventHandler(this.ToolStripButtonOpen_Click); - this.toolStripButtonOpen.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripButtonOpen.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripButtonOpen.AccessibleDescription = "Opens a local MPCORB.DAT file"; + toolStripButtonOpen.AccessibleName = "Open"; + toolStripButtonOpen.AccessibleRole = AccessibleRole.PushButton; + toolStripButtonOpen.DisplayStyle = ToolStripItemDisplayStyle.Image; + toolStripButtonOpen.Enabled = false; + toolStripButtonOpen.Image = Properties.Resources.silk_folder; + toolStripButtonOpen.ImageTransparentColor = Color.Magenta; + toolStripButtonOpen.Name = "toolStripButtonOpen"; + toolStripButtonOpen.Size = new Size(23, 22); + toolStripButtonOpen.Text = "Open"; + toolStripButtonOpen.Click += ToolStripButtonOpen_Click; + toolStripButtonOpen.MouseEnter += SetStatusbar_Enter; + toolStripButtonOpen.MouseLeave += ClearStatusbar_Leave; // // toolStripButtonExport // - this.toolStripButtonExport.AccessibleDescription = "Exports data entry"; - this.toolStripButtonExport.AccessibleName = "Export"; - this.toolStripButtonExport.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.toolStripButtonExport.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.toolStripButtonExport.Image = global::Planetoid_DB.Properties.Resources.silk_page_save; - this.toolStripButtonExport.ImageTransparentColor = System.Drawing.Color.Magenta; - this.toolStripButtonExport.Name = "toolStripButtonExport"; - this.toolStripButtonExport.Size = new System.Drawing.Size(23, 22); - this.toolStripButtonExport.Text = "Export"; - this.toolStripButtonExport.Click += new System.EventHandler(this.ToolStripSplitButtonExport_Click); - this.toolStripButtonExport.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripButtonExport.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripButtonExport.AccessibleDescription = "Exports data entry"; + toolStripButtonExport.AccessibleName = "Export"; + toolStripButtonExport.AccessibleRole = AccessibleRole.PushButton; + toolStripButtonExport.DisplayStyle = ToolStripItemDisplayStyle.Image; + toolStripButtonExport.Image = Properties.Resources.silk_page_save; + toolStripButtonExport.ImageTransparentColor = Color.Magenta; + toolStripButtonExport.Name = "toolStripButtonExport"; + toolStripButtonExport.Size = new Size(23, 22); + toolStripButtonExport.Text = "Export"; + toolStripButtonExport.Click += ToolStripSplitButtonExport_Click; + toolStripButtonExport.MouseEnter += SetStatusbar_Enter; + toolStripButtonExport.MouseLeave += ClearStatusbar_Leave; // // toolStripButtonPrint // - this.toolStripButtonPrint.AccessibleDescription = "Prints the information"; - this.toolStripButtonPrint.AccessibleName = "Print"; - this.toolStripButtonPrint.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.toolStripButtonPrint.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.toolStripButtonPrint.Image = global::Planetoid_DB.Properties.Resources.silk_printer; - this.toolStripButtonPrint.ImageTransparentColor = System.Drawing.Color.Magenta; - this.toolStripButtonPrint.Name = "toolStripButtonPrint"; - this.toolStripButtonPrint.Size = new System.Drawing.Size(23, 22); - this.toolStripButtonPrint.Text = "Print"; - this.toolStripButtonPrint.Click += new System.EventHandler(this.ToolStripButtonPrint_Click); - this.toolStripButtonPrint.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripButtonPrint.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripButtonPrint.AccessibleDescription = "Prints the information"; + toolStripButtonPrint.AccessibleName = "Print"; + toolStripButtonPrint.AccessibleRole = AccessibleRole.PushButton; + toolStripButtonPrint.DisplayStyle = ToolStripItemDisplayStyle.Image; + toolStripButtonPrint.Image = Properties.Resources.silk_printer; + toolStripButtonPrint.ImageTransparentColor = Color.Magenta; + toolStripButtonPrint.Name = "toolStripButtonPrint"; + toolStripButtonPrint.Size = new Size(23, 22); + toolStripButtonPrint.Text = "Print"; + toolStripButtonPrint.Click += ToolStripButtonPrint_Click; + toolStripButtonPrint.MouseEnter += SetStatusbar_Enter; + toolStripButtonPrint.MouseLeave += ClearStatusbar_Leave; + // + // splitbuttonCopyToClipboard + // + splitbuttonCopyToClipboard.AccessibleDescription = "Copys to clipboard"; + splitbuttonCopyToClipboard.AccessibleName = "Copy to clipboard"; + splitbuttonCopyToClipboard.AccessibleRole = AccessibleRole.SplitButton; + splitbuttonCopyToClipboard.DisplayStyle = ToolStripItemDisplayStyle.Image; + splitbuttonCopyToClipboard.DropDown = contextMenuCopyToClipboardOrbitalElements; + splitbuttonCopyToClipboard.Image = Properties.Resources.silk_page_copy; + splitbuttonCopyToClipboard.ImageTransparentColor = Color.Magenta; + splitbuttonCopyToClipboard.Name = "splitbuttonCopyToClipboard"; + splitbuttonCopyToClipboard.Size = new Size(32, 22); + splitbuttonCopyToClipboard.Text = "Copy to clipboard"; + splitbuttonCopyToClipboard.ButtonClick += ToolStripButtonCopyToClipboard_Click; + splitbuttonCopyToClipboard.MouseEnter += SetStatusbar_Enter; + splitbuttonCopyToClipboard.MouseLeave += ClearStatusbar_Leave; // // toolStripSeparator4 // - this.toolStripSeparator4.AccessibleDescription = "Just a separator"; - this.toolStripSeparator4.AccessibleName = "Just a separator"; - this.toolStripSeparator4.AccessibleRole = System.Windows.Forms.AccessibleRole.Separator; - this.toolStripSeparator4.Name = "toolStripSeparator4"; - this.toolStripSeparator4.Size = new System.Drawing.Size(6, 25); - this.toolStripSeparator4.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripSeparator4.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripSeparator4.AccessibleDescription = "Just a separator"; + toolStripSeparator4.AccessibleName = "Just a separator"; + toolStripSeparator4.AccessibleRole = AccessibleRole.Separator; + toolStripSeparator4.Name = "toolStripSeparator4"; + toolStripSeparator4.Size = new Size(6, 25); + toolStripSeparator4.MouseEnter += SetStatusbar_Enter; + toolStripSeparator4.MouseLeave += ClearStatusbar_Leave; // // toolStripButtonDatabaseInformation // - this.toolStripButtonDatabaseInformation.AccessibleDescription = "Shows some information of the MPCORB.DAT database"; - this.toolStripButtonDatabaseInformation.AccessibleName = "Database Information"; - this.toolStripButtonDatabaseInformation.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.toolStripButtonDatabaseInformation.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.toolStripButtonDatabaseInformation.Image = global::Planetoid_DB.Properties.Resources.silk_database; - this.toolStripButtonDatabaseInformation.ImageTransparentColor = System.Drawing.Color.Magenta; - this.toolStripButtonDatabaseInformation.Name = "toolStripButtonDatabaseInformation"; - this.toolStripButtonDatabaseInformation.Size = new System.Drawing.Size(23, 22); - this.toolStripButtonDatabaseInformation.Text = "Database information"; - this.toolStripButtonDatabaseInformation.Click += new System.EventHandler(this.ToolStripButtonDatabaseInformation_Click); - this.toolStripButtonDatabaseInformation.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripButtonDatabaseInformation.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripButtonDatabaseInformation.AccessibleDescription = "Shows some information of the MPCORB.DAT database"; + toolStripButtonDatabaseInformation.AccessibleName = "Database Information"; + toolStripButtonDatabaseInformation.AccessibleRole = AccessibleRole.PushButton; + toolStripButtonDatabaseInformation.DisplayStyle = ToolStripItemDisplayStyle.Image; + toolStripButtonDatabaseInformation.Image = Properties.Resources.silk_database; + toolStripButtonDatabaseInformation.ImageTransparentColor = Color.Magenta; + toolStripButtonDatabaseInformation.Name = "toolStripButtonDatabaseInformation"; + toolStripButtonDatabaseInformation.Size = new Size(23, 22); + toolStripButtonDatabaseInformation.Text = "Database information"; + toolStripButtonDatabaseInformation.Click += ToolStripButtonDatabaseInformation_Click; + toolStripButtonDatabaseInformation.MouseEnter += SetStatusbar_Enter; + toolStripButtonDatabaseInformation.MouseLeave += ClearStatusbar_Leave; // // toolStripButtonTableMode // - this.toolStripButtonTableMode.AccessibleDescription = "Activates the table mode"; - this.toolStripButtonTableMode.AccessibleName = "Table mode"; - this.toolStripButtonTableMode.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.toolStripButtonTableMode.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.toolStripButtonTableMode.Image = global::Planetoid_DB.Properties.Resources.silk_table; - this.toolStripButtonTableMode.ImageTransparentColor = System.Drawing.Color.Magenta; - this.toolStripButtonTableMode.Name = "toolStripButtonTableMode"; - this.toolStripButtonTableMode.Size = new System.Drawing.Size(23, 22); - this.toolStripButtonTableMode.Text = "Table mode"; - this.toolStripButtonTableMode.ToolTipText = "Activate the table mode"; - this.toolStripButtonTableMode.Click += new System.EventHandler(this.ToolStripButtonTableMode_Click); - this.toolStripButtonTableMode.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripButtonTableMode.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripButtonTableMode.AccessibleDescription = "Activates the table mode"; + toolStripButtonTableMode.AccessibleName = "Table mode"; + toolStripButtonTableMode.AccessibleRole = AccessibleRole.PushButton; + toolStripButtonTableMode.DisplayStyle = ToolStripItemDisplayStyle.Image; + toolStripButtonTableMode.Image = Properties.Resources.silk_table; + toolStripButtonTableMode.ImageTransparentColor = Color.Magenta; + toolStripButtonTableMode.Name = "toolStripButtonTableMode"; + toolStripButtonTableMode.Size = new Size(23, 22); + toolStripButtonTableMode.Text = "Table mode"; + toolStripButtonTableMode.ToolTipText = "Activate the table mode"; + toolStripButtonTableMode.Click += ToolStripButtonTableMode_Click; + toolStripButtonTableMode.MouseEnter += SetStatusbar_Enter; + toolStripButtonTableMode.MouseLeave += ClearStatusbar_Leave; // // toolStripButtonTerminology // - this.toolStripButtonTerminology.AccessibleDescription = "Shows the terminology"; - this.toolStripButtonTerminology.AccessibleName = "Terminology"; - this.toolStripButtonTerminology.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.toolStripButtonTerminology.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.toolStripButtonTerminology.Image = global::Planetoid_DB.Properties.Resources.silk_text_list_bullets; - this.toolStripButtonTerminology.ImageTransparentColor = System.Drawing.Color.Magenta; - this.toolStripButtonTerminology.Name = "toolStripButtonTerminology"; - this.toolStripButtonTerminology.Size = new System.Drawing.Size(23, 22); - this.toolStripButtonTerminology.Text = "Terminology"; - this.toolStripButtonTerminology.ToolTipText = "Show the terminology"; - this.toolStripButtonTerminology.Click += new System.EventHandler(this.ToolStripButtonTerminology_Click); - this.toolStripButtonTerminology.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripButtonTerminology.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripButtonTerminology.AccessibleDescription = "Shows the terminology"; + toolStripButtonTerminology.AccessibleName = "Terminology"; + toolStripButtonTerminology.AccessibleRole = AccessibleRole.PushButton; + toolStripButtonTerminology.DisplayStyle = ToolStripItemDisplayStyle.Image; + toolStripButtonTerminology.Image = Properties.Resources.silk_text_list_bullets; + toolStripButtonTerminology.ImageTransparentColor = Color.Magenta; + toolStripButtonTerminology.Name = "toolStripButtonTerminology"; + toolStripButtonTerminology.Size = new Size(23, 22); + toolStripButtonTerminology.Text = "Terminology"; + toolStripButtonTerminology.ToolTipText = "Show the terminology"; + toolStripButtonTerminology.Click += ToolStripButtonTerminology_Click; + toolStripButtonTerminology.MouseEnter += SetStatusbar_Enter; + toolStripButtonTerminology.MouseLeave += ClearStatusbar_Leave; // // toolStripSeparator3 // - this.toolStripSeparator3.AccessibleDescription = "Just a separator"; - this.toolStripSeparator3.AccessibleName = "Just a separator"; - this.toolStripSeparator3.AccessibleRole = System.Windows.Forms.AccessibleRole.Separator; - this.toolStripSeparator3.Name = "toolStripSeparator3"; - this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25); - this.toolStripSeparator3.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripSeparator3.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); - // - // splitbuttonTopTenRecords - // - this.splitbuttonTopTenRecords.AccessibleDescription = "Shows the top ten records"; - this.splitbuttonTopTenRecords.AccessibleName = "Top ten records"; - this.splitbuttonTopTenRecords.AccessibleRole = System.Windows.Forms.AccessibleRole.SplitButton; - this.splitbuttonTopTenRecords.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.splitbuttonTopTenRecords.DropDown = this.contextMenuTopTenRecords; - this.splitbuttonTopTenRecords.Enabled = false; - this.splitbuttonTopTenRecords.Image = global::Planetoid_DB.Properties.Resources.silk_text_list_numbers; - this.splitbuttonTopTenRecords.ImageTransparentColor = System.Drawing.Color.Magenta; - this.splitbuttonTopTenRecords.Name = "splitbuttonTopTenRecords"; - this.splitbuttonTopTenRecords.Size = new System.Drawing.Size(32, 22); - this.splitbuttonTopTenRecords.Text = "Top ten records"; - this.splitbuttonTopTenRecords.ButtonClick += new System.EventHandler(this.SplitbuttonTopTenRecords_ButtonClick); - this.splitbuttonTopTenRecords.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.splitbuttonTopTenRecords.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); - // - // splitbuttonDistribution - // - this.splitbuttonDistribution.AccessibleDescription = "Shows some distributions"; - this.splitbuttonDistribution.AccessibleName = "Distributions"; - this.splitbuttonDistribution.AccessibleRole = System.Windows.Forms.AccessibleRole.SplitButton; - this.splitbuttonDistribution.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.splitbuttonDistribution.DropDown = this.contextMenuDistributions; - this.splitbuttonDistribution.Enabled = false; - this.splitbuttonDistribution.Image = global::Planetoid_DB.Properties.Resources.silk_chart_bar; - this.splitbuttonDistribution.ImageTransparentColor = System.Drawing.Color.Magenta; - this.splitbuttonDistribution.Name = "splitbuttonDistribution"; - this.splitbuttonDistribution.Size = new System.Drawing.Size(32, 22); - this.splitbuttonDistribution.Text = "Distributions"; - this.splitbuttonDistribution.ButtonClick += new System.EventHandler(this.SplitbuttonDistribution_ButtonClick); - this.splitbuttonDistribution.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.splitbuttonDistribution.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripSeparator3.AccessibleDescription = "Just a separator"; + toolStripSeparator3.AccessibleName = "Just a separator"; + toolStripSeparator3.AccessibleRole = AccessibleRole.Separator; + toolStripSeparator3.Name = "toolStripSeparator3"; + toolStripSeparator3.Size = new Size(6, 25); + toolStripSeparator3.MouseEnter += SetStatusbar_Enter; + toolStripSeparator3.MouseLeave += ClearStatusbar_Leave; // // toolStripSeparator5 // - this.toolStripSeparator5.AccessibleDescription = "Just a separator"; - this.toolStripSeparator5.AccessibleName = "Just a separator"; - this.toolStripSeparator5.AccessibleRole = System.Windows.Forms.AccessibleRole.Separator; - this.toolStripSeparator5.Name = "toolStripSeparator5"; - this.toolStripSeparator5.Size = new System.Drawing.Size(6, 25); - this.toolStripSeparator5.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripSeparator5.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripSeparator5.AccessibleDescription = "Just a separator"; + toolStripSeparator5.AccessibleName = "Just a separator"; + toolStripSeparator5.AccessibleRole = AccessibleRole.Separator; + toolStripSeparator5.Name = "toolStripSeparator5"; + toolStripSeparator5.Size = new Size(6, 25); + toolStripSeparator5.MouseEnter += SetStatusbar_Enter; + toolStripSeparator5.MouseLeave += ClearStatusbar_Leave; // // toolStripButtonCheckMpcorbDat // - this.toolStripButtonCheckMpcorbDat.AccessibleDescription = "Checks for updates of the database"; - this.toolStripButtonCheckMpcorbDat.AccessibleName = "Check MPCORB.DAT"; - this.toolStripButtonCheckMpcorbDat.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.toolStripButtonCheckMpcorbDat.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.toolStripButtonCheckMpcorbDat.Image = global::Planetoid_DB.Properties.Resources.silk_database_lightning; - this.toolStripButtonCheckMpcorbDat.ImageTransparentColor = System.Drawing.Color.Magenta; - this.toolStripButtonCheckMpcorbDat.Name = "toolStripButtonCheckMpcorbDat"; - this.toolStripButtonCheckMpcorbDat.Size = new System.Drawing.Size(23, 22); - this.toolStripButtonCheckMpcorbDat.Text = "Check MPCORB.DAT"; - this.toolStripButtonCheckMpcorbDat.ToolTipText = "Check MPCORB.DAT"; - this.toolStripButtonCheckMpcorbDat.Click += new System.EventHandler(this.ToolStripButtonCheckMpcorbDat_Click); - this.toolStripButtonCheckMpcorbDat.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripButtonCheckMpcorbDat.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripButtonCheckMpcorbDat.AccessibleDescription = "Checks for updates of the database"; + toolStripButtonCheckMpcorbDat.AccessibleName = "Check MPCORB.DAT"; + toolStripButtonCheckMpcorbDat.AccessibleRole = AccessibleRole.PushButton; + toolStripButtonCheckMpcorbDat.DisplayStyle = ToolStripItemDisplayStyle.Image; + toolStripButtonCheckMpcorbDat.Image = Properties.Resources.silk_database_lightning; + toolStripButtonCheckMpcorbDat.ImageTransparentColor = Color.Magenta; + toolStripButtonCheckMpcorbDat.Name = "toolStripButtonCheckMpcorbDat"; + toolStripButtonCheckMpcorbDat.Size = new Size(23, 22); + toolStripButtonCheckMpcorbDat.Text = "Check MPCORB.DAT"; + toolStripButtonCheckMpcorbDat.ToolTipText = "Check MPCORB.DAT"; + toolStripButtonCheckMpcorbDat.Click += ToolStripButtonCheckMpcorbDat_Click; + toolStripButtonCheckMpcorbDat.MouseEnter += SetStatusbar_Enter; + toolStripButtonCheckMpcorbDat.MouseLeave += ClearStatusbar_Leave; // // toolStripButtonDownloadMpcorbDat // - this.toolStripButtonDownloadMpcorbDat.AccessibleDescription = "Downloads the database"; - this.toolStripButtonDownloadMpcorbDat.AccessibleName = "Download MPCORB.DAT"; - this.toolStripButtonDownloadMpcorbDat.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.toolStripButtonDownloadMpcorbDat.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.toolStripButtonDownloadMpcorbDat.Image = global::Planetoid_DB.Properties.Resources.silk_package_go; - this.toolStripButtonDownloadMpcorbDat.ImageTransparentColor = System.Drawing.Color.Transparent; - this.toolStripButtonDownloadMpcorbDat.Name = "toolStripButtonDownloadMpcorbDat"; - this.toolStripButtonDownloadMpcorbDat.Size = new System.Drawing.Size(23, 22); - this.toolStripButtonDownloadMpcorbDat.Text = "Download MPCORB.DAT"; - this.toolStripButtonDownloadMpcorbDat.ToolTipText = "Download the database"; - this.toolStripButtonDownloadMpcorbDat.Click += new System.EventHandler(this.ToolStripButtonDownloadMpcorbDat_Click); - this.toolStripButtonDownloadMpcorbDat.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripButtonDownloadMpcorbDat.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripButtonDownloadMpcorbDat.AccessibleDescription = "Downloads the database"; + toolStripButtonDownloadMpcorbDat.AccessibleName = "Download MPCORB.DAT"; + toolStripButtonDownloadMpcorbDat.AccessibleRole = AccessibleRole.PushButton; + toolStripButtonDownloadMpcorbDat.DisplayStyle = ToolStripItemDisplayStyle.Image; + toolStripButtonDownloadMpcorbDat.Image = Properties.Resources.silk_package_go; + toolStripButtonDownloadMpcorbDat.ImageTransparentColor = Color.Transparent; + toolStripButtonDownloadMpcorbDat.Name = "toolStripButtonDownloadMpcorbDat"; + toolStripButtonDownloadMpcorbDat.Size = new Size(23, 22); + toolStripButtonDownloadMpcorbDat.Text = "Download MPCORB.DAT"; + toolStripButtonDownloadMpcorbDat.ToolTipText = "Download the database"; + toolStripButtonDownloadMpcorbDat.Click += ToolStripButtonDownloadMpcorbDat_Click; + toolStripButtonDownloadMpcorbDat.MouseEnter += SetStatusbar_Enter; + toolStripButtonDownloadMpcorbDat.MouseLeave += ClearStatusbar_Leave; // // toolStripSeparator1 // - this.toolStripSeparator1.AccessibleDescription = "Just a separator"; - this.toolStripSeparator1.AccessibleName = "Just a separator"; - this.toolStripSeparator1.AccessibleRole = System.Windows.Forms.AccessibleRole.Separator; - this.toolStripSeparator1.Name = "toolStripSeparator1"; - this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25); - this.toolStripSeparator1.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripSeparator1.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripSeparator1.AccessibleDescription = "Just a separator"; + toolStripSeparator1.AccessibleName = "Just a separator"; + toolStripSeparator1.AccessibleRole = AccessibleRole.Separator; + toolStripSeparator1.Name = "toolStripSeparator1"; + toolStripSeparator1.Size = new Size(6, 25); + toolStripSeparator1.MouseEnter += SetStatusbar_Enter; + toolStripSeparator1.MouseLeave += ClearStatusbar_Leave; // // toolStripButtonAbout // - this.toolStripButtonAbout.AccessibleDescription = "More information about the application"; - this.toolStripButtonAbout.AccessibleName = "About"; - this.toolStripButtonAbout.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.toolStripButtonAbout.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.toolStripButtonAbout.Image = global::Planetoid_DB.Properties.Resources.silk_information; - this.toolStripButtonAbout.ImageTransparentColor = System.Drawing.Color.Magenta; - this.toolStripButtonAbout.Name = "toolStripButtonAbout"; - this.toolStripButtonAbout.Size = new System.Drawing.Size(23, 22); - this.toolStripButtonAbout.Text = "About"; - this.toolStripButtonAbout.ToolTipText = "More information about the application"; - this.toolStripButtonAbout.Click += new System.EventHandler(this.ToolStripButtonAbout_Click); - this.toolStripButtonAbout.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripButtonAbout.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripButtonAbout.AccessibleDescription = "More information about the application"; + toolStripButtonAbout.AccessibleName = "About"; + toolStripButtonAbout.AccessibleRole = AccessibleRole.PushButton; + toolStripButtonAbout.DisplayStyle = ToolStripItemDisplayStyle.Image; + toolStripButtonAbout.Image = Properties.Resources.silk_information; + toolStripButtonAbout.ImageTransparentColor = Color.Magenta; + toolStripButtonAbout.Name = "toolStripButtonAbout"; + toolStripButtonAbout.Size = new Size(23, 22); + toolStripButtonAbout.Text = "About"; + toolStripButtonAbout.ToolTipText = "More information about the application"; + toolStripButtonAbout.Click += ToolStripButtonAbout_Click; + toolStripButtonAbout.MouseEnter += SetStatusbar_Enter; + toolStripButtonAbout.MouseLeave += ClearStatusbar_Leave; // // toolStripButtonOpenWebsitePDB // - this.toolStripButtonOpenWebsitePDB.AccessibleDescription = "Opens the Planetoid-DB homepage"; - this.toolStripButtonOpenWebsitePDB.AccessibleName = "Open Planetoid-DB homepage"; - this.toolStripButtonOpenWebsitePDB.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.toolStripButtonOpenWebsitePDB.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.toolStripButtonOpenWebsitePDB.Image = global::Planetoid_DB.Properties.Resources.silk_house; - this.toolStripButtonOpenWebsitePDB.ImageTransparentColor = System.Drawing.Color.Magenta; - this.toolStripButtonOpenWebsitePDB.Name = "toolStripButtonOpenWebsitePDB"; - this.toolStripButtonOpenWebsitePDB.Size = new System.Drawing.Size(23, 22); - this.toolStripButtonOpenWebsitePDB.Text = "Open Planetoid-DB homepage"; - this.toolStripButtonOpenWebsitePDB.Click += new System.EventHandler(this.ToolStripButtonOpenWebsitePDB_Click); - this.toolStripButtonOpenWebsitePDB.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripButtonOpenWebsitePDB.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripButtonOpenWebsitePDB.AccessibleDescription = "Opens the Planetoid-DB homepage"; + toolStripButtonOpenWebsitePDB.AccessibleName = "Open Planetoid-DB homepage"; + toolStripButtonOpenWebsitePDB.AccessibleRole = AccessibleRole.PushButton; + toolStripButtonOpenWebsitePDB.DisplayStyle = ToolStripItemDisplayStyle.Image; + toolStripButtonOpenWebsitePDB.Image = Properties.Resources.silk_house; + toolStripButtonOpenWebsitePDB.ImageTransparentColor = Color.Magenta; + toolStripButtonOpenWebsitePDB.Name = "toolStripButtonOpenWebsitePDB"; + toolStripButtonOpenWebsitePDB.Size = new Size(23, 22); + toolStripButtonOpenWebsitePDB.Text = "Open Planetoid-DB homepage"; + toolStripButtonOpenWebsitePDB.Click += ToolStripButtonOpenWebsitePDB_Click; + toolStripButtonOpenWebsitePDB.MouseEnter += SetStatusbar_Enter; + toolStripButtonOpenWebsitePDB.MouseLeave += ClearStatusbar_Leave; // // toolStripSeparator2 // - this.toolStripSeparator2.AccessibleDescription = "Just a separator"; - this.toolStripSeparator2.AccessibleName = "Just a separator"; - this.toolStripSeparator2.AccessibleRole = System.Windows.Forms.AccessibleRole.Separator; - this.toolStripSeparator2.Name = "toolStripSeparator2"; - this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25); - this.toolStripSeparator2.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripSeparator2.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripSeparator2.AccessibleDescription = "Just a separator"; + toolStripSeparator2.AccessibleName = "Just a separator"; + toolStripSeparator2.AccessibleRole = AccessibleRole.Separator; + toolStripSeparator2.Name = "toolStripSeparator2"; + toolStripSeparator2.Size = new Size(6, 25); + toolStripSeparator2.MouseEnter += SetStatusbar_Enter; + toolStripSeparator2.MouseLeave += ClearStatusbar_Leave; // // toolStripLabelQuickSearch // - this.toolStripLabelQuickSearch.AccessibleDescription = "Quick search"; - this.toolStripLabelQuickSearch.AccessibleName = "Quick search"; - this.toolStripLabelQuickSearch.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.toolStripLabelQuickSearch.AutoToolTip = true; - this.toolStripLabelQuickSearch.Name = "toolStripLabelQuickSearch"; - this.toolStripLabelQuickSearch.Size = new System.Drawing.Size(78, 22); - this.toolStripLabelQuickSearch.Text = "Quick search:"; - this.toolStripLabelQuickSearch.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripLabelQuickSearch.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripLabelQuickSearch.AccessibleDescription = "Quick search"; + toolStripLabelQuickSearch.AccessibleName = "Quick search"; + toolStripLabelQuickSearch.AccessibleRole = AccessibleRole.StaticText; + toolStripLabelQuickSearch.AutoToolTip = true; + toolStripLabelQuickSearch.Name = "toolStripLabelQuickSearch"; + toolStripLabelQuickSearch.Size = new Size(78, 22); + toolStripLabelQuickSearch.Text = "Quick search:"; + toolStripLabelQuickSearch.MouseEnter += SetStatusbar_Enter; + toolStripLabelQuickSearch.MouseLeave += ClearStatusbar_Leave; // // toolStripTextBoxSearch // - this.toolStripTextBoxSearch.AccessibleDescription = "Enter the search term"; - this.toolStripTextBoxSearch.AccessibleName = "Seach field"; - this.toolStripTextBoxSearch.AccessibleRole = System.Windows.Forms.AccessibleRole.Text; - this.toolStripTextBoxSearch.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; - this.toolStripTextBoxSearch.AutoToolTip = true; - this.toolStripTextBoxSearch.Font = new System.Drawing.Font("Segoe UI", 9F); - this.toolStripTextBoxSearch.Name = "toolStripTextBoxSearch"; - this.toolStripTextBoxSearch.Size = new System.Drawing.Size(100, 25); - this.toolStripTextBoxSearch.ToolTipText = "Search"; - this.toolStripTextBoxSearch.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripTextBoxSearch.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.toolStripTextBoxSearch.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripTextBoxSearch.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripTextBoxSearch.AccessibleDescription = "Enter the search term"; + toolStripTextBoxSearch.AccessibleName = "Seach field"; + toolStripTextBoxSearch.AccessibleRole = AccessibleRole.Text; + toolStripTextBoxSearch.AutoCompleteMode = AutoCompleteMode.Suggest; + toolStripTextBoxSearch.AutoToolTip = true; + toolStripTextBoxSearch.Name = "toolStripTextBoxSearch"; + toolStripTextBoxSearch.Size = new Size(100, 25); + toolStripTextBoxSearch.ToolTipText = "Search"; + toolStripTextBoxSearch.Enter += SetStatusbar_Enter; + toolStripTextBoxSearch.Leave += ClearStatusbar_Leave; + toolStripTextBoxSearch.MouseEnter += SetStatusbar_Enter; + toolStripTextBoxSearch.MouseLeave += ClearStatusbar_Leave; // // splitbuttonSearch // - this.splitbuttonSearch.AccessibleDescription = "Search"; - this.splitbuttonSearch.AccessibleName = "Search"; - this.splitbuttonSearch.AccessibleRole = System.Windows.Forms.AccessibleRole.SplitButton; - this.splitbuttonSearch.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.splitbuttonSearch.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.menuitemSearchIndex, - this.menuitemSearchReadableDesignation, - this.menuitemSearchEpoch, - this.menuitemSearchMeanAnomalyAtTheEpoch, - this.menuitemSearchArgumentOfPerihelion, - this.menuitemSearchLongitudeOfTheAscendingNode, - this.menuitemSearchInclination, - this.menuitemSearchOrbitalEccentricity, - this.menuitemSearchMeanDailyMotion, - this.menuitemSearchSemiMajorAxis, - this.menuitemSearchAbsoluteMagnitude, - this.menuitemSearchSlopeParameter, - this.menuitemSearchReference, - this.menuitemSearchNumberOfOppositions, - this.menuitemSearchNumberOfObservations, - this.menuitemSearchObservationSpan, - this.menuitemSearchRmsResidual, - this.menuitemSearchComputerName, - this.menuitemSearchDateOfTheLastObservation, - this.menuitemSearchFlags}); - this.splitbuttonSearch.Image = global::Planetoid_DB.Properties.Resources.silk_magnifier; - this.splitbuttonSearch.ImageTransparentColor = System.Drawing.Color.Magenta; - this.splitbuttonSearch.Name = "splitbuttonSearch"; - this.splitbuttonSearch.Size = new System.Drawing.Size(32, 22); - this.splitbuttonSearch.Text = "Search"; - this.splitbuttonSearch.ButtonClick += new System.EventHandler(this.ToolStripMenuItemSearch_Click); - this.splitbuttonSearch.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.splitbuttonSearch.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + splitbuttonSearch.AccessibleDescription = "Search"; + splitbuttonSearch.AccessibleName = "Search"; + splitbuttonSearch.AccessibleRole = AccessibleRole.SplitButton; + splitbuttonSearch.DisplayStyle = ToolStripItemDisplayStyle.Image; + splitbuttonSearch.DropDownItems.AddRange(new ToolStripItem[] { menuitemSearchIndex, menuitemSearchReadableDesignation, menuitemSearchEpoch, menuitemSearchMeanAnomalyAtTheEpoch, menuitemSearchArgumentOfPerihelion, menuitemSearchLongitudeOfTheAscendingNode, menuitemSearchInclination, menuitemSearchOrbitalEccentricity, menuitemSearchMeanDailyMotion, menuitemSearchSemiMajorAxis, menuitemSearchAbsoluteMagnitude, menuitemSearchSlopeParameter, menuitemSearchReference, menuitemSearchNumberOfOppositions, menuitemSearchNumberOfObservations, menuitemSearchObservationSpan, menuitemSearchRmsResidual, menuitemSearchComputerName, menuitemSearchDateOfTheLastObservation, menuitemSearchFlags }); + splitbuttonSearch.Image = Properties.Resources.silk_magnifier; + splitbuttonSearch.ImageTransparentColor = Color.Magenta; + splitbuttonSearch.Name = "splitbuttonSearch"; + splitbuttonSearch.Size = new Size(32, 22); + splitbuttonSearch.Text = "Search"; + splitbuttonSearch.ButtonClick += ToolStripMenuItemSearch_Click; + splitbuttonSearch.MouseEnter += SetStatusbar_Enter; + splitbuttonSearch.MouseLeave += ClearStatusbar_Leave; // // menuitemSearchIndex // - this.menuitemSearchIndex.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemSearchIndex.AutoToolTip = true; - this.menuitemSearchIndex.Checked = true; - this.menuitemSearchIndex.CheckOnClick = true; - this.menuitemSearchIndex.CheckState = System.Windows.Forms.CheckState.Checked; - this.menuitemSearchIndex.Name = "menuitemSearchIndex"; - this.menuitemSearchIndex.Size = new System.Drawing.Size(308, 22); - this.menuitemSearchIndex.Text = "Index No."; - this.menuitemSearchIndex.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemSearchIndex.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemSearchIndex.AccessibleRole = AccessibleRole.MenuItem; + menuitemSearchIndex.AutoToolTip = true; + menuitemSearchIndex.Checked = true; + menuitemSearchIndex.CheckOnClick = true; + menuitemSearchIndex.CheckState = CheckState.Checked; + menuitemSearchIndex.Name = "menuitemSearchIndex"; + menuitemSearchIndex.Size = new Size(308, 22); + menuitemSearchIndex.Text = "Index No."; + menuitemSearchIndex.MouseEnter += SetStatusbar_Enter; + menuitemSearchIndex.MouseLeave += ClearStatusbar_Leave; // // menuitemSearchReadableDesignation // - this.menuitemSearchReadableDesignation.AccessibleDescription = "Enables/disables the readable designation for the search"; - this.menuitemSearchReadableDesignation.AccessibleName = "Enables/disables the readable designation for the search"; - this.menuitemSearchReadableDesignation.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemSearchReadableDesignation.AutoToolTip = true; - this.menuitemSearchReadableDesignation.Checked = true; - this.menuitemSearchReadableDesignation.CheckOnClick = true; - this.menuitemSearchReadableDesignation.CheckState = System.Windows.Forms.CheckState.Checked; - this.menuitemSearchReadableDesignation.Name = "menuitemSearchReadableDesignation"; - this.menuitemSearchReadableDesignation.Size = new System.Drawing.Size(308, 22); - this.menuitemSearchReadableDesignation.Text = "Readable designation"; - this.menuitemSearchReadableDesignation.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemSearchReadableDesignation.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemSearchReadableDesignation.AccessibleDescription = "Enables/disables the readable designation for the search"; + menuitemSearchReadableDesignation.AccessibleName = "Enables/disables the readable designation for the search"; + menuitemSearchReadableDesignation.AccessibleRole = AccessibleRole.MenuItem; + menuitemSearchReadableDesignation.AutoToolTip = true; + menuitemSearchReadableDesignation.Checked = true; + menuitemSearchReadableDesignation.CheckOnClick = true; + menuitemSearchReadableDesignation.CheckState = CheckState.Checked; + menuitemSearchReadableDesignation.Name = "menuitemSearchReadableDesignation"; + menuitemSearchReadableDesignation.Size = new Size(308, 22); + menuitemSearchReadableDesignation.Text = "Readable designation"; + menuitemSearchReadableDesignation.MouseEnter += SetStatusbar_Enter; + menuitemSearchReadableDesignation.MouseLeave += ClearStatusbar_Leave; // // menuitemSearchEpoch // - this.menuitemSearchEpoch.AccessibleDescription = "Enables/disables the epoch for the search"; - this.menuitemSearchEpoch.AccessibleName = "Enables/disables the epoch for the search"; - this.menuitemSearchEpoch.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemSearchEpoch.AutoToolTip = true; - this.menuitemSearchEpoch.Checked = true; - this.menuitemSearchEpoch.CheckOnClick = true; - this.menuitemSearchEpoch.CheckState = System.Windows.Forms.CheckState.Checked; - this.menuitemSearchEpoch.Name = "menuitemSearchEpoch"; - this.menuitemSearchEpoch.Size = new System.Drawing.Size(308, 22); - this.menuitemSearchEpoch.Text = "Epoch (in packed form, .0 TT)"; - this.menuitemSearchEpoch.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemSearchEpoch.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemSearchEpoch.AccessibleDescription = "Enables/disables the epoch for the search"; + menuitemSearchEpoch.AccessibleName = "Enables/disables the epoch for the search"; + menuitemSearchEpoch.AccessibleRole = AccessibleRole.MenuItem; + menuitemSearchEpoch.AutoToolTip = true; + menuitemSearchEpoch.Checked = true; + menuitemSearchEpoch.CheckOnClick = true; + menuitemSearchEpoch.CheckState = CheckState.Checked; + menuitemSearchEpoch.Name = "menuitemSearchEpoch"; + menuitemSearchEpoch.Size = new Size(308, 22); + menuitemSearchEpoch.Text = "Epoch (in packed form, .0 TT)"; + menuitemSearchEpoch.MouseEnter += SetStatusbar_Enter; + menuitemSearchEpoch.MouseLeave += ClearStatusbar_Leave; // // menuitemSearchMeanAnomalyAtTheEpoch // - this.menuitemSearchMeanAnomalyAtTheEpoch.AccessibleDescription = "Enables/disables the mean anomaly at the epoch for the search"; - this.menuitemSearchMeanAnomalyAtTheEpoch.AccessibleName = "Enables/disables the mean anomaly at the epoch for the search"; - this.menuitemSearchMeanAnomalyAtTheEpoch.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemSearchMeanAnomalyAtTheEpoch.AutoToolTip = true; - this.menuitemSearchMeanAnomalyAtTheEpoch.Checked = true; - this.menuitemSearchMeanAnomalyAtTheEpoch.CheckOnClick = true; - this.menuitemSearchMeanAnomalyAtTheEpoch.CheckState = System.Windows.Forms.CheckState.Checked; - this.menuitemSearchMeanAnomalyAtTheEpoch.Name = "menuitemSearchMeanAnomalyAtTheEpoch"; - this.menuitemSearchMeanAnomalyAtTheEpoch.Size = new System.Drawing.Size(308, 22); - this.menuitemSearchMeanAnomalyAtTheEpoch.Text = "Mean anomaly at the epoch (°)"; - this.menuitemSearchMeanAnomalyAtTheEpoch.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemSearchMeanAnomalyAtTheEpoch.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemSearchMeanAnomalyAtTheEpoch.AccessibleDescription = "Enables/disables the mean anomaly at the epoch for the search"; + menuitemSearchMeanAnomalyAtTheEpoch.AccessibleName = "Enables/disables the mean anomaly at the epoch for the search"; + menuitemSearchMeanAnomalyAtTheEpoch.AccessibleRole = AccessibleRole.MenuItem; + menuitemSearchMeanAnomalyAtTheEpoch.AutoToolTip = true; + menuitemSearchMeanAnomalyAtTheEpoch.Checked = true; + menuitemSearchMeanAnomalyAtTheEpoch.CheckOnClick = true; + menuitemSearchMeanAnomalyAtTheEpoch.CheckState = CheckState.Checked; + menuitemSearchMeanAnomalyAtTheEpoch.Name = "menuitemSearchMeanAnomalyAtTheEpoch"; + menuitemSearchMeanAnomalyAtTheEpoch.Size = new Size(308, 22); + menuitemSearchMeanAnomalyAtTheEpoch.Text = "Mean anomaly at the epoch (°)"; + menuitemSearchMeanAnomalyAtTheEpoch.MouseEnter += SetStatusbar_Enter; + menuitemSearchMeanAnomalyAtTheEpoch.MouseLeave += ClearStatusbar_Leave; // // menuitemSearchArgumentOfPerihelion // - this.menuitemSearchArgumentOfPerihelion.AccessibleDescription = "Enables/disables the argument of perihelion for the search"; - this.menuitemSearchArgumentOfPerihelion.AccessibleName = "Enables/disables the argument of perihelion for the search"; - this.menuitemSearchArgumentOfPerihelion.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemSearchArgumentOfPerihelion.AutoToolTip = true; - this.menuitemSearchArgumentOfPerihelion.Checked = true; - this.menuitemSearchArgumentOfPerihelion.CheckOnClick = true; - this.menuitemSearchArgumentOfPerihelion.CheckState = System.Windows.Forms.CheckState.Checked; - this.menuitemSearchArgumentOfPerihelion.Name = "menuitemSearchArgumentOfPerihelion"; - this.menuitemSearchArgumentOfPerihelion.Size = new System.Drawing.Size(308, 22); - this.menuitemSearchArgumentOfPerihelion.Text = "Argument of perihelion, J2000.0 (°)"; - this.menuitemSearchArgumentOfPerihelion.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemSearchArgumentOfPerihelion.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemSearchArgumentOfPerihelion.AccessibleDescription = "Enables/disables the argument of perihelion for the search"; + menuitemSearchArgumentOfPerihelion.AccessibleName = "Enables/disables the argument of perihelion for the search"; + menuitemSearchArgumentOfPerihelion.AccessibleRole = AccessibleRole.MenuItem; + menuitemSearchArgumentOfPerihelion.AutoToolTip = true; + menuitemSearchArgumentOfPerihelion.Checked = true; + menuitemSearchArgumentOfPerihelion.CheckOnClick = true; + menuitemSearchArgumentOfPerihelion.CheckState = CheckState.Checked; + menuitemSearchArgumentOfPerihelion.Name = "menuitemSearchArgumentOfPerihelion"; + menuitemSearchArgumentOfPerihelion.Size = new Size(308, 22); + menuitemSearchArgumentOfPerihelion.Text = "Argument of perihelion, J2000.0 (°)"; + menuitemSearchArgumentOfPerihelion.MouseEnter += SetStatusbar_Enter; + menuitemSearchArgumentOfPerihelion.MouseLeave += ClearStatusbar_Leave; // // menuitemSearchLongitudeOfTheAscendingNode // - this.menuitemSearchLongitudeOfTheAscendingNode.AccessibleDescription = "Enables/disables the longitude of the ascending node for the search"; - this.menuitemSearchLongitudeOfTheAscendingNode.AccessibleName = "Enables/disables the longitude of the ascending node for the search"; - this.menuitemSearchLongitudeOfTheAscendingNode.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemSearchLongitudeOfTheAscendingNode.AutoToolTip = true; - this.menuitemSearchLongitudeOfTheAscendingNode.Checked = true; - this.menuitemSearchLongitudeOfTheAscendingNode.CheckOnClick = true; - this.menuitemSearchLongitudeOfTheAscendingNode.CheckState = System.Windows.Forms.CheckState.Checked; - this.menuitemSearchLongitudeOfTheAscendingNode.Name = "menuitemSearchLongitudeOfTheAscendingNode"; - this.menuitemSearchLongitudeOfTheAscendingNode.Size = new System.Drawing.Size(308, 22); - this.menuitemSearchLongitudeOfTheAscendingNode.Text = "Longitude of the ascending node, J2000.0 (°)"; - this.menuitemSearchLongitudeOfTheAscendingNode.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemSearchLongitudeOfTheAscendingNode.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemSearchLongitudeOfTheAscendingNode.AccessibleDescription = "Enables/disables the longitude of the ascending node for the search"; + menuitemSearchLongitudeOfTheAscendingNode.AccessibleName = "Enables/disables the longitude of the ascending node for the search"; + menuitemSearchLongitudeOfTheAscendingNode.AccessibleRole = AccessibleRole.MenuItem; + menuitemSearchLongitudeOfTheAscendingNode.AutoToolTip = true; + menuitemSearchLongitudeOfTheAscendingNode.Checked = true; + menuitemSearchLongitudeOfTheAscendingNode.CheckOnClick = true; + menuitemSearchLongitudeOfTheAscendingNode.CheckState = CheckState.Checked; + menuitemSearchLongitudeOfTheAscendingNode.Name = "menuitemSearchLongitudeOfTheAscendingNode"; + menuitemSearchLongitudeOfTheAscendingNode.Size = new Size(308, 22); + menuitemSearchLongitudeOfTheAscendingNode.Text = "Longitude of the ascending node, J2000.0 (°)"; + menuitemSearchLongitudeOfTheAscendingNode.MouseEnter += SetStatusbar_Enter; + menuitemSearchLongitudeOfTheAscendingNode.MouseLeave += ClearStatusbar_Leave; // // menuitemSearchInclination // - this.menuitemSearchInclination.AccessibleDescription = "Enables/disables the inclination to the ecliptic for the search"; - this.menuitemSearchInclination.AccessibleName = "Enables/disables the inclination to the ecliptic for the search"; - this.menuitemSearchInclination.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemSearchInclination.AutoToolTip = true; - this.menuitemSearchInclination.Checked = true; - this.menuitemSearchInclination.CheckOnClick = true; - this.menuitemSearchInclination.CheckState = System.Windows.Forms.CheckState.Checked; - this.menuitemSearchInclination.Name = "menuitemSearchInclination"; - this.menuitemSearchInclination.Size = new System.Drawing.Size(308, 22); - this.menuitemSearchInclination.Text = "Inclination to the ecliptic, J2000.0 (°)"; - this.menuitemSearchInclination.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemSearchInclination.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemSearchInclination.AccessibleDescription = "Enables/disables the inclination to the ecliptic for the search"; + menuitemSearchInclination.AccessibleName = "Enables/disables the inclination to the ecliptic for the search"; + menuitemSearchInclination.AccessibleRole = AccessibleRole.MenuItem; + menuitemSearchInclination.AutoToolTip = true; + menuitemSearchInclination.Checked = true; + menuitemSearchInclination.CheckOnClick = true; + menuitemSearchInclination.CheckState = CheckState.Checked; + menuitemSearchInclination.Name = "menuitemSearchInclination"; + menuitemSearchInclination.Size = new Size(308, 22); + menuitemSearchInclination.Text = "Inclination to the ecliptic, J2000.0 (°)"; + menuitemSearchInclination.MouseEnter += SetStatusbar_Enter; + menuitemSearchInclination.MouseLeave += ClearStatusbar_Leave; // // menuitemSearchOrbitalEccentricity // - this.menuitemSearchOrbitalEccentricity.AccessibleDescription = "Enables/disables the orbital eccentricity for the search"; - this.menuitemSearchOrbitalEccentricity.AccessibleName = "Enables/disables the orbital eccentricity for the search"; - this.menuitemSearchOrbitalEccentricity.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemSearchOrbitalEccentricity.AutoToolTip = true; - this.menuitemSearchOrbitalEccentricity.Checked = true; - this.menuitemSearchOrbitalEccentricity.CheckOnClick = true; - this.menuitemSearchOrbitalEccentricity.CheckState = System.Windows.Forms.CheckState.Checked; - this.menuitemSearchOrbitalEccentricity.Name = "menuitemSearchOrbitalEccentricity"; - this.menuitemSearchOrbitalEccentricity.Size = new System.Drawing.Size(308, 22); - this.menuitemSearchOrbitalEccentricity.Text = "Orbital eccentricity"; - this.menuitemSearchOrbitalEccentricity.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemSearchOrbitalEccentricity.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemSearchOrbitalEccentricity.AccessibleDescription = "Enables/disables the orbital eccentricity for the search"; + menuitemSearchOrbitalEccentricity.AccessibleName = "Enables/disables the orbital eccentricity for the search"; + menuitemSearchOrbitalEccentricity.AccessibleRole = AccessibleRole.MenuItem; + menuitemSearchOrbitalEccentricity.AutoToolTip = true; + menuitemSearchOrbitalEccentricity.Checked = true; + menuitemSearchOrbitalEccentricity.CheckOnClick = true; + menuitemSearchOrbitalEccentricity.CheckState = CheckState.Checked; + menuitemSearchOrbitalEccentricity.Name = "menuitemSearchOrbitalEccentricity"; + menuitemSearchOrbitalEccentricity.Size = new Size(308, 22); + menuitemSearchOrbitalEccentricity.Text = "Orbital eccentricity"; + menuitemSearchOrbitalEccentricity.MouseEnter += SetStatusbar_Enter; + menuitemSearchOrbitalEccentricity.MouseLeave += ClearStatusbar_Leave; // // menuitemSearchMeanDailyMotion // - this.menuitemSearchMeanDailyMotion.AccessibleDescription = "Enables/disables the mean daily motion for the search"; - this.menuitemSearchMeanDailyMotion.AccessibleName = "Enables/disables the mean daily motion for the search"; - this.menuitemSearchMeanDailyMotion.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemSearchMeanDailyMotion.AutoToolTip = true; - this.menuitemSearchMeanDailyMotion.Checked = true; - this.menuitemSearchMeanDailyMotion.CheckOnClick = true; - this.menuitemSearchMeanDailyMotion.CheckState = System.Windows.Forms.CheckState.Checked; - this.menuitemSearchMeanDailyMotion.Name = "menuitemSearchMeanDailyMotion"; - this.menuitemSearchMeanDailyMotion.Size = new System.Drawing.Size(308, 22); - this.menuitemSearchMeanDailyMotion.Text = "Mean daily motion (°/day)"; - this.menuitemSearchMeanDailyMotion.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemSearchMeanDailyMotion.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemSearchMeanDailyMotion.AccessibleDescription = "Enables/disables the mean daily motion for the search"; + menuitemSearchMeanDailyMotion.AccessibleName = "Enables/disables the mean daily motion for the search"; + menuitemSearchMeanDailyMotion.AccessibleRole = AccessibleRole.MenuItem; + menuitemSearchMeanDailyMotion.AutoToolTip = true; + menuitemSearchMeanDailyMotion.Checked = true; + menuitemSearchMeanDailyMotion.CheckOnClick = true; + menuitemSearchMeanDailyMotion.CheckState = CheckState.Checked; + menuitemSearchMeanDailyMotion.Name = "menuitemSearchMeanDailyMotion"; + menuitemSearchMeanDailyMotion.Size = new Size(308, 22); + menuitemSearchMeanDailyMotion.Text = "Mean daily motion (°/day)"; + menuitemSearchMeanDailyMotion.MouseEnter += SetStatusbar_Enter; + menuitemSearchMeanDailyMotion.MouseLeave += ClearStatusbar_Leave; // // menuitemSearchSemiMajorAxis // - this.menuitemSearchSemiMajorAxis.AccessibleDescription = "Enables/disables the semi major axis for the search"; - this.menuitemSearchSemiMajorAxis.AccessibleName = "Enables/disables the semi major axis for the search"; - this.menuitemSearchSemiMajorAxis.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemSearchSemiMajorAxis.AutoToolTip = true; - this.menuitemSearchSemiMajorAxis.Checked = true; - this.menuitemSearchSemiMajorAxis.CheckOnClick = true; - this.menuitemSearchSemiMajorAxis.CheckState = System.Windows.Forms.CheckState.Checked; - this.menuitemSearchSemiMajorAxis.Name = "menuitemSearchSemiMajorAxis"; - this.menuitemSearchSemiMajorAxis.Size = new System.Drawing.Size(308, 22); - this.menuitemSearchSemiMajorAxis.Text = "Semi-major axis (AU)"; - this.menuitemSearchSemiMajorAxis.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemSearchSemiMajorAxis.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemSearchSemiMajorAxis.AccessibleDescription = "Enables/disables the semi major axis for the search"; + menuitemSearchSemiMajorAxis.AccessibleName = "Enables/disables the semi major axis for the search"; + menuitemSearchSemiMajorAxis.AccessibleRole = AccessibleRole.MenuItem; + menuitemSearchSemiMajorAxis.AutoToolTip = true; + menuitemSearchSemiMajorAxis.Checked = true; + menuitemSearchSemiMajorAxis.CheckOnClick = true; + menuitemSearchSemiMajorAxis.CheckState = CheckState.Checked; + menuitemSearchSemiMajorAxis.Name = "menuitemSearchSemiMajorAxis"; + menuitemSearchSemiMajorAxis.Size = new Size(308, 22); + menuitemSearchSemiMajorAxis.Text = "Semi-major axis (AU)"; + menuitemSearchSemiMajorAxis.MouseEnter += SetStatusbar_Enter; + menuitemSearchSemiMajorAxis.MouseLeave += ClearStatusbar_Leave; // // menuitemSearchAbsoluteMagnitude // - this.menuitemSearchAbsoluteMagnitude.AccessibleDescription = "Enables/disables the index number for the search"; - this.menuitemSearchAbsoluteMagnitude.AccessibleName = "Enables/disables the index number for the search"; - this.menuitemSearchAbsoluteMagnitude.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemSearchAbsoluteMagnitude.AutoToolTip = true; - this.menuitemSearchAbsoluteMagnitude.Checked = true; - this.menuitemSearchAbsoluteMagnitude.CheckOnClick = true; - this.menuitemSearchAbsoluteMagnitude.CheckState = System.Windows.Forms.CheckState.Checked; - this.menuitemSearchAbsoluteMagnitude.Name = "menuitemSearchAbsoluteMagnitude"; - this.menuitemSearchAbsoluteMagnitude.Size = new System.Drawing.Size(308, 22); - this.menuitemSearchAbsoluteMagnitude.Text = "Absolute magnitude, H (mag)"; - this.menuitemSearchAbsoluteMagnitude.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemSearchAbsoluteMagnitude.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemSearchAbsoluteMagnitude.AccessibleDescription = "Enables/disables the index number for the search"; + menuitemSearchAbsoluteMagnitude.AccessibleName = "Enables/disables the index number for the search"; + menuitemSearchAbsoluteMagnitude.AccessibleRole = AccessibleRole.MenuItem; + menuitemSearchAbsoluteMagnitude.AutoToolTip = true; + menuitemSearchAbsoluteMagnitude.Checked = true; + menuitemSearchAbsoluteMagnitude.CheckOnClick = true; + menuitemSearchAbsoluteMagnitude.CheckState = CheckState.Checked; + menuitemSearchAbsoluteMagnitude.Name = "menuitemSearchAbsoluteMagnitude"; + menuitemSearchAbsoluteMagnitude.Size = new Size(308, 22); + menuitemSearchAbsoluteMagnitude.Text = "Absolute magnitude, H (mag)"; + menuitemSearchAbsoluteMagnitude.MouseEnter += SetStatusbar_Enter; + menuitemSearchAbsoluteMagnitude.MouseLeave += ClearStatusbar_Leave; // // menuitemSearchSlopeParameter // - this.menuitemSearchSlopeParameter.AccessibleDescription = "Enables/disables the slope parameter for the search"; - this.menuitemSearchSlopeParameter.AccessibleName = "Enables/disables the slope parameter for the search"; - this.menuitemSearchSlopeParameter.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemSearchSlopeParameter.AutoToolTip = true; - this.menuitemSearchSlopeParameter.Checked = true; - this.menuitemSearchSlopeParameter.CheckOnClick = true; - this.menuitemSearchSlopeParameter.CheckState = System.Windows.Forms.CheckState.Checked; - this.menuitemSearchSlopeParameter.Name = "menuitemSearchSlopeParameter"; - this.menuitemSearchSlopeParameter.Size = new System.Drawing.Size(308, 22); - this.menuitemSearchSlopeParameter.Text = "Slope parameter, G"; - this.menuitemSearchSlopeParameter.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemSearchSlopeParameter.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemSearchSlopeParameter.AccessibleDescription = "Enables/disables the slope parameter for the search"; + menuitemSearchSlopeParameter.AccessibleName = "Enables/disables the slope parameter for the search"; + menuitemSearchSlopeParameter.AccessibleRole = AccessibleRole.MenuItem; + menuitemSearchSlopeParameter.AutoToolTip = true; + menuitemSearchSlopeParameter.Checked = true; + menuitemSearchSlopeParameter.CheckOnClick = true; + menuitemSearchSlopeParameter.CheckState = CheckState.Checked; + menuitemSearchSlopeParameter.Name = "menuitemSearchSlopeParameter"; + menuitemSearchSlopeParameter.Size = new Size(308, 22); + menuitemSearchSlopeParameter.Text = "Slope parameter, G"; + menuitemSearchSlopeParameter.MouseEnter += SetStatusbar_Enter; + menuitemSearchSlopeParameter.MouseLeave += ClearStatusbar_Leave; // // menuitemSearchReference // - this.menuitemSearchReference.AccessibleDescription = "Enables/disables the reference for the search"; - this.menuitemSearchReference.AccessibleName = "Enables/disables the reference for the search"; - this.menuitemSearchReference.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemSearchReference.AutoToolTip = true; - this.menuitemSearchReference.Checked = true; - this.menuitemSearchReference.CheckOnClick = true; - this.menuitemSearchReference.CheckState = System.Windows.Forms.CheckState.Checked; - this.menuitemSearchReference.Name = "menuitemSearchReference"; - this.menuitemSearchReference.Size = new System.Drawing.Size(308, 22); - this.menuitemSearchReference.Text = "Reference"; - this.menuitemSearchReference.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemSearchReference.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemSearchReference.AccessibleDescription = "Enables/disables the reference for the search"; + menuitemSearchReference.AccessibleName = "Enables/disables the reference for the search"; + menuitemSearchReference.AccessibleRole = AccessibleRole.MenuItem; + menuitemSearchReference.AutoToolTip = true; + menuitemSearchReference.Checked = true; + menuitemSearchReference.CheckOnClick = true; + menuitemSearchReference.CheckState = CheckState.Checked; + menuitemSearchReference.Name = "menuitemSearchReference"; + menuitemSearchReference.Size = new Size(308, 22); + menuitemSearchReference.Text = "Reference"; + menuitemSearchReference.MouseEnter += SetStatusbar_Enter; + menuitemSearchReference.MouseLeave += ClearStatusbar_Leave; // // menuitemSearchNumberOfOppositions // - this.menuitemSearchNumberOfOppositions.AccessibleDescription = "Enables/disables the number of oppositions for the search"; - this.menuitemSearchNumberOfOppositions.AccessibleName = "Enables/disables the number of oppositions for the search"; - this.menuitemSearchNumberOfOppositions.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemSearchNumberOfOppositions.AutoToolTip = true; - this.menuitemSearchNumberOfOppositions.Checked = true; - this.menuitemSearchNumberOfOppositions.CheckOnClick = true; - this.menuitemSearchNumberOfOppositions.CheckState = System.Windows.Forms.CheckState.Checked; - this.menuitemSearchNumberOfOppositions.Name = "menuitemSearchNumberOfOppositions"; - this.menuitemSearchNumberOfOppositions.Size = new System.Drawing.Size(308, 22); - this.menuitemSearchNumberOfOppositions.Text = "Number of oppositions"; - this.menuitemSearchNumberOfOppositions.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemSearchNumberOfOppositions.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemSearchNumberOfOppositions.AccessibleDescription = "Enables/disables the number of oppositions for the search"; + menuitemSearchNumberOfOppositions.AccessibleName = "Enables/disables the number of oppositions for the search"; + menuitemSearchNumberOfOppositions.AccessibleRole = AccessibleRole.MenuItem; + menuitemSearchNumberOfOppositions.AutoToolTip = true; + menuitemSearchNumberOfOppositions.Checked = true; + menuitemSearchNumberOfOppositions.CheckOnClick = true; + menuitemSearchNumberOfOppositions.CheckState = CheckState.Checked; + menuitemSearchNumberOfOppositions.Name = "menuitemSearchNumberOfOppositions"; + menuitemSearchNumberOfOppositions.Size = new Size(308, 22); + menuitemSearchNumberOfOppositions.Text = "Number of oppositions"; + menuitemSearchNumberOfOppositions.MouseEnter += SetStatusbar_Enter; + menuitemSearchNumberOfOppositions.MouseLeave += ClearStatusbar_Leave; // // menuitemSearchNumberOfObservations // - this.menuitemSearchNumberOfObservations.AccessibleDescription = "Enables/disables the number of observations for the search"; - this.menuitemSearchNumberOfObservations.AccessibleName = "Enables/disables the number of observations for the search"; - this.menuitemSearchNumberOfObservations.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemSearchNumberOfObservations.AutoToolTip = true; - this.menuitemSearchNumberOfObservations.Checked = true; - this.menuitemSearchNumberOfObservations.CheckOnClick = true; - this.menuitemSearchNumberOfObservations.CheckState = System.Windows.Forms.CheckState.Checked; - this.menuitemSearchNumberOfObservations.Name = "menuitemSearchNumberOfObservations"; - this.menuitemSearchNumberOfObservations.Size = new System.Drawing.Size(308, 22); - this.menuitemSearchNumberOfObservations.Text = "Number of observations"; - this.menuitemSearchNumberOfObservations.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemSearchNumberOfObservations.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemSearchNumberOfObservations.AccessibleDescription = "Enables/disables the number of observations for the search"; + menuitemSearchNumberOfObservations.AccessibleName = "Enables/disables the number of observations for the search"; + menuitemSearchNumberOfObservations.AccessibleRole = AccessibleRole.MenuItem; + menuitemSearchNumberOfObservations.AutoToolTip = true; + menuitemSearchNumberOfObservations.Checked = true; + menuitemSearchNumberOfObservations.CheckOnClick = true; + menuitemSearchNumberOfObservations.CheckState = CheckState.Checked; + menuitemSearchNumberOfObservations.Name = "menuitemSearchNumberOfObservations"; + menuitemSearchNumberOfObservations.Size = new Size(308, 22); + menuitemSearchNumberOfObservations.Text = "Number of observations"; + menuitemSearchNumberOfObservations.MouseEnter += SetStatusbar_Enter; + menuitemSearchNumberOfObservations.MouseLeave += ClearStatusbar_Leave; // // menuitemSearchObservationSpan // - this.menuitemSearchObservationSpan.AccessibleDescription = "Enables/disables the observation span for the search"; - this.menuitemSearchObservationSpan.AccessibleName = "Enables/disables the observation span for the search"; - this.menuitemSearchObservationSpan.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemSearchObservationSpan.AutoToolTip = true; - this.menuitemSearchObservationSpan.Checked = true; - this.menuitemSearchObservationSpan.CheckOnClick = true; - this.menuitemSearchObservationSpan.CheckState = System.Windows.Forms.CheckState.Checked; - this.menuitemSearchObservationSpan.Name = "menuitemSearchObservationSpan"; - this.menuitemSearchObservationSpan.Size = new System.Drawing.Size(308, 22); - this.menuitemSearchObservationSpan.Text = "Observation span"; - this.menuitemSearchObservationSpan.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemSearchObservationSpan.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemSearchObservationSpan.AccessibleDescription = "Enables/disables the observation span for the search"; + menuitemSearchObservationSpan.AccessibleName = "Enables/disables the observation span for the search"; + menuitemSearchObservationSpan.AccessibleRole = AccessibleRole.MenuItem; + menuitemSearchObservationSpan.AutoToolTip = true; + menuitemSearchObservationSpan.Checked = true; + menuitemSearchObservationSpan.CheckOnClick = true; + menuitemSearchObservationSpan.CheckState = CheckState.Checked; + menuitemSearchObservationSpan.Name = "menuitemSearchObservationSpan"; + menuitemSearchObservationSpan.Size = new Size(308, 22); + menuitemSearchObservationSpan.Text = "Observation span"; + menuitemSearchObservationSpan.MouseEnter += SetStatusbar_Enter; + menuitemSearchObservationSpan.MouseLeave += ClearStatusbar_Leave; // // menuitemSearchRmsResidual // - this.menuitemSearchRmsResidual.AccessibleDescription = "Enables/disables the r.m.s. residual for the search"; - this.menuitemSearchRmsResidual.AccessibleName = "Enables/disables the r.m.s. residual for the search"; - this.menuitemSearchRmsResidual.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemSearchRmsResidual.AutoToolTip = true; - this.menuitemSearchRmsResidual.Checked = true; - this.menuitemSearchRmsResidual.CheckOnClick = true; - this.menuitemSearchRmsResidual.CheckState = System.Windows.Forms.CheckState.Checked; - this.menuitemSearchRmsResidual.Name = "menuitemSearchRmsResidual"; - this.menuitemSearchRmsResidual.Size = new System.Drawing.Size(308, 22); - this.menuitemSearchRmsResidual.Text = "r.m.s. residual (\")"; - this.menuitemSearchRmsResidual.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemSearchRmsResidual.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemSearchRmsResidual.AccessibleDescription = "Enables/disables the r.m.s. residual for the search"; + menuitemSearchRmsResidual.AccessibleName = "Enables/disables the r.m.s. residual for the search"; + menuitemSearchRmsResidual.AccessibleRole = AccessibleRole.MenuItem; + menuitemSearchRmsResidual.AutoToolTip = true; + menuitemSearchRmsResidual.Checked = true; + menuitemSearchRmsResidual.CheckOnClick = true; + menuitemSearchRmsResidual.CheckState = CheckState.Checked; + menuitemSearchRmsResidual.Name = "menuitemSearchRmsResidual"; + menuitemSearchRmsResidual.Size = new Size(308, 22); + menuitemSearchRmsResidual.Text = "r.m.s. residual (\")"; + menuitemSearchRmsResidual.MouseEnter += SetStatusbar_Enter; + menuitemSearchRmsResidual.MouseLeave += ClearStatusbar_Leave; // // menuitemSearchComputerName // - this.menuitemSearchComputerName.AccessibleDescription = "Enables/disables the computer name for the search"; - this.menuitemSearchComputerName.AccessibleName = "Enables/disables the computer name for the search"; - this.menuitemSearchComputerName.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemSearchComputerName.AutoToolTip = true; - this.menuitemSearchComputerName.Checked = true; - this.menuitemSearchComputerName.CheckOnClick = true; - this.menuitemSearchComputerName.CheckState = System.Windows.Forms.CheckState.Checked; - this.menuitemSearchComputerName.Name = "menuitemSearchComputerName"; - this.menuitemSearchComputerName.Size = new System.Drawing.Size(308, 22); - this.menuitemSearchComputerName.Text = "Computer name"; - this.menuitemSearchComputerName.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemSearchComputerName.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemSearchComputerName.AccessibleDescription = "Enables/disables the computer name for the search"; + menuitemSearchComputerName.AccessibleName = "Enables/disables the computer name for the search"; + menuitemSearchComputerName.AccessibleRole = AccessibleRole.MenuItem; + menuitemSearchComputerName.AutoToolTip = true; + menuitemSearchComputerName.Checked = true; + menuitemSearchComputerName.CheckOnClick = true; + menuitemSearchComputerName.CheckState = CheckState.Checked; + menuitemSearchComputerName.Name = "menuitemSearchComputerName"; + menuitemSearchComputerName.Size = new Size(308, 22); + menuitemSearchComputerName.Text = "Computer name"; + menuitemSearchComputerName.MouseEnter += SetStatusbar_Enter; + menuitemSearchComputerName.MouseLeave += ClearStatusbar_Leave; // // menuitemSearchDateOfTheLastObservation // - this.menuitemSearchDateOfTheLastObservation.AccessibleDescription = "Enables/disables the date of the last observation for the search"; - this.menuitemSearchDateOfTheLastObservation.AccessibleName = "Enables/disables the date of the last observation for the search"; - this.menuitemSearchDateOfTheLastObservation.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemSearchDateOfTheLastObservation.AutoToolTip = true; - this.menuitemSearchDateOfTheLastObservation.Checked = true; - this.menuitemSearchDateOfTheLastObservation.CheckOnClick = true; - this.menuitemSearchDateOfTheLastObservation.CheckState = System.Windows.Forms.CheckState.Checked; - this.menuitemSearchDateOfTheLastObservation.Name = "menuitemSearchDateOfTheLastObservation"; - this.menuitemSearchDateOfTheLastObservation.Size = new System.Drawing.Size(308, 22); - this.menuitemSearchDateOfTheLastObservation.Text = "Date of the last observation (YYYDDMM)"; - this.menuitemSearchDateOfTheLastObservation.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemSearchDateOfTheLastObservation.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemSearchDateOfTheLastObservation.AccessibleDescription = "Enables/disables the date of the last observation for the search"; + menuitemSearchDateOfTheLastObservation.AccessibleName = "Enables/disables the date of the last observation for the search"; + menuitemSearchDateOfTheLastObservation.AccessibleRole = AccessibleRole.MenuItem; + menuitemSearchDateOfTheLastObservation.AutoToolTip = true; + menuitemSearchDateOfTheLastObservation.Checked = true; + menuitemSearchDateOfTheLastObservation.CheckOnClick = true; + menuitemSearchDateOfTheLastObservation.CheckState = CheckState.Checked; + menuitemSearchDateOfTheLastObservation.Name = "menuitemSearchDateOfTheLastObservation"; + menuitemSearchDateOfTheLastObservation.Size = new Size(308, 22); + menuitemSearchDateOfTheLastObservation.Text = "Date of the last observation (YYYDDMM)"; + menuitemSearchDateOfTheLastObservation.MouseEnter += SetStatusbar_Enter; + menuitemSearchDateOfTheLastObservation.MouseLeave += ClearStatusbar_Leave; // // menuitemSearchFlags // - this.menuitemSearchFlags.AccessibleDescription = "Enables/disables the 4-hexdigit flags for the search"; - this.menuitemSearchFlags.AccessibleName = "Enables/disables the 4-hexdigit flags for the search"; - this.menuitemSearchFlags.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem; - this.menuitemSearchFlags.AutoToolTip = true; - this.menuitemSearchFlags.Checked = true; - this.menuitemSearchFlags.CheckOnClick = true; - this.menuitemSearchFlags.CheckState = System.Windows.Forms.CheckState.Checked; - this.menuitemSearchFlags.Name = "menuitemSearchFlags"; - this.menuitemSearchFlags.Size = new System.Drawing.Size(308, 22); - this.menuitemSearchFlags.Text = "4-hexdigit flags"; - this.menuitemSearchFlags.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.menuitemSearchFlags.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + menuitemSearchFlags.AccessibleDescription = "Enables/disables the 4-hexdigit flags for the search"; + menuitemSearchFlags.AccessibleName = "Enables/disables the 4-hexdigit flags for the search"; + menuitemSearchFlags.AccessibleRole = AccessibleRole.MenuItem; + menuitemSearchFlags.AutoToolTip = true; + menuitemSearchFlags.Checked = true; + menuitemSearchFlags.CheckOnClick = true; + menuitemSearchFlags.CheckState = CheckState.Checked; + menuitemSearchFlags.Name = "menuitemSearchFlags"; + menuitemSearchFlags.Size = new Size(308, 22); + menuitemSearchFlags.Text = "4-hexdigit flags"; + menuitemSearchFlags.MouseEnter += SetStatusbar_Enter; + menuitemSearchFlags.MouseLeave += ClearStatusbar_Leave; // // toolStripNavigation // - this.toolStripNavigation.AccessibleDescription = "Toolbar of the navigation"; - this.toolStripNavigation.AccessibleName = "Toolbar of the navigation"; - this.toolStripNavigation.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar; - this.toolStripNavigation.Dock = System.Windows.Forms.DockStyle.None; - this.toolStripNavigation.Font = new System.Drawing.Font("Segoe UI", 9F); - this.toolStripNavigation.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.toolStripButtonLoadRandomMinorPlanet, - this.toolStripSeparator8, - this.toolStripButtonStepToBegin, - this.toolStripSplitButtonStepBackward, - this.toolStripButtonStepBackwardOne, - this.toolStripButtonStepForwardOne, - this.toolStripSplitButtonStepForward, - this.toolStripButtonStepToEnd, - this.toolStripSeparator6, - this.toolStripLabelGoToIndex, - this.toolStripTextBoxGotoIndex, - this.toolStripButtonGoToIndex, - this.toolStripSeparator7, - this.toolStripLabelIndexPosition, - this.toolStripSeparator9, - this.toolStripButtonDerivatedOrbitElements, - this.toolStripButtonFilter}); - this.toolStripNavigation.Location = new System.Drawing.Point(0, 49); - this.toolStripNavigation.Name = "toolStripNavigation"; - this.toolStripNavigation.Size = new System.Drawing.Size(804, 25); - this.toolStripNavigation.Stretch = true; - this.toolStripNavigation.TabIndex = 2; - this.toolStripNavigation.Text = "Navigation"; - this.toolStripNavigation.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripNavigation.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.toolStripNavigation.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripNavigation.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripNavigation.AccessibleDescription = "Toolbar of the navigation"; + toolStripNavigation.AccessibleName = "Toolbar of the navigation"; + toolStripNavigation.AccessibleRole = AccessibleRole.ToolBar; + toolStripNavigation.Dock = DockStyle.None; + toolStripNavigation.Font = new Font("Segoe UI", 9F, FontStyle.Regular, GraphicsUnit.Point); + toolStripNavigation.Items.AddRange(new ToolStripItem[] { toolStripButtonLoadRandomMinorPlanet, toolStripSeparator8, toolStripButtonStepToBegin, toolStripSplitButtonStepBackward, toolStripButtonStepBackwardOne, toolStripButtonStepForwardOne, toolStripSplitButtonStepForward, toolStripButtonStepToEnd, toolStripSeparator6, toolStripLabelGoToIndex, toolStripTextBoxGotoIndex, toolStripButtonGoToIndex, toolStripSeparator7, toolStripLabelIndexPosition, toolStripSeparator9, toolStripButtonDerivatedOrbitElements, toolStripButtonFilter }); + toolStripNavigation.Location = new Point(0, 49); + toolStripNavigation.Name = "toolStripNavigation"; + toolStripNavigation.Size = new Size(804, 25); + toolStripNavigation.Stretch = true; + toolStripNavigation.TabIndex = 2; + toolStripNavigation.Text = "Navigation"; + toolStripNavigation.Enter += SetStatusbar_Enter; + toolStripNavigation.Leave += ClearStatusbar_Leave; + toolStripNavigation.MouseEnter += SetStatusbar_Enter; + toolStripNavigation.MouseLeave += ClearStatusbar_Leave; // // toolStripButtonLoadRandomMinorPlanet // - this.toolStripButtonLoadRandomMinorPlanet.AccessibleDescription = "Loads a random minor planet"; - this.toolStripButtonLoadRandomMinorPlanet.AccessibleName = "Random minor planet"; - this.toolStripButtonLoadRandomMinorPlanet.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.toolStripButtonLoadRandomMinorPlanet.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.toolStripButtonLoadRandomMinorPlanet.Image = global::Planetoid_DB.Properties.Resources.silk_arrow_refresh; - this.toolStripButtonLoadRandomMinorPlanet.ImageTransparentColor = System.Drawing.Color.Magenta; - this.toolStripButtonLoadRandomMinorPlanet.Name = "toolStripButtonLoadRandomMinorPlanet"; - this.toolStripButtonLoadRandomMinorPlanet.Size = new System.Drawing.Size(23, 22); - this.toolStripButtonLoadRandomMinorPlanet.Text = "Random minor planet"; - this.toolStripButtonLoadRandomMinorPlanet.Click += new System.EventHandler(this.ToolStripButtonLoadRandomMinorPlanet_Click); - this.toolStripButtonLoadRandomMinorPlanet.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripButtonLoadRandomMinorPlanet.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripButtonLoadRandomMinorPlanet.AccessibleDescription = "Loads a random minor planet"; + toolStripButtonLoadRandomMinorPlanet.AccessibleName = "Random minor planet"; + toolStripButtonLoadRandomMinorPlanet.AccessibleRole = AccessibleRole.PushButton; + toolStripButtonLoadRandomMinorPlanet.DisplayStyle = ToolStripItemDisplayStyle.Image; + toolStripButtonLoadRandomMinorPlanet.Image = Properties.Resources.silk_arrow_refresh; + toolStripButtonLoadRandomMinorPlanet.ImageTransparentColor = Color.Magenta; + toolStripButtonLoadRandomMinorPlanet.Name = "toolStripButtonLoadRandomMinorPlanet"; + toolStripButtonLoadRandomMinorPlanet.Size = new Size(23, 22); + toolStripButtonLoadRandomMinorPlanet.Text = "Random minor planet"; + toolStripButtonLoadRandomMinorPlanet.Click += ToolStripButtonLoadRandomMinorPlanet_Click; + toolStripButtonLoadRandomMinorPlanet.MouseEnter += SetStatusbar_Enter; + toolStripButtonLoadRandomMinorPlanet.MouseLeave += ClearStatusbar_Leave; // // toolStripSeparator8 // - this.toolStripSeparator8.AccessibleDescription = "Just a separator"; - this.toolStripSeparator8.AccessibleName = "Just a separator"; - this.toolStripSeparator8.AccessibleRole = System.Windows.Forms.AccessibleRole.Separator; - this.toolStripSeparator8.Name = "toolStripSeparator8"; - this.toolStripSeparator8.Size = new System.Drawing.Size(6, 25); - this.toolStripSeparator8.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripSeparator8.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripSeparator8.AccessibleDescription = "Just a separator"; + toolStripSeparator8.AccessibleName = "Just a separator"; + toolStripSeparator8.AccessibleRole = AccessibleRole.Separator; + toolStripSeparator8.Name = "toolStripSeparator8"; + toolStripSeparator8.Size = new Size(6, 25); + toolStripSeparator8.MouseEnter += SetStatusbar_Enter; + toolStripSeparator8.MouseLeave += ClearStatusbar_Leave; // // toolStripButtonStepToBegin // - this.toolStripButtonStepToBegin.AccessibleDescription = "Navigates to the begin of the data"; - this.toolStripButtonStepToBegin.AccessibleName = "Begin of the data"; - this.toolStripButtonStepToBegin.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.toolStripButtonStepToBegin.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.toolStripButtonStepToBegin.Image = global::Planetoid_DB.Properties.Resources.silk_backward_end_green; - this.toolStripButtonStepToBegin.ImageTransparentColor = System.Drawing.Color.Magenta; - this.toolStripButtonStepToBegin.Name = "toolStripButtonStepToBegin"; - this.toolStripButtonStepToBegin.Size = new System.Drawing.Size(23, 22); - this.toolStripButtonStepToBegin.Text = "Begin of the data"; - this.toolStripButtonStepToBegin.Click += new System.EventHandler(this.ToolStripButtonStepToBegin_Click); - this.toolStripButtonStepToBegin.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripButtonStepToBegin.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripButtonStepToBegin.AccessibleDescription = "Navigates to the begin of the data"; + toolStripButtonStepToBegin.AccessibleName = "Begin of the data"; + toolStripButtonStepToBegin.AccessibleRole = AccessibleRole.PushButton; + toolStripButtonStepToBegin.DisplayStyle = ToolStripItemDisplayStyle.Image; + toolStripButtonStepToBegin.Image = Properties.Resources.silk_backward_end_green; + toolStripButtonStepToBegin.ImageTransparentColor = Color.Magenta; + toolStripButtonStepToBegin.Name = "toolStripButtonStepToBegin"; + toolStripButtonStepToBegin.Size = new Size(23, 22); + toolStripButtonStepToBegin.Text = "Begin of the data"; + toolStripButtonStepToBegin.Click += ToolStripButtonStepToBegin_Click; + toolStripButtonStepToBegin.MouseEnter += SetStatusbar_Enter; + toolStripButtonStepToBegin.MouseLeave += ClearStatusbar_Leave; // // toolStripButtonStepBackwardOne // - this.toolStripButtonStepBackwardOne.AccessibleDescription = "Navigates to the previous data"; - this.toolStripButtonStepBackwardOne.AccessibleName = "Navigate to the previous data"; - this.toolStripButtonStepBackwardOne.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.toolStripButtonStepBackwardOne.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.toolStripButtonStepBackwardOne.Image = global::Planetoid_DB.Properties.Resources.silk_backward_1_green; - this.toolStripButtonStepBackwardOne.ImageTransparentColor = System.Drawing.Color.Magenta; - this.toolStripButtonStepBackwardOne.Name = "toolStripButtonStepBackwardOne"; - this.toolStripButtonStepBackwardOne.Size = new System.Drawing.Size(23, 22); - this.toolStripButtonStepBackwardOne.Text = "Navigate to the previous data"; - this.toolStripButtonStepBackwardOne.Click += new System.EventHandler(this.ToolStripButtonStepBackwardOne_Click); - this.toolStripButtonStepBackwardOne.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripButtonStepBackwardOne.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripButtonStepBackwardOne.AccessibleDescription = "Navigates to the previous data"; + toolStripButtonStepBackwardOne.AccessibleName = "Navigate to the previous data"; + toolStripButtonStepBackwardOne.AccessibleRole = AccessibleRole.PushButton; + toolStripButtonStepBackwardOne.DisplayStyle = ToolStripItemDisplayStyle.Image; + toolStripButtonStepBackwardOne.Image = Properties.Resources.silk_backward_1_green; + toolStripButtonStepBackwardOne.ImageTransparentColor = Color.Magenta; + toolStripButtonStepBackwardOne.Name = "toolStripButtonStepBackwardOne"; + toolStripButtonStepBackwardOne.Size = new Size(23, 22); + toolStripButtonStepBackwardOne.Text = "Navigate to the previous data"; + toolStripButtonStepBackwardOne.Click += ToolStripButtonStepBackwardOne_Click; + toolStripButtonStepBackwardOne.MouseEnter += SetStatusbar_Enter; + toolStripButtonStepBackwardOne.MouseLeave += ClearStatusbar_Leave; // // toolStripButtonStepForwardOne // - this.toolStripButtonStepForwardOne.AccessibleDescription = "Navigates to the next data"; - this.toolStripButtonStepForwardOne.AccessibleName = "Navigate to the next data"; - this.toolStripButtonStepForwardOne.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.toolStripButtonStepForwardOne.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.toolStripButtonStepForwardOne.Image = global::Planetoid_DB.Properties.Resources.silk_forward_1_green; - this.toolStripButtonStepForwardOne.ImageTransparentColor = System.Drawing.Color.Magenta; - this.toolStripButtonStepForwardOne.Name = "toolStripButtonStepForwardOne"; - this.toolStripButtonStepForwardOne.Size = new System.Drawing.Size(23, 22); - this.toolStripButtonStepForwardOne.Text = "Navigate to the next data"; - this.toolStripButtonStepForwardOne.Click += new System.EventHandler(this.ToolStripButtonStepForwardOne_Click); - this.toolStripButtonStepForwardOne.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripButtonStepForwardOne.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripButtonStepForwardOne.AccessibleDescription = "Navigates to the next data"; + toolStripButtonStepForwardOne.AccessibleName = "Navigate to the next data"; + toolStripButtonStepForwardOne.AccessibleRole = AccessibleRole.PushButton; + toolStripButtonStepForwardOne.DisplayStyle = ToolStripItemDisplayStyle.Image; + toolStripButtonStepForwardOne.Image = Properties.Resources.silk_forward_1_green; + toolStripButtonStepForwardOne.ImageTransparentColor = Color.Magenta; + toolStripButtonStepForwardOne.Name = "toolStripButtonStepForwardOne"; + toolStripButtonStepForwardOne.Size = new Size(23, 22); + toolStripButtonStepForwardOne.Text = "Navigate to the next data"; + toolStripButtonStepForwardOne.Click += ToolStripButtonStepForwardOne_Click; + toolStripButtonStepForwardOne.MouseEnter += SetStatusbar_Enter; + toolStripButtonStepForwardOne.MouseLeave += ClearStatusbar_Leave; // // toolStripButtonStepToEnd // - this.toolStripButtonStepToEnd.AccessibleDescription = "Navigates to the end of the data"; - this.toolStripButtonStepToEnd.AccessibleName = "End of the data"; - this.toolStripButtonStepToEnd.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.toolStripButtonStepToEnd.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.toolStripButtonStepToEnd.Image = global::Planetoid_DB.Properties.Resources.silk_forward_end_green; - this.toolStripButtonStepToEnd.ImageTransparentColor = System.Drawing.Color.Magenta; - this.toolStripButtonStepToEnd.Name = "toolStripButtonStepToEnd"; - this.toolStripButtonStepToEnd.Size = new System.Drawing.Size(23, 22); - this.toolStripButtonStepToEnd.Text = "End of the data"; - this.toolStripButtonStepToEnd.Click += new System.EventHandler(this.ToolStripButtonStepToEnd_Click); - this.toolStripButtonStepToEnd.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripButtonStepToEnd.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripButtonStepToEnd.AccessibleDescription = "Navigates to the end of the data"; + toolStripButtonStepToEnd.AccessibleName = "End of the data"; + toolStripButtonStepToEnd.AccessibleRole = AccessibleRole.PushButton; + toolStripButtonStepToEnd.DisplayStyle = ToolStripItemDisplayStyle.Image; + toolStripButtonStepToEnd.Image = Properties.Resources.silk_forward_end_green; + toolStripButtonStepToEnd.ImageTransparentColor = Color.Magenta; + toolStripButtonStepToEnd.Name = "toolStripButtonStepToEnd"; + toolStripButtonStepToEnd.Size = new Size(23, 22); + toolStripButtonStepToEnd.Text = "End of the data"; + toolStripButtonStepToEnd.Click += ToolStripButtonStepToEnd_Click; + toolStripButtonStepToEnd.MouseEnter += SetStatusbar_Enter; + toolStripButtonStepToEnd.MouseLeave += ClearStatusbar_Leave; // // toolStripSeparator6 // - this.toolStripSeparator6.AccessibleDescription = "Just a separator"; - this.toolStripSeparator6.AccessibleName = "Just a separator"; - this.toolStripSeparator6.AccessibleRole = System.Windows.Forms.AccessibleRole.Separator; - this.toolStripSeparator6.Name = "toolStripSeparator6"; - this.toolStripSeparator6.Size = new System.Drawing.Size(6, 25); - this.toolStripSeparator6.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripSeparator6.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripSeparator6.AccessibleDescription = "Just a separator"; + toolStripSeparator6.AccessibleName = "Just a separator"; + toolStripSeparator6.AccessibleRole = AccessibleRole.Separator; + toolStripSeparator6.Name = "toolStripSeparator6"; + toolStripSeparator6.Size = new Size(6, 25); + toolStripSeparator6.MouseEnter += SetStatusbar_Enter; + toolStripSeparator6.MouseLeave += ClearStatusbar_Leave; // // toolStripLabelGoToIndex // - this.toolStripLabelGoToIndex.AccessibleDescription = "Go to index"; - this.toolStripLabelGoToIndex.AccessibleName = "Index"; - this.toolStripLabelGoToIndex.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.toolStripLabelGoToIndex.AutoToolTip = true; - this.toolStripLabelGoToIndex.Name = "toolStripLabelGoToIndex"; - this.toolStripLabelGoToIndex.Size = new System.Drawing.Size(71, 22); - this.toolStripLabelGoToIndex.Text = "Go to index:"; - this.toolStripLabelGoToIndex.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripLabelGoToIndex.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripLabelGoToIndex.AccessibleDescription = "Go to index"; + toolStripLabelGoToIndex.AccessibleName = "Index"; + toolStripLabelGoToIndex.AccessibleRole = AccessibleRole.StaticText; + toolStripLabelGoToIndex.AutoToolTip = true; + toolStripLabelGoToIndex.Name = "toolStripLabelGoToIndex"; + toolStripLabelGoToIndex.Size = new Size(71, 22); + toolStripLabelGoToIndex.Text = "Go to index:"; + toolStripLabelGoToIndex.MouseEnter += SetStatusbar_Enter; + toolStripLabelGoToIndex.MouseLeave += ClearStatusbar_Leave; // // toolStripTextBoxGotoIndex // - this.toolStripTextBoxGotoIndex.AcceptsReturn = true; - this.toolStripTextBoxGotoIndex.AccessibleDescription = "Enter the index number of the planetoid"; - this.toolStripTextBoxGotoIndex.AccessibleName = "Index field"; - this.toolStripTextBoxGotoIndex.AccessibleRole = System.Windows.Forms.AccessibleRole.Text; - this.toolStripTextBoxGotoIndex.AutoToolTip = true; - this.toolStripTextBoxGotoIndex.Font = new System.Drawing.Font("Segoe UI", 9F); - this.toolStripTextBoxGotoIndex.Name = "toolStripTextBoxGotoIndex"; - this.toolStripTextBoxGotoIndex.Size = new System.Drawing.Size(80, 25); - this.toolStripTextBoxGotoIndex.TextBoxTextAlign = System.Windows.Forms.HorizontalAlignment.Center; - this.toolStripTextBoxGotoIndex.Enter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripTextBoxGotoIndex.Leave += new System.EventHandler(this.ClearStatusbar_Leave); - this.toolStripTextBoxGotoIndex.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.ToolStripTextBoxGotoIndex_KeyPress); - this.toolStripTextBoxGotoIndex.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripTextBoxGotoIndex.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripTextBoxGotoIndex.AcceptsReturn = true; + toolStripTextBoxGotoIndex.AccessibleDescription = "Enter the index number of the planetoid"; + toolStripTextBoxGotoIndex.AccessibleName = "Index field"; + toolStripTextBoxGotoIndex.AccessibleRole = AccessibleRole.Text; + toolStripTextBoxGotoIndex.AutoToolTip = true; + toolStripTextBoxGotoIndex.Name = "toolStripTextBoxGotoIndex"; + toolStripTextBoxGotoIndex.Size = new Size(80, 25); + toolStripTextBoxGotoIndex.TextBoxTextAlign = HorizontalAlignment.Center; + toolStripTextBoxGotoIndex.Enter += SetStatusbar_Enter; + toolStripTextBoxGotoIndex.Leave += ClearStatusbar_Leave; + toolStripTextBoxGotoIndex.KeyPress += ToolStripTextBoxGotoIndex_KeyPress; + toolStripTextBoxGotoIndex.MouseEnter += SetStatusbar_Enter; + toolStripTextBoxGotoIndex.MouseLeave += ClearStatusbar_Leave; // // toolStripButtonGoToIndex // - this.toolStripButtonGoToIndex.AccessibleDescription = "Click to show the data of the planetoid"; - this.toolStripButtonGoToIndex.AccessibleName = "Go to index"; - this.toolStripButtonGoToIndex.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.toolStripButtonGoToIndex.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.toolStripButtonGoToIndex.Image = global::Planetoid_DB.Properties.Resources.silk_go; - this.toolStripButtonGoToIndex.ImageTransparentColor = System.Drawing.Color.Magenta; - this.toolStripButtonGoToIndex.Name = "toolStripButtonGoToIndex"; - this.toolStripButtonGoToIndex.Size = new System.Drawing.Size(23, 22); - this.toolStripButtonGoToIndex.Text = "Go to index"; - this.toolStripButtonGoToIndex.Click += new System.EventHandler(this.ToolStripButtonGoToIndex_Click); - this.toolStripButtonGoToIndex.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripButtonGoToIndex.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripButtonGoToIndex.AccessibleDescription = "Click to show the data of the planetoid"; + toolStripButtonGoToIndex.AccessibleName = "Go to index"; + toolStripButtonGoToIndex.AccessibleRole = AccessibleRole.PushButton; + toolStripButtonGoToIndex.DisplayStyle = ToolStripItemDisplayStyle.Image; + toolStripButtonGoToIndex.Image = Properties.Resources.silk_go; + toolStripButtonGoToIndex.ImageTransparentColor = Color.Magenta; + toolStripButtonGoToIndex.Name = "toolStripButtonGoToIndex"; + toolStripButtonGoToIndex.Size = new Size(23, 22); + toolStripButtonGoToIndex.Text = "Go to index"; + toolStripButtonGoToIndex.Click += ToolStripButtonGoToIndex_Click; + toolStripButtonGoToIndex.MouseEnter += SetStatusbar_Enter; + toolStripButtonGoToIndex.MouseLeave += ClearStatusbar_Leave; // // toolStripSeparator7 // - this.toolStripSeparator7.AccessibleDescription = "Just a separator"; - this.toolStripSeparator7.AccessibleName = "Just a separator"; - this.toolStripSeparator7.AccessibleRole = System.Windows.Forms.AccessibleRole.Separator; - this.toolStripSeparator7.Name = "toolStripSeparator7"; - this.toolStripSeparator7.Size = new System.Drawing.Size(6, 25); - this.toolStripSeparator7.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripSeparator7.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripSeparator7.AccessibleDescription = "Just a separator"; + toolStripSeparator7.AccessibleName = "Just a separator"; + toolStripSeparator7.AccessibleRole = AccessibleRole.Separator; + toolStripSeparator7.Name = "toolStripSeparator7"; + toolStripSeparator7.Size = new Size(6, 25); + toolStripSeparator7.MouseEnter += SetStatusbar_Enter; + toolStripSeparator7.MouseLeave += ClearStatusbar_Leave; // // toolStripLabelIndexPosition // - this.toolStripLabelIndexPosition.AccessibleDescription = "Shows the current index position"; - this.toolStripLabelIndexPosition.AccessibleName = "Index info"; - this.toolStripLabelIndexPosition.AccessibleRole = System.Windows.Forms.AccessibleRole.StaticText; - this.toolStripLabelIndexPosition.AutoToolTip = true; - this.toolStripLabelIndexPosition.Name = "toolStripLabelIndexPosition"; - this.toolStripLabelIndexPosition.Size = new System.Drawing.Size(125, 22); - this.toolStripLabelIndexPosition.Text = "index: 123456 / 999999"; - this.toolStripLabelIndexPosition.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripLabelIndexPosition.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripLabelIndexPosition.AccessibleDescription = "Shows the current index position"; + toolStripLabelIndexPosition.AccessibleName = "Index info"; + toolStripLabelIndexPosition.AccessibleRole = AccessibleRole.StaticText; + toolStripLabelIndexPosition.AutoToolTip = true; + toolStripLabelIndexPosition.Name = "toolStripLabelIndexPosition"; + toolStripLabelIndexPosition.Size = new Size(125, 22); + toolStripLabelIndexPosition.Text = "index: 123456 / 999999"; + toolStripLabelIndexPosition.MouseEnter += SetStatusbar_Enter; + toolStripLabelIndexPosition.MouseLeave += ClearStatusbar_Leave; // // toolStripSeparator9 // - this.toolStripSeparator9.AccessibleDescription = "Just a separator"; - this.toolStripSeparator9.AccessibleName = "Just a separator"; - this.toolStripSeparator9.AccessibleRole = System.Windows.Forms.AccessibleRole.Separator; - this.toolStripSeparator9.Name = "toolStripSeparator9"; - this.toolStripSeparator9.Size = new System.Drawing.Size(6, 25); - this.toolStripSeparator9.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripSeparator9.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripSeparator9.AccessibleDescription = "Just a separator"; + toolStripSeparator9.AccessibleName = "Just a separator"; + toolStripSeparator9.AccessibleRole = AccessibleRole.Separator; + toolStripSeparator9.Name = "toolStripSeparator9"; + toolStripSeparator9.Size = new Size(6, 25); + toolStripSeparator9.MouseEnter += SetStatusbar_Enter; + toolStripSeparator9.MouseLeave += ClearStatusbar_Leave; // // toolStripButtonDerivatedOrbitElements // - this.toolStripButtonDerivatedOrbitElements.AccessibleDescription = "Calculates derivated orbital elements"; - this.toolStripButtonDerivatedOrbitElements.AccessibleName = "Derivated orbit elements"; - this.toolStripButtonDerivatedOrbitElements.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.toolStripButtonDerivatedOrbitElements.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.toolStripButtonDerivatedOrbitElements.Image = global::Planetoid_DB.Properties.Resources.silk_arrow_branch; - this.toolStripButtonDerivatedOrbitElements.ImageTransparentColor = System.Drawing.Color.Magenta; - this.toolStripButtonDerivatedOrbitElements.Name = "toolStripButtonDerivatedOrbitElements"; - this.toolStripButtonDerivatedOrbitElements.Size = new System.Drawing.Size(23, 22); - this.toolStripButtonDerivatedOrbitElements.Text = "Derivated orbit elements"; - this.toolStripButtonDerivatedOrbitElements.Click += new System.EventHandler(this.ToolStripButtonDerivatedOrbitElements_Click); - this.toolStripButtonDerivatedOrbitElements.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripButtonDerivatedOrbitElements.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripButtonDerivatedOrbitElements.AccessibleDescription = "Calculates derivated orbital elements"; + toolStripButtonDerivatedOrbitElements.AccessibleName = "Derivated orbit elements"; + toolStripButtonDerivatedOrbitElements.AccessibleRole = AccessibleRole.PushButton; + toolStripButtonDerivatedOrbitElements.DisplayStyle = ToolStripItemDisplayStyle.Image; + toolStripButtonDerivatedOrbitElements.Image = Properties.Resources.silk_arrow_branch; + toolStripButtonDerivatedOrbitElements.ImageTransparentColor = Color.Magenta; + toolStripButtonDerivatedOrbitElements.Name = "toolStripButtonDerivatedOrbitElements"; + toolStripButtonDerivatedOrbitElements.Size = new Size(23, 22); + toolStripButtonDerivatedOrbitElements.Text = "Derivated orbit elements"; + toolStripButtonDerivatedOrbitElements.Click += ToolStripButtonDerivatedOrbitElements_Click; + toolStripButtonDerivatedOrbitElements.MouseEnter += SetStatusbar_Enter; + toolStripButtonDerivatedOrbitElements.MouseLeave += ClearStatusbar_Leave; // // toolStripButtonFilter // - this.toolStripButtonFilter.AccessibleDescription = "Filters the orbital elements in some ranges"; - this.toolStripButtonFilter.AccessibleName = "Filter"; - this.toolStripButtonFilter.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.toolStripButtonFilter.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.toolStripButtonFilter.Enabled = false; - this.toolStripButtonFilter.Image = global::Planetoid_DB.Properties.Resources.silk_arrow_divide; - this.toolStripButtonFilter.ImageTransparentColor = System.Drawing.Color.Magenta; - this.toolStripButtonFilter.Name = "toolStripButtonFilter"; - this.toolStripButtonFilter.Size = new System.Drawing.Size(23, 22); - this.toolStripButtonFilter.Text = "Filter"; - this.toolStripButtonFilter.Click += new System.EventHandler(this.ToolStripButtonFilter_Click); - this.toolStripButtonFilter.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); - this.toolStripButtonFilter.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + toolStripButtonFilter.AccessibleDescription = "Filters the orbital elements in some ranges"; + toolStripButtonFilter.AccessibleName = "Filter"; + toolStripButtonFilter.AccessibleRole = AccessibleRole.PushButton; + toolStripButtonFilter.DisplayStyle = ToolStripItemDisplayStyle.Image; + toolStripButtonFilter.Enabled = false; + toolStripButtonFilter.Image = Properties.Resources.silk_arrow_divide; + toolStripButtonFilter.ImageTransparentColor = Color.Magenta; + toolStripButtonFilter.Name = "toolStripButtonFilter"; + toolStripButtonFilter.Size = new Size(23, 22); + toolStripButtonFilter.Text = "Filter"; + toolStripButtonFilter.Click += ToolStripButtonFilter_Click; + toolStripButtonFilter.MouseEnter += SetStatusbar_Enter; + toolStripButtonFilter.MouseLeave += ClearStatusbar_Leave; // // toolStripSeparatorOptions2 // - this.toolStripSeparatorOptions2.AccessibleDescription = "Just a separator"; - this.toolStripSeparatorOptions2.AccessibleName = "Just a separator"; - this.toolStripSeparatorOptions2.Name = "toolStripSeparatorOptions2"; - this.toolStripSeparatorOptions2.Size = new System.Drawing.Size(6, 6); + toolStripSeparatorOptions2.AccessibleDescription = "Just a separator"; + toolStripSeparatorOptions2.AccessibleName = "Just a separator"; + toolStripSeparatorOptions2.Name = "toolStripSeparatorOptions2"; + toolStripSeparatorOptions2.Size = new Size(6, 6); // // toolStripSeparatorOptions1 // - this.toolStripSeparatorOptions1.AccessibleDescription = "Just a separator"; - this.toolStripSeparatorOptions1.AccessibleName = "Just a separator"; - this.toolStripSeparatorOptions1.AccessibleRole = System.Windows.Forms.AccessibleRole.Separator; - this.toolStripSeparatorOptions1.Name = "toolStripSeparatorOptions1"; - this.toolStripSeparatorOptions1.Size = new System.Drawing.Size(6, 6); + toolStripSeparatorOptions1.AccessibleDescription = "Just a separator"; + toolStripSeparatorOptions1.AccessibleName = "Just a separator"; + toolStripSeparatorOptions1.AccessibleRole = AccessibleRole.Separator; + toolStripSeparatorOptions1.Name = "toolStripSeparatorOptions1"; + toolStripSeparatorOptions1.Size = new Size(6, 6); // // backgroundWorkerLoadingDatabase // - this.backgroundWorkerLoadingDatabase.WorkerReportsProgress = true; - this.backgroundWorkerLoadingDatabase.WorkerSupportsCancellation = true; - this.backgroundWorkerLoadingDatabase.DoWork += new System.ComponentModel.DoWorkEventHandler(this.BackgroundWorkerLoadingDatabase_DoWork); - this.backgroundWorkerLoadingDatabase.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.BackgroundWorkerLoadingDatabase_ProgressChanged); - this.backgroundWorkerLoadingDatabase.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.BackgroundWorkerLoadingDatabase_RunWorkerCompleted); + backgroundWorkerLoadingDatabase.WorkerReportsProgress = true; + backgroundWorkerLoadingDatabase.WorkerSupportsCancellation = true; + backgroundWorkerLoadingDatabase.DoWork += BackgroundWorkerLoadingDatabase_DoWork; + backgroundWorkerLoadingDatabase.ProgressChanged += BackgroundWorkerLoadingDatabase_ProgressChanged; + backgroundWorkerLoadingDatabase.RunWorkerCompleted += BackgroundWorkerLoadingDatabase_RunWorkerCompleted; // // timerBlinkForUpdateAvailable // - this.timerBlinkForUpdateAvailable.Interval = 500; - this.timerBlinkForUpdateAvailable.Tick += new System.EventHandler(this.TimerBlinkForUpdateAvailable_Tick); + timerBlinkForUpdateAvailable.Interval = 500; + timerBlinkForUpdateAvailable.Tick += TimerBlinkForUpdateAvailable_Tick; // // timerCheckForNewMpcorbDatFile // - this.timerCheckForNewMpcorbDatFile.Enabled = true; - this.timerCheckForNewMpcorbDatFile.Interval = 1440000; - this.timerCheckForNewMpcorbDatFile.Tick += new System.EventHandler(this.TimerCheckForNewMpcorbDatFile_Tick); + timerCheckForNewMpcorbDatFile.Enabled = true; + timerCheckForNewMpcorbDatFile.Interval = 1440000; + timerCheckForNewMpcorbDatFile.Tick += TimerCheckForNewMpcorbDatFile_Tick; // // PlanetoidDBForm // - this.AccessibleDescription = "Viewer for the MPC Orbit (MPCORB) Database"; - this.AccessibleName = "Planetoid-DB"; - this.AccessibleRole = System.Windows.Forms.AccessibleRole.Window; - this.AllowButtonSpecToolTips = true; - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.AutoValidate = System.Windows.Forms.AutoValidate.EnablePreventFocusChange; - this.ClientSize = new System.Drawing.Size(804, 386); - this.Controls.Add(this.toolStripContainer); - this.CornerRoundingRadius = 5F; - this.Font = new System.Drawing.Font("Segoe UI", 8.5F); - this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.MainMenuStrip = this.menu; - this.MaximizeBox = false; - this.Name = "PlanetoidDBForm"; - this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; - this.StateCommon.Border.DrawBorders = ((Krypton.Toolkit.PaletteDrawBorders)((((Krypton.Toolkit.PaletteDrawBorders.Top | Krypton.Toolkit.PaletteDrawBorders.Bottom) - | Krypton.Toolkit.PaletteDrawBorders.Left) - | Krypton.Toolkit.PaletteDrawBorders.Right))); - this.StateCommon.Border.Rounding = 5F; - this.Text = "Planetoid-DB"; - this.TextExtra = "x.x.x.x"; - this.toolTip.SetToolTip(this, "Planetoid-DB"); - this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.PlanetoidDBForm_FormClosing); - this.Load += new System.EventHandler(this.PlanetoidDBForm_Load); - this.Shown += new System.EventHandler(this.PlanetoidDBForm_Shown); - this.contextMenuNavigationStep.ResumeLayout(false); - this.tableLayoutPanelData.ResumeLayout(false); - this.tableLayoutPanelData.PerformLayout(); - this.contextMenuTopTenRecords.ResumeLayout(false); - this.contextMenuDistributions.ResumeLayout(false); - this.contextMenuCopyToClipboardOrbitalElements.ResumeLayout(false); - this.menu.ResumeLayout(false); - this.menu.PerformLayout(); - this.toolStripContainer.BottomToolStripPanel.ResumeLayout(false); - this.toolStripContainer.BottomToolStripPanel.PerformLayout(); - this.toolStripContainer.ContentPanel.ResumeLayout(false); - this.toolStripContainer.TopToolStripPanel.ResumeLayout(false); - this.toolStripContainer.TopToolStripPanel.PerformLayout(); - this.toolStripContainer.ResumeLayout(false); - this.toolStripContainer.PerformLayout(); - this.statusBar.ResumeLayout(false); - this.statusBar.PerformLayout(); - this.toolStripIcons.ResumeLayout(false); - this.toolStripIcons.PerformLayout(); - this.toolStripNavigation.ResumeLayout(false); - this.toolStripNavigation.PerformLayout(); - this.ResumeLayout(false); - - } + AccessibleDescription = "Viewer for the MPC Orbit (MPCORB) Database"; + AccessibleName = "Planetoid-DB"; + AccessibleRole = AccessibleRole.Window; + AllowButtonSpecToolTips = true; + AutoScaleDimensions = new SizeF(6F, 13F); + AutoScaleMode = AutoScaleMode.Font; + AutoValidate = AutoValidate.EnablePreventFocusChange; + ClientSize = new Size(804, 386); + Controls.Add(toolStripContainer); + CornerRoundingRadius = 5F; + Font = new Font("Segoe UI", 8.5F, FontStyle.Regular, GraphicsUnit.Point); + FormBorderStyle = FormBorderStyle.FixedSingle; + Icon = (Icon)resources.GetObject("$this.Icon"); + MainMenuStrip = menu; + MaximizeBox = false; + Name = "PlanetoidDBForm"; + StartPosition = FormStartPosition.CenterScreen; + StateCommon.Border.DrawBorders = PaletteDrawBorders.Top | PaletteDrawBorders.Bottom | PaletteDrawBorders.Left | PaletteDrawBorders.Right; + StateCommon.Border.Rounding = 5F; + Text = "Planetoid-DB"; + TextExtra = "x.x.x.x"; + toolTip.SetToolTip(this, "Planetoid-DB"); + FormClosing += PlanetoidDBForm_FormClosing; + Load += PlanetoidDBForm_Load; + Shown += PlanetoidDBForm_Shown; + contextMenuNavigationStep.ResumeLayout(false); + tableLayoutPanelData.ResumeLayout(false); + tableLayoutPanelData.PerformLayout(); + contextMenuTopTenRecords.ResumeLayout(false); + contextMenuDistributions.ResumeLayout(false); + contextMenuCopyToClipboardOrbitalElements.ResumeLayout(false); + menu.ResumeLayout(false); + menu.PerformLayout(); + toolStripContainer.BottomToolStripPanel.ResumeLayout(false); + toolStripContainer.BottomToolStripPanel.PerformLayout(); + toolStripContainer.ContentPanel.ResumeLayout(false); + toolStripContainer.TopToolStripPanel.ResumeLayout(false); + toolStripContainer.TopToolStripPanel.PerformLayout(); + toolStripContainer.ResumeLayout(false); + toolStripContainer.PerformLayout(); + statusBar.ResumeLayout(false); + statusBar.PerformLayout(); + toolStripIcons.ResumeLayout(false); + toolStripIcons.PerformLayout(); + toolStripNavigation.ResumeLayout(false); + toolStripNavigation.PerformLayout(); + ResumeLayout(false); + } - #endregion - private System.Windows.Forms.ToolTip toolTip; + #endregion + private System.Windows.Forms.ToolTip toolTip; private KryptonStatusStrip statusBar; private System.Windows.Forms.ContextMenuStrip contextMenuNavigationStep; private System.Windows.Forms.ToolStripMenuItem menuitemNavigateStep10; diff --git a/PlanetoidDBForm.cs b/PlanetoidDBForm.cs index 02f54e7..34674f5 100644 --- a/PlanetoidDBForm.cs +++ b/PlanetoidDBForm.cs @@ -2,6 +2,7 @@ using System.ComponentModel; using System.Diagnostics; using System.Globalization; +using System.IO; using System.Net; using System.Net.NetworkInformation; using System.Reflection; @@ -18,11 +19,11 @@ public partial class PlanetoidDBForm : KryptonForm { private int currentPosition = 0, stepPosition = 0; private readonly ArrayList planetoidDatabase = new(capacity: 0); - private readonly WebClient webClient = new WebClient(); - private readonly SplashScreenForm formSplashScreen = new SplashScreenForm(); + private readonly WebClient webClient = new(); + private readonly SplashScreenForm formSplashScreen = new(); private readonly string filenameMpcorb = Properties.Resources.FilenameMpcorb; private readonly string filenameMpcorbTemp = Properties.Resources.FilenameMpcorbTemp; - private readonly Uri uriMpcorb = new Uri(uriString: Properties.Resources.MpcorbUrl); + private readonly Uri uriMpcorb = new(uriString: Properties.Resources.MpcorbUrl); #region Constructor @@ -118,13 +119,11 @@ private void GotoCurrentPosition(int currentPosition) /// private static DateTime GetLastModified(Uri uri) { - HttpWebRequest req = (HttpWebRequest)WebRequest.Create(requestUri: uri); - HttpWebResponse resp = (HttpWebResponse)req.GetResponse(); - resp.Close(); - return resp.LastModified; + HttpWebRequest request = (HttpWebRequest)WebRequest.Create(requestUri: uri); + HttpWebResponse response = (HttpWebResponse)request.GetResponse(); + return response.StatusCode == HttpStatusCode.OK ? response.LastModified : new DateTime(year: 0, month: 0, day: 0, hour: 0, minute: 0, second: 0); } - /* /// /// /// @@ -132,12 +131,10 @@ private static DateTime GetLastModified(Uri uri) /// private long GetContentLength(Uri uri) { - HttpWebRequest req = (HttpWebRequest)WebRequest.Create(requestUri: uri); - HttpWebResponse resp = (HttpWebResponse)req.GetResponse(); - resp.Close(); - return Convert.ToInt64(value: resp.ContentLength); + HttpWebRequest request = (HttpWebRequest)WebRequest.Create(requestUri: uri); + HttpWebResponse response = (HttpWebResponse)request.GetResponse(); + return response.StatusCode == HttpStatusCode.OK ? Convert.ToInt64(value: response.ContentLength) : 0; } - */ /// /// @@ -897,7 +894,6 @@ private void BackgroundWorkerLoadingDatabase_DoWork(object sender, DoWorkEventAr fileStream.Close(); streamReader.Close(); } - formSplashScreen.Close(); } @@ -1338,7 +1334,7 @@ private void ToolStripStatusLabelUpdate_Click(object sender, EventArgs e) toolStripStatusLabelBackgroundDownload.Enabled = true; toolStripProgressBarBackgroundDownload.Enabled = true; toolStripStatusLabelCancelBackgroundDownload.Enabled = true; - webClient.Proxy = null; + webClient.Proxy = WebRequest.DefaultWebProxy; webClient.DownloadFileCompleted += new AsyncCompletedEventHandler(Completed); webClient.DownloadProgressChanged += new DownloadProgressChangedEventHandler(ProgressChanged); try diff --git a/PlanetoidDBForm.resx b/PlanetoidDBForm.resx index 706efcc..4db5099 100644 --- a/PlanetoidDBForm.resx +++ b/PlanetoidDBForm.resx @@ -1,17 +1,17 @@  - diff --git a/Program.cs b/Program.cs index 7f17d20..d7fc15a 100644 --- a/Program.cs +++ b/Program.cs @@ -1,3 +1,4 @@ +using System.IO; using System.Net.NetworkInformation; using System.Runtime.InteropServices; diff --git a/SplashScreenForm.cs b/SplashScreenForm.cs index 0962954..abeb0c4 100644 --- a/SplashScreenForm.cs +++ b/SplashScreenForm.cs @@ -1,6 +1,4 @@ -using System; -using System.Diagnostics; -using System.Windows.Forms; +using System.Diagnostics; using Krypton.Toolkit; namespace Planetoid_DB @@ -8,7 +6,7 @@ namespace Planetoid_DB /// /// /// - [DebuggerDisplay("{" + nameof(GetDebuggerDisplay) + "(),nq}")] + [DebuggerDisplay(value: "{" + nameof(GetDebuggerDisplay) + "(),nq}")] public partial class SplashScreenForm : KryptonForm { #region local methods @@ -57,8 +55,8 @@ private void CopyToClipboard(string text) private void SplashScreenForm_Load(object sender, EventArgs e) { labelDataLoading.Text = I10nStrings.DataLoading; - labelTitle.Text = new AssemblyInfo().AssemblyProduct; - labelVersion.Text = string.Format(format: I10nStrings.VersionTemplate, arg0: new AssemblyInfo().AssemblyVersion); + labelTitle.Text = AssemblyInfo.AssemblyProduct; + labelVersion.Text = string.Format(format: I10nStrings.VersionTemplate, arg0: AssemblyInfo.AssemblyVersion); } ///