This repository has been archived on 2023-01-27. You can view files and clone it, but cannot push or open issues or pull requests.
cad/ref/xcad/samples/SwAddIn/WinForm.Designer.cs
2022-10-15 19:16:08 +02:00

61 lines
2.0 KiB
C#

namespace SwAddInExample
{
partial class WinForm
{
/// <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.lblMsg = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// lblMsg
//
this.lblMsg.AutoSize = true;
this.lblMsg.Location = new System.Drawing.Point(199, 122);
this.lblMsg.Name = "lblMsg";
this.lblMsg.Size = new System.Drawing.Size(100, 17);
this.lblMsg.TabIndex = 0;
this.lblMsg.Text = "Windows Form";
//
// WinForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(523, 289);
this.Controls.Add(this.lblMsg);
this.Name = "WinForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "WinForm";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lblMsg;
}
}