76 lines
3.1 KiB
C#
76 lines
3.1 KiB
C#
namespace AyaNova.PlugIn.ImportExportCSV
|
|
{
|
|
partial class ImportUpdateOptions
|
|
{
|
|
/// <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.pgImportOpts = new System.Windows.Forms.PropertyGrid();
|
|
this.btnOK = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// pgImportOpts
|
|
//
|
|
this.pgImportOpts.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.pgImportOpts.Location = new System.Drawing.Point(2, 3);
|
|
this.pgImportOpts.Name = "pgImportOpts";
|
|
this.pgImportOpts.Size = new System.Drawing.Size(405, 401);
|
|
this.pgImportOpts.TabIndex = 0;
|
|
this.pgImportOpts.ToolbarVisible = false;
|
|
//
|
|
// btnOK
|
|
//
|
|
this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
|
|
this.btnOK.Location = new System.Drawing.Point(167, 417);
|
|
this.btnOK.Name = "btnOK";
|
|
this.btnOK.Size = new System.Drawing.Size(75, 35);
|
|
this.btnOK.TabIndex = 7;
|
|
this.btnOK.UseVisualStyleBackColor = true;
|
|
//
|
|
// ImportUpdateOptions
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(408, 464);
|
|
this.ControlBox = false;
|
|
this.Controls.Add(this.btnOK);
|
|
this.Controls.Add(this.pgImportOpts);
|
|
this.Name = "ImportUpdateOptions";
|
|
this.Text = "Import duplicate record update options";
|
|
this.Load += new System.EventHandler(this.ImportUpdateOptions_Load);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.PropertyGrid pgImportOpts;
|
|
private System.Windows.Forms.Button btnOK;
|
|
}
|
|
} |