corrade-vassal – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 vero 1 namespace Baker
2 {
3 partial class frmBaker
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.pic1 = new System.Windows.Forms.PictureBox();
32 this.cmdLoadShirt = new System.Windows.Forms.Button();
33 this.scrollWeight = new System.Windows.Forms.HScrollBar();
34 this.cmdLoadSkin = new System.Windows.Forms.Button();
35 this.cboMask = new System.Windows.Forms.ComboBox();
36 ((System.ComponentModel.ISupportInitialize)(this.pic1)).BeginInit();
37 this.SuspendLayout();
38 //
39 // pic1
40 //
41 this.pic1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
42 this.pic1.Location = new System.Drawing.Point(12, 41);
43 this.pic1.Name = "pic1";
44 this.pic1.Size = new System.Drawing.Size(512, 483);
45 this.pic1.TabIndex = 0;
46 this.pic1.TabStop = false;
47 //
48 // cmdLoadShirt
49 //
50 this.cmdLoadShirt.Location = new System.Drawing.Point(449, 530);
51 this.cmdLoadShirt.Name = "cmdLoadShirt";
52 this.cmdLoadShirt.Size = new System.Drawing.Size(75, 23);
53 this.cmdLoadShirt.TabIndex = 1;
54 this.cmdLoadShirt.Text = "Load Shirt";
55 this.cmdLoadShirt.UseVisualStyleBackColor = true;
56 //
57 // scrollWeight
58 //
59 this.scrollWeight.Location = new System.Drawing.Point(12, 530);
60 this.scrollWeight.Maximum = 255;
61 this.scrollWeight.Name = "scrollWeight";
62 this.scrollWeight.Size = new System.Drawing.Size(345, 23);
63 this.scrollWeight.TabIndex = 0;
64 this.scrollWeight.Scroll += new System.Windows.Forms.ScrollEventHandler(this.scrollWeight_Scroll);
65 //
66 // cmdLoadSkin
67 //
68 this.cmdLoadSkin.Location = new System.Drawing.Point(366, 530);
69 this.cmdLoadSkin.Name = "cmdLoadSkin";
70 this.cmdLoadSkin.Size = new System.Drawing.Size(75, 23);
71 this.cmdLoadSkin.TabIndex = 2;
72 this.cmdLoadSkin.Text = "Load Skin";
73 this.cmdLoadSkin.UseVisualStyleBackColor = true;
74 this.cmdLoadSkin.Click += new System.EventHandler(this.cmdLoadSkin_Click);
75 //
76 // cboMask
77 //
78 this.cboMask.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
79 this.cboMask.FormattingEnabled = true;
80 this.cboMask.Items.AddRange(new object[] {
81 "glove_length_alpha",
82 "gloves_fingers_alpha",
83 "jacket_length_lower_alpha",
84 "jacket_length_upper_alpha",
85 "jacket_open_lower_alpha",
86 "jacket_open_upper_alpha",
87 "pants_length_alpha",
88 "pants_waist_alpha",
89 "shirt_bottom_alpha",
90 "shirt_collar_alpha",
91 "shirt_collar_back_alpha",
92 "shirt_sleeve_alpha",
93 "shoe_height_alpha",
94 "skirt_length_alpha",
95 "skirt_slit_front_alpha",
96 "skirt_slit_left_alpha",
97 "skirt_slit_right_alpha"});
98 this.cboMask.Location = new System.Drawing.Point(358, 12);
99 this.cboMask.Name = "cboMask";
100 this.cboMask.Size = new System.Drawing.Size(166, 21);
101 this.cboMask.TabIndex = 3;
102 this.cboMask.SelectedIndexChanged += new System.EventHandler(this.cboMask_SelectedIndexChanged);
103 //
104 // frmBaker
105 //
106 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
107 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
108 this.ClientSize = new System.Drawing.Size(538, 563);
109 this.Controls.Add(this.cboMask);
110 this.Controls.Add(this.cmdLoadSkin);
111 this.Controls.Add(this.scrollWeight);
112 this.Controls.Add(this.cmdLoadShirt);
113 this.Controls.Add(this.pic1);
114 this.Name = "frmBaker";
115 this.Text = "Baker";
116 this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmBaker_FormClosing);
117 this.Load += new System.EventHandler(this.frmBaker_Load);
118 ((System.ComponentModel.ISupportInitialize)(this.pic1)).EndInit();
119 this.ResumeLayout(false);
120  
121 }
122  
123 #endregion
124  
125 private System.Windows.Forms.PictureBox pic1;
126 private System.Windows.Forms.HScrollBar scrollWeight;
127 private System.Windows.Forms.Button cmdLoadShirt;
128 private System.Windows.Forms.Button cmdLoadSkin;
129 private System.Windows.Forms.ComboBox cboMask;
130  
131 }
132 }
133  
134