-
Notifications
You must be signed in to change notification settings - Fork 0
/
CustomTaskpaneUI.Designer.cs
72 lines (67 loc) · 2.95 KB
/
CustomTaskpaneUI.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
namespace CustomTaskpane
{
partial class CustomTaskpaneUI
{
/// <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 Component 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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CustomTaskpaneUI));
this.pictureBox2 = new System.Windows.Forms.PictureBox();
this.CreateButton = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
this.SuspendLayout();
//
// pictureBox2
//
this.pictureBox2.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image")));
this.pictureBox2.Location = new System.Drawing.Point(0, 0);
this.pictureBox2.Name = "pictureBox2";
this.pictureBox2.Size = new System.Drawing.Size(400, 157);
this.pictureBox2.TabIndex = 0;
this.pictureBox2.TabStop = false;
//
// CreateButton
//
this.CreateButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.CreateButton.Location = new System.Drawing.Point(101, 203);
this.CreateButton.Name = "CreateButton";
this.CreateButton.Size = new System.Drawing.Size(176, 36);
this.CreateButton.TabIndex = 1;
this.CreateButton.Text = "Create a Hole";
this.CreateButton.UseVisualStyleBackColor = true;
this.CreateButton.Click += new System.EventHandler(this.CreateButton_Click);
//
// CustomTaskpaneUI
//
this.Controls.Add(this.CreateButton);
this.Controls.Add(this.pictureBox2);
this.Name = "CustomTaskpaneUI";
this.Size = new System.Drawing.Size(400, 560);
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.PictureBox pictureBox2;
private System.Windows.Forms.Button CreateButton;
}
}