Mercurial > pub > ImplabNet
comparison Implab.Fx.Test/Sample/MainForm.Designer.cs @ 5:f2559580b481
implemented overlay helpers and some animation heplers improvments
author | cin |
---|---|
date | Tue, 24 Sep 2013 03:31:24 +0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
4:381095ad0a69 | 5:f2559580b481 |
---|---|
1 namespace Implab.Fx.Test.Sample | |
2 { | |
3 partial class MainForm | |
4 { | |
5 /// <summary> | |
6 /// Required designer variable. | |
7 /// </summary> | |
8 private System.ComponentModel.IContainer components = null; | |
9 | |
10 /// <summary> | |
11 /// Clean up any resources being used. | |
12 /// </summary> | |
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> | |
14 protected override void Dispose(bool disposing) | |
15 { | |
16 if (disposing && (components != null)) | |
17 { | |
18 components.Dispose(); | |
19 } | |
20 base.Dispose(disposing); | |
21 } | |
22 | |
23 #region Windows Form Designer generated code | |
24 | |
25 /// <summary> | |
26 /// Required method for Designer support - do not modify | |
27 /// the contents of this method with the code editor. | |
28 /// </summary> | |
29 private void InitializeComponent() | |
30 { | |
31 this.button1 = new System.Windows.Forms.Button(); | |
32 this.comboBox1 = new System.Windows.Forms.ComboBox(); | |
33 this.listBox1 = new System.Windows.Forms.ListBox(); | |
34 this.SuspendLayout(); | |
35 // | |
36 // button1 | |
37 // | |
38 this.button1.Location = new System.Drawing.Point(138, 12); | |
39 this.button1.Name = "button1"; | |
40 this.button1.Size = new System.Drawing.Size(75, 23); | |
41 this.button1.TabIndex = 0; | |
42 this.button1.Text = "button1"; | |
43 this.button1.UseVisualStyleBackColor = true; | |
44 this.button1.Click += new System.EventHandler(this.button1_Click); | |
45 // | |
46 // comboBox1 | |
47 // | |
48 this.comboBox1.FormattingEnabled = true; | |
49 this.comboBox1.Location = new System.Drawing.Point(138, 41); | |
50 this.comboBox1.Name = "comboBox1"; | |
51 this.comboBox1.Size = new System.Drawing.Size(121, 21); | |
52 this.comboBox1.TabIndex = 1; | |
53 // | |
54 // listBox1 | |
55 // | |
56 this.listBox1.FormattingEnabled = true; | |
57 this.listBox1.Location = new System.Drawing.Point(12, 12); | |
58 this.listBox1.Name = "listBox1"; | |
59 this.listBox1.Size = new System.Drawing.Size(120, 95); | |
60 this.listBox1.TabIndex = 2; | |
61 // | |
62 // MainForm | |
63 // | |
64 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); | |
65 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; | |
66 this.ClientSize = new System.Drawing.Size(284, 262); | |
67 this.Controls.Add(this.listBox1); | |
68 this.Controls.Add(this.comboBox1); | |
69 this.Controls.Add(this.button1); | |
70 this.Name = "MainForm"; | |
71 this.Text = "MainForm"; | |
72 this.ResumeLayout(false); | |
73 | |
74 } | |
75 | |
76 #endregion | |
77 | |
78 private System.Windows.Forms.Button button1; | |
79 private System.Windows.Forms.ComboBox comboBox1; | |
80 private System.Windows.Forms.ListBox listBox1; | |
81 } | |
82 } |