Initial population

This commit is contained in:
Jon
2026-03-07 19:22:22 -06:00
parent 647f55feb9
commit cae1a3ec46
108 changed files with 28484 additions and 0 deletions

View File

@@ -0,0 +1,100 @@
namespace JRCookbookControls
{
partial class JRCookbookEditProcedure
{
/// <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 Component 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()
{
components = new System.ComponentModel.Container();
txtProcedureText = new JRCookbookAutoVerticalGrowTextBox();
btnHeading = new System.Windows.Forms.Button();
btnDelete = new System.Windows.Forms.Button();
toolTip1 = new System.Windows.Forms.ToolTip(components);
SuspendLayout();
//
// txtProcedureText
//
txtProcedureText.Anchor = System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right;
txtProcedureText.Location = new System.Drawing.Point(110, 3);
txtProcedureText.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
txtProcedureText.MinCharactersToMultiLine = 0;
txtProcedureText.Multiline = true;
txtProcedureText.Name = "txtProcedureText";
txtProcedureText.Size = new System.Drawing.Size(1476, 47);
txtProcedureText.TabIndex = 0;
txtProcedureText.TextChanged += txtProcedureText_TextChanged;
//
// btnHeading
//
btnHeading.ImageKey = "(none)";
btnHeading.Location = new System.Drawing.Point(43, 3);
btnHeading.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
btnHeading.Name = "btnHeading";
btnHeading.Size = new System.Drawing.Size(56, 63);
btnHeading.TabIndex = 2;
toolTip1.SetToolTip(btnHeading, "Toggle Header");
btnHeading.UseVisualStyleBackColor = true;
btnHeading.Click += btnHeading_Click;
//
// btnDelete
//
btnDelete.Anchor = System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right;
btnDelete.ImageKey = "(none)";
btnDelete.Location = new System.Drawing.Point(1591, 3);
btnDelete.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
btnDelete.Name = "btnDelete";
btnDelete.Size = new System.Drawing.Size(56, 63);
btnDelete.TabIndex = 1;
toolTip1.SetToolTip(btnDelete, "Delete");
btnDelete.UseVisualStyleBackColor = true;
btnDelete.Visible = false;
btnDelete.Click += btnDelete_Click;
//
// JRCookbookEditProcedure
//
AutoScaleDimensions = new System.Drawing.SizeF(17F, 41F);
AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
AutoSize = true;
BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
Controls.Add(txtProcedureText);
Controls.Add(btnHeading);
Controls.Add(btnDelete);
Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
Name = "JRCookbookEditProcedure";
Size = new System.Drawing.Size(1647, 134);
ResumeLayout(false);
PerformLayout();
}
#endregion
private JRCookbookAutoVerticalGrowTextBox txtProcedureText;
private System.Windows.Forms.Button btnHeading;
private System.Windows.Forms.Button btnDelete;
private System.Windows.Forms.ToolTip toolTip1;
}
}