CraftSynth.ImageEditor – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 namespace CraftSynth.ImageEditor
2 {
3 partial class LayerDialog
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.dgvLayers = new System.Windows.Forms.DataGridView();
32 this.btnClose = new System.Windows.Forms.Button();
33 this.btnAddLayer = new System.Windows.Forms.Button();
34 ((System.ComponentModel.ISupportInitialize)(this.dgvLayers)).BeginInit();
35 this.SuspendLayout();
36 //
37 // dgvLayers
38 //
39 this.dgvLayers.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
40 this.dgvLayers.Location = new System.Drawing.Point(13, 13);
41 this.dgvLayers.Name = "dgvLayers";
42 this.dgvLayers.Size = new System.Drawing.Size(648, 212);
43 this.dgvLayers.TabIndex = 0;
44 //
45 // btnClose
46 //
47 this.btnClose.Location = new System.Drawing.Point(586, 231);
48 this.btnClose.Name = "btnClose";
49 this.btnClose.Size = new System.Drawing.Size(75, 23);
50 this.btnClose.TabIndex = 1;
51 this.btnClose.Text = "Close";
52 this.btnClose.UseVisualStyleBackColor = true;
53 this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
54 //
55 // btnAddLayer
56 //
57 this.btnAddLayer.Location = new System.Drawing.Point(13, 231);
58 this.btnAddLayer.Name = "btnAddLayer";
59 this.btnAddLayer.Size = new System.Drawing.Size(75, 23);
60 this.btnAddLayer.TabIndex = 2;
61 this.btnAddLayer.Text = "Add Layer";
62 this.btnAddLayer.UseVisualStyleBackColor = true;
63 this.btnAddLayer.Click += new System.EventHandler(this.btnAddLayer_Click);
64 //
65 // LayerDialog
66 //
67 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
68 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
69 this.ClientSize = new System.Drawing.Size(668, 266);
70 this.Controls.Add(this.btnAddLayer);
71 this.Controls.Add(this.btnClose);
72 this.Controls.Add(this.dgvLayers);
73 this.Name = "LayerDialog";
74 this.Text = "Layers";
75 ((System.ComponentModel.ISupportInitialize)(this.dgvLayers)).EndInit();
76 this.ResumeLayout(false);
77  
78 }
79  
80 #endregion
81  
82 private System.Windows.Forms.DataGridView dgvLayers;
83 private System.Windows.Forms.Button btnClose;
84 private System.Windows.Forms.Button btnAddLayer;
85 }
86 }