1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
namespace ControlLibrary
{
partial class LabelButton
{
/// <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 Component 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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LabelButton));
this.control_tlp = new System.Windows.Forms.TableLayoutPanel();
this.control_btn = new System.Windows.Forms.Button();
this.control_lb = new System.Windows.Forms.Label();
this.control_tlp.SuspendLayout();
this.SuspendLayout();
//
// control_tlp
//
this.control_tlp.ColumnCount = 2;
this.control_tlp.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 75.22124F));
this.control_tlp.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 24.77876F));
this.control_tlp.Controls.Add(this.control_btn, 1, 0);
this.control_tlp.Controls.Add(this.control_lb, 0, 0);
this.control_tlp.Dock = System.Windows.Forms.DockStyle.Fill;
this.control_tlp.Location = new System.Drawing.Point(0, 0);
this.control_tlp.Name = "control_tlp";
this.control_tlp.RowCount = 1;
this.control_tlp.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.control_tlp.Size = new System.Drawing.Size(113, 24);
this.control_tlp.TabIndex = 0;
//
// control_btn
//
this.control_btn.Dock = System.Windows.Forms.DockStyle.Fill;
this.control_btn.Image = ((System.Drawing.Image)(resources.GetObject("control_btn.Image")));
this.control_btn.Location = new System.Drawing.Point(84, 0);
this.control_btn.Margin = new System.Windows.Forms.Padding(0);
this.control_btn.Name = "control_btn";
this.control_btn.Size = new System.Drawing.Size(29, 24);
this.control_btn.TabIndex = 0;
this.control_btn.UseVisualStyleBackColor = true;
//
// control_lb
//
this.control_lb.AutoSize = true;
this.control_lb.Dock = System.Windows.Forms.DockStyle.Fill;
this.control_lb.Location = new System.Drawing.Point(3, 0);
this.control_lb.Name = "control_lb";
this.control_lb.Size = new System.Drawing.Size(78, 24);
this.control_lb.TabIndex = 1;
this.control_lb.Text = ". . .";
this.control_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// labelButton
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.control_tlp);
this.Name = "labelButton";
this.Size = new System.Drawing.Size(113, 24);
this.control_tlp.ResumeLayout(false);
this.control_tlp.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TableLayoutPanel control_tlp;
public System.Windows.Forms.Label control_lb;
public System.Windows.Forms.Button control_btn;
}
} |
Partager