using System.Windows.Forms;
namespace FastReport.Forms
{
partial class AddNewItemForm
{
///
/// 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);
}
#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.lvWizards = new ListView();
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.SuspendLayout();
//
// btnOk
//
this.btnOk.Location = new System.Drawing.Point(248, 216);
this.btnOk.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.btnOk.Text = "Add";
this.btnOk.KeyUp += new System.Windows.Forms.KeyEventHandler(this.AddNewItemForm_KeyUp);
//
// btnCancel
//
this.btnCancel.Location = new System.Drawing.Point(328, 216);
this.btnCancel.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.btnCancel.KeyUp += new System.Windows.Forms.KeyEventHandler(this.AddNewItemForm_KeyUp);
//
// lvWizards
//
this.lvWizards.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.columnHeader2});
this.lvWizards.HideSelection = false;
this.lvWizards.Location = new System.Drawing.Point(8, 8);
this.lvWizards.MultiSelect = false;
this.lvWizards.Name = "lvWizards";
this.lvWizards.Size = new System.Drawing.Size(396, 196);
this.lvWizards.TabIndex = 1;
this.lvWizards.UseCompatibleStateImageBehavior = false;
this.lvWizards.View = System.Windows.Forms.View.SmallIcon;
this.lvWizards.SelectedIndexChanged += new System.EventHandler(this.lvWizards_SelectedIndexChanged);
this.lvWizards.DoubleClick += new System.EventHandler(this.lvWizards_DoubleClick);
this.lvWizards.KeyUp += new System.Windows.Forms.KeyEventHandler(this.AddNewItemForm_KeyUp);
//
// columnHeader1
//
this.columnHeader1.Width = 180;
//
// columnHeader2
//
this.columnHeader2.Width = 180;
//
// AddNewItemForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.ClientSize = new System.Drawing.Size(412, 250);
this.Controls.Add(this.lvWizards);
this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.Name = "AddNewItemForm";
this.Text = "Add New Item";
this.KeyUp += new System.Windows.Forms.KeyEventHandler(this.AddNewItemForm_KeyUp);
this.Controls.SetChildIndex(this.btnOk, 0);
this.Controls.SetChildIndex(this.btnCancel, 0);
this.Controls.SetChildIndex(this.lvWizards, 0);
this.ResumeLayout(false);
}
#endregion
private ListView lvWizards;
private System.Windows.Forms.ColumnHeader columnHeader1;
private System.Windows.Forms.ColumnHeader columnHeader2;
}
}