148 lines
No EOL
5.9 KiB
C#
148 lines
No EOL
5.9 KiB
C#
namespace WebsitePanel.Import.Enterprise
|
|
{
|
|
partial class SpaceForm
|
|
{
|
|
/// <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 Windows Form 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()
|
|
{
|
|
this.components = new System.ComponentModel.Container();
|
|
System.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("Node3", 3, 3);
|
|
System.Windows.Forms.TreeNode treeNode2 = new System.Windows.Forms.TreeNode("Node2", 2, 2, new System.Windows.Forms.TreeNode[] {
|
|
treeNode1});
|
|
System.Windows.Forms.TreeNode treeNode3 = new System.Windows.Forms.TreeNode("Node1", 1, 1, new System.Windows.Forms.TreeNode[] {
|
|
treeNode2});
|
|
System.Windows.Forms.TreeNode treeNode4 = new System.Windows.Forms.TreeNode("Node0", new System.Windows.Forms.TreeNode[] {
|
|
treeNode3});
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SpaceForm));
|
|
this.spaceTree = new System.Windows.Forms.TreeView();
|
|
this.images = new System.Windows.Forms.ImageList(this.components);
|
|
this.pnlButtons = new System.Windows.Forms.Panel();
|
|
this.btnCancel = new System.Windows.Forms.Button();
|
|
this.btnSelect = new System.Windows.Forms.Button();
|
|
this.pnlButtons.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// spaceTree
|
|
//
|
|
this.spaceTree.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.spaceTree.ImageIndex = 0;
|
|
this.spaceTree.ImageList = this.images;
|
|
this.spaceTree.Location = new System.Drawing.Point(10, 10);
|
|
this.spaceTree.Name = "spaceTree";
|
|
treeNode1.ImageIndex = 3;
|
|
treeNode1.Name = "Node3";
|
|
treeNode1.SelectedImageIndex = 3;
|
|
treeNode1.Text = "Node3";
|
|
treeNode2.ImageIndex = 2;
|
|
treeNode2.Name = "Node2";
|
|
treeNode2.SelectedImageIndex = 2;
|
|
treeNode2.Text = "Node2";
|
|
treeNode3.ImageIndex = 1;
|
|
treeNode3.Name = "Node1";
|
|
treeNode3.SelectedImageIndex = 1;
|
|
treeNode3.Text = "Node1";
|
|
treeNode4.Name = "Node0";
|
|
treeNode4.Text = "Node0";
|
|
this.spaceTree.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
|
|
treeNode4});
|
|
this.spaceTree.SelectedImageIndex = 0;
|
|
this.spaceTree.ShowLines = false;
|
|
this.spaceTree.Size = new System.Drawing.Size(399, 319);
|
|
this.spaceTree.TabIndex = 0;
|
|
this.spaceTree.BeforeExpand += new System.Windows.Forms.TreeViewCancelEventHandler(this.OnBeforeExpand);
|
|
//
|
|
// images
|
|
//
|
|
this.images.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("images.ImageStream")));
|
|
this.images.TransparentColor = System.Drawing.Color.Transparent;
|
|
this.images.Images.SetKeyName(0, "UserSmallIcon.ico");
|
|
this.images.Images.SetKeyName(1, "UsersSmallIcon.ico");
|
|
this.images.Images.SetKeyName(2, "FolderSmallIcon.ico");
|
|
this.images.Images.SetKeyName(3, "SpaceSmallIcon.ico");
|
|
//
|
|
// pnlButtons
|
|
//
|
|
this.pnlButtons.Controls.Add(this.btnCancel);
|
|
this.pnlButtons.Controls.Add(this.btnSelect);
|
|
this.pnlButtons.Dock = System.Windows.Forms.DockStyle.Bottom;
|
|
this.pnlButtons.Location = new System.Drawing.Point(10, 329);
|
|
this.pnlButtons.Name = "pnlButtons";
|
|
this.pnlButtons.Size = new System.Drawing.Size(399, 32);
|
|
this.pnlButtons.TabIndex = 1;
|
|
//
|
|
// btnCancel
|
|
//
|
|
this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.btnCancel.Location = new System.Drawing.Point(324, 9);
|
|
this.btnCancel.Name = "btnCancel";
|
|
this.btnCancel.Size = new System.Drawing.Size(75, 23);
|
|
this.btnCancel.TabIndex = 1;
|
|
this.btnCancel.Text = "Cancel";
|
|
this.btnCancel.UseVisualStyleBackColor = true;
|
|
//
|
|
// btnSelect
|
|
//
|
|
this.btnSelect.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.btnSelect.Location = new System.Drawing.Point(243, 9);
|
|
this.btnSelect.Name = "btnSelect";
|
|
this.btnSelect.Size = new System.Drawing.Size(75, 23);
|
|
this.btnSelect.TabIndex = 0;
|
|
this.btnSelect.Text = "Select";
|
|
this.btnSelect.UseVisualStyleBackColor = true;
|
|
this.btnSelect.Click += new System.EventHandler(this.OnSelectClick);
|
|
//
|
|
// SpaceForm
|
|
//
|
|
this.AcceptButton = this.btnSelect;
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.CancelButton = this.btnCancel;
|
|
this.ClientSize = new System.Drawing.Size(419, 371);
|
|
this.Controls.Add(this.spaceTree);
|
|
this.Controls.Add(this.pnlButtons);
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "SpaceForm";
|
|
this.Padding = new System.Windows.Forms.Padding(10);
|
|
this.ShowIcon = false;
|
|
this.ShowInTaskbar = false;
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "Select Hosting Space";
|
|
this.pnlButtons.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TreeView spaceTree;
|
|
private System.Windows.Forms.Panel pnlButtons;
|
|
private System.Windows.Forms.Button btnCancel;
|
|
private System.Windows.Forms.Button btnSelect;
|
|
private System.Windows.Forms.ImageList images;
|
|
}
|
|
} |