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/docs/_src/Extension/Panels/WinForm.Designer.cs
2022-10-15 19:16:08 +02:00

80 lines
3.2 KiB
C#

namespace Xarial.XCad.Documentation.Extension.Panels
{
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.tlpMain = new System.Windows.Forms.TableLayoutPanel();
this.lblMessage = new System.Windows.Forms.Label();
this.tlpMain.SuspendLayout();
this.SuspendLayout();
//
// tlpMain
//
this.tlpMain.ColumnCount = 1;
this.tlpMain.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tlpMain.Controls.Add(this.lblMessage, 0, 0);
this.tlpMain.Dock = System.Windows.Forms.DockStyle.Fill;
this.tlpMain.Location = new System.Drawing.Point(0, 0);
this.tlpMain.Name = "tlpMain";
this.tlpMain.RowCount = 1;
this.tlpMain.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tlpMain.Size = new System.Drawing.Size(323, 197);
this.tlpMain.TabIndex = 4;
//
// lblMessage
//
this.lblMessage.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.lblMessage.BackColor = System.Drawing.SystemColors.Info;
this.lblMessage.Location = new System.Drawing.Point(3, 0);
this.lblMessage.Name = "lblMessage";
this.lblMessage.Size = new System.Drawing.Size(317, 197);
this.lblMessage.TabIndex = 0;
this.lblMessage.Text = "WinForm Popup";
this.lblMessage.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// WinForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(323, 197);
this.Controls.Add(this.tlpMain);
this.Name = "WinForm";
this.Text = "WinForm";
this.tlpMain.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
internal System.Windows.Forms.TableLayoutPanel tlpMain;
internal System.Windows.Forms.Label lblMessage;
}
}