Initial commit. Added a helper class for easy access to the app.config settings.

This commit is contained in:
Admin
2020-11-04 17:13:38 -06:00
commit 7b9744670f
15 changed files with 669 additions and 0 deletions
+93
View File
@@ -0,0 +1,93 @@
namespace DataOrganizer
{
partial class MainForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.MainMenu = new System.Windows.Forms.MenuStrip();
this.FileMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.MainLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
this.MainMenu.SuspendLayout();
this.SuspendLayout();
//
// MainMenu
//
this.MainMenu.GripMargin = new System.Windows.Forms.Padding(2, 2, 0, 2);
this.MainMenu.ImageScalingSize = new System.Drawing.Size(24, 24);
this.MainMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.FileMainMenu});
this.MainMenu.Location = new System.Drawing.Point(0, 0);
this.MainMenu.Name = "MainMenu";
this.MainMenu.Size = new System.Drawing.Size(800, 36);
this.MainMenu.TabIndex = 0;
this.MainMenu.Text = "menuStrip1";
//
// FileMainMenu
//
this.FileMainMenu.Name = "FileMainMenu";
this.FileMainMenu.Size = new System.Drawing.Size(54, 32);
this.FileMainMenu.Text = "&File";
//
// MainLayoutPanel
//
this.MainLayoutPanel.ColumnCount = 2;
this.MainLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.MainLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.MainLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
this.MainLayoutPanel.Location = new System.Drawing.Point(0, 36);
this.MainLayoutPanel.Name = "MainLayoutPanel";
this.MainLayoutPanel.RowCount = 2;
this.MainLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.MainLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.MainLayoutPanel.Size = new System.Drawing.Size(800, 856);
this.MainLayoutPanel.TabIndex = 1;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 892);
this.Controls.Add(this.MainLayoutPanel);
this.Controls.Add(this.MainMenu);
this.MainMenuStrip = this.MainMenu;
this.Name = "Form1";
this.Text = "Form1";
this.MainMenu.ResumeLayout(false);
this.MainMenu.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.MenuStrip MainMenu;
private System.Windows.Forms.ToolStripMenuItem FileMainMenu;
private System.Windows.Forms.TableLayoutPanel MainLayoutPanel;
}
}