Ground work for display layout support.
1 namespace SharpDisplayManager
3 partial class FormSelectHarmonyCommand
6 /// Required designer variable.
8 private System.ComponentModel.IContainer components = null;
11 /// Clean up any resources being used.
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
16 if (disposing && (components != null))
20 base.Dispose(disposing);
23 #region Windows Form Designer generated code
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
29 private void InitializeComponent()
31 this.iTreeViewHarmony = new System.Windows.Forms.TreeView();
32 this.buttonCancel = new System.Windows.Forms.Button();
33 this.iButtonOk = new System.Windows.Forms.Button();
38 this.iTreeViewHarmony.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
39 | System.Windows.Forms.AnchorStyles.Left)
40 | System.Windows.Forms.AnchorStyles.Right)));
41 this.iTreeViewHarmony.Location = new System.Drawing.Point(12, 12);
42 this.iTreeViewHarmony.Name = "iTreeViewHarmony";
43 this.iTreeViewHarmony.Size = new System.Drawing.Size(302, 317);
44 this.iTreeViewHarmony.TabIndex = 0;
45 this.iTreeViewHarmony.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.iTreeViewHarmony_AfterSelect);
46 this.iTreeViewHarmony.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.iTreeViewHarmony_NodeMouseDoubleClick);
50 this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
51 this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
52 this.buttonCancel.Location = new System.Drawing.Point(93, 335);
53 this.buttonCancel.Name = "buttonCancel";
54 this.buttonCancel.Size = new System.Drawing.Size(75, 23);
55 this.buttonCancel.TabIndex = 24;
56 this.buttonCancel.Text = "Cancel";
57 this.buttonCancel.UseVisualStyleBackColor = true;
61 this.iButtonOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
62 this.iButtonOk.DialogResult = System.Windows.Forms.DialogResult.OK;
63 this.iButtonOk.Enabled = false;
64 this.iButtonOk.Location = new System.Drawing.Point(12, 335);
65 this.iButtonOk.Name = "iButtonOk";
66 this.iButtonOk.Size = new System.Drawing.Size(75, 23);
67 this.iButtonOk.TabIndex = 23;
68 this.iButtonOk.Text = "Ok";
69 this.iButtonOk.UseVisualStyleBackColor = true;
71 // FormSelectHarmonyCommand
73 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
74 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
75 this.ClientSize = new System.Drawing.Size(326, 370);
76 this.Controls.Add(this.buttonCancel);
77 this.Controls.Add(this.iButtonOk);
78 this.Controls.Add(this.iTreeViewHarmony);
79 this.MaximizeBox = false;
80 this.MinimizeBox = false;
81 this.Name = "FormSelectHarmonyCommand";
82 this.Text = "Select command";
83 this.Load += new System.EventHandler(this.FormSelectHarmonyCommand_Load);
84 this.ResumeLayout(false);
90 private System.Windows.Forms.TreeView iTreeViewHarmony;
91 private System.Windows.Forms.Button buttonCancel;
92 private System.Windows.Forms.Button iButtonOk;