Files
JRCookbook/JRCookbook/frmPickRecipeIngredient.Designer.cs
2026-03-07 19:22:22 -06:00

232 lines
11 KiB
C#

namespace JRCookbook
{
partial class frmPickRecipeIngredient
{
/// <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()
{
lblRecipeIngredient = new System.Windows.Forms.Label();
txtCurrentRecipeIngredient = new System.Windows.Forms.TextBox();
chkLinkedToIngredient = new System.Windows.Forms.CheckBox();
grpLinkedIngredient = new System.Windows.Forms.GroupBox();
btnSearch = new System.Windows.Forms.Button();
txtIngredient = new System.Windows.Forms.TextBox();
label3 = new System.Windows.Forms.Label();
cboUnit = new System.Windows.Forms.ComboBox();
label2 = new System.Windows.Forms.Label();
txtQuantity = new JRCookbookControls.JRCookbookNumericTextBox();
label1 = new System.Windows.Forms.Label();
btnOK = new System.Windows.Forms.Button();
btnCancel = new System.Windows.Forms.Button();
grpLinkedIngredient.SuspendLayout();
SuspendLayout();
//
// lblRecipeIngredient
//
lblRecipeIngredient.AutoSize = true;
lblRecipeIngredient.Location = new System.Drawing.Point(32, 36);
lblRecipeIngredient.Margin = new System.Windows.Forms.Padding(7, 0, 7, 0);
lblRecipeIngredient.Name = "lblRecipeIngredient";
lblRecipeIngredient.Size = new System.Drawing.Size(358, 41);
lblRecipeIngredient.TabIndex = 0;
lblRecipeIngredient.Text = "Current Recipe Ingredient";
//
// txtCurrentRecipeIngredient
//
txtCurrentRecipeIngredient.Location = new System.Drawing.Point(32, 87);
txtCurrentRecipeIngredient.Margin = new System.Windows.Forms.Padding(7, 8, 7, 8);
txtCurrentRecipeIngredient.Multiline = true;
txtCurrentRecipeIngredient.Name = "txtCurrentRecipeIngredient";
txtCurrentRecipeIngredient.ReadOnly = true;
txtCurrentRecipeIngredient.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
txtCurrentRecipeIngredient.Size = new System.Drawing.Size(1833, 102);
txtCurrentRecipeIngredient.TabIndex = 1;
//
// chkLinkedToIngredient
//
chkLinkedToIngredient.AutoSize = true;
chkLinkedToIngredient.Checked = true;
chkLinkedToIngredient.CheckState = System.Windows.Forms.CheckState.Checked;
chkLinkedToIngredient.Location = new System.Drawing.Point(32, 216);
chkLinkedToIngredient.Margin = new System.Windows.Forms.Padding(7, 8, 7, 8);
chkLinkedToIngredient.Name = "chkLinkedToIngredient";
chkLinkedToIngredient.Size = new System.Drawing.Size(324, 45);
chkLinkedToIngredient.TabIndex = 2;
chkLinkedToIngredient.Text = "Linked to Ingredient";
chkLinkedToIngredient.UseVisualStyleBackColor = true;
chkLinkedToIngredient.CheckedChanged += chkLinkedToIngredient_CheckedChanged;
//
// grpLinkedIngredient
//
grpLinkedIngredient.Controls.Add(btnSearch);
grpLinkedIngredient.Controls.Add(txtIngredient);
grpLinkedIngredient.Controls.Add(label3);
grpLinkedIngredient.Controls.Add(cboUnit);
grpLinkedIngredient.Controls.Add(label2);
grpLinkedIngredient.Controls.Add(txtQuantity);
grpLinkedIngredient.Controls.Add(label1);
grpLinkedIngredient.Location = new System.Drawing.Point(32, 287);
grpLinkedIngredient.Margin = new System.Windows.Forms.Padding(7, 8, 7, 8);
grpLinkedIngredient.Name = "grpLinkedIngredient";
grpLinkedIngredient.Padding = new System.Windows.Forms.Padding(7, 8, 7, 8);
grpLinkedIngredient.Size = new System.Drawing.Size(1838, 279);
grpLinkedIngredient.TabIndex = 3;
grpLinkedIngredient.TabStop = false;
grpLinkedIngredient.Text = "Linked Ingredient";
//
// btnSearch
//
btnSearch.ImageKey = "(none)";
btnSearch.Location = new System.Drawing.Point(1768, 44);
btnSearch.Margin = new System.Windows.Forms.Padding(7, 8, 7, 8);
btnSearch.Name = "btnSearch";
btnSearch.Size = new System.Drawing.Size(61, 63);
btnSearch.TabIndex = 6;
btnSearch.UseVisualStyleBackColor = true;
btnSearch.Click += btnSearch_Click;
//
// txtIngredient
//
txtIngredient.Location = new System.Drawing.Point(180, 44);
txtIngredient.Margin = new System.Windows.Forms.Padding(7, 8, 7, 8);
txtIngredient.Name = "txtIngredient";
txtIngredient.Size = new System.Drawing.Size(1583, 47);
txtIngredient.TabIndex = 5;
//
// label3
//
label3.AutoSize = true;
label3.Location = new System.Drawing.Point(17, 52);
label3.Margin = new System.Windows.Forms.Padding(7, 0, 7, 0);
label3.Name = "label3";
label3.Size = new System.Drawing.Size(155, 41);
label3.TabIndex = 4;
label3.Text = "Ingredient";
//
// cboUnit
//
cboUnit.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
cboUnit.FormattingEnabled = true;
cboUnit.Location = new System.Drawing.Point(369, 200);
cboUnit.Margin = new System.Windows.Forms.Padding(7, 8, 7, 8);
cboUnit.Name = "cboUnit";
cboUnit.Size = new System.Drawing.Size(419, 49);
cboUnit.TabIndex = 10;
//
// label2
//
label2.AutoSize = true;
label2.Location = new System.Drawing.Point(17, 210);
label2.Margin = new System.Windows.Forms.Padding(7, 0, 7, 0);
label2.Name = "label2";
label2.Size = new System.Drawing.Size(73, 41);
label2.TabIndex = 9;
label2.Text = "Unit";
//
// txtQuantity
//
txtQuantity.AllowDecimal = true;
txtQuantity.AllowEmpty = true;
txtQuantity.AllowNegative = true;
txtQuantity.Location = new System.Drawing.Point(369, 123);
txtQuantity.Margin = new System.Windows.Forms.Padding(7, 8, 7, 8);
txtQuantity.Name = "txtQuantity";
txtQuantity.Size = new System.Drawing.Size(312, 47);
txtQuantity.TabIndex = 8;
//
// label1
//
label1.AutoSize = true;
label1.Location = new System.Drawing.Point(17, 131);
label1.Margin = new System.Windows.Forms.Padding(7, 0, 7, 0);
label1.Name = "label1";
label1.Size = new System.Drawing.Size(338, 41);
label1.TabIndex = 7;
label1.Text = "Quantity (decimal value)";
//
// btnOK
//
btnOK.Location = new System.Drawing.Point(29, 582);
btnOK.Margin = new System.Windows.Forms.Padding(7, 8, 7, 8);
btnOK.Name = "btnOK";
btnOK.Size = new System.Drawing.Size(182, 63);
btnOK.TabIndex = 11;
btnOK.Text = "OK";
btnOK.UseVisualStyleBackColor = true;
btnOK.Click += btnOK_Click;
//
// btnCancel
//
btnCancel.Location = new System.Drawing.Point(253, 582);
btnCancel.Margin = new System.Windows.Forms.Padding(7, 8, 7, 8);
btnCancel.Name = "btnCancel";
btnCancel.Size = new System.Drawing.Size(182, 63);
btnCancel.TabIndex = 12;
btnCancel.Text = "Cancel";
btnCancel.UseVisualStyleBackColor = true;
btnCancel.Click += btnCancel_Click;
//
// frmPickRecipeIngredient
//
AutoScaleDimensions = new System.Drawing.SizeF(17F, 41F);
AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
AutoSize = true;
ClientSize = new System.Drawing.Size(1894, 675);
ControlBox = false;
Controls.Add(btnCancel);
Controls.Add(btnOK);
Controls.Add(grpLinkedIngredient);
Controls.Add(chkLinkedToIngredient);
Controls.Add(txtCurrentRecipeIngredient);
Controls.Add(lblRecipeIngredient);
FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
Margin = new System.Windows.Forms.Padding(7, 8, 7, 8);
Name = "frmPickRecipeIngredient";
Text = "Recipe Ingredient";
grpLinkedIngredient.ResumeLayout(false);
grpLinkedIngredient.PerformLayout();
ResumeLayout(false);
PerformLayout();
}
#endregion
private System.Windows.Forms.Label lblRecipeIngredient;
private System.Windows.Forms.TextBox txtCurrentRecipeIngredient;
private System.Windows.Forms.CheckBox chkLinkedToIngredient;
private System.Windows.Forms.GroupBox grpLinkedIngredient;
private System.Windows.Forms.Button btnSearch;
private System.Windows.Forms.TextBox txtIngredient;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.ComboBox cboUnit;
private System.Windows.Forms.Label label2;
private JRCookbookControls.JRCookbookNumericTextBox txtQuantity;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.Button btnCancel;
}
}