-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFormMain.Designer.cs
81 lines (75 loc) · 3.24 KB
/
FormMain.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
73
74
75
76
77
78
79
80
81
namespace FirebirdTest
{
partial class FormMain
{
/// <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.buttonUpdate = new System.Windows.Forms.Button();
this.checkDelete = new System.Windows.Forms.CheckBox();
this.SuspendLayout();
//
// buttonUpdate
//
this.buttonUpdate.Location = new System.Drawing.Point(15, 46);
this.buttonUpdate.Name = "buttonUpdate";
this.buttonUpdate.Size = new System.Drawing.Size(245, 42);
this.buttonUpdate.TabIndex = 0;
this.buttonUpdate.Text = "Run update test";
this.buttonUpdate.UseVisualStyleBackColor = true;
this.buttonUpdate.Click += new System.EventHandler(this.buttonUpdate_Click);
//
// checkDelete
//
this.checkDelete.AutoSize = true;
this.checkDelete.Location = new System.Drawing.Point(17, 15);
this.checkDelete.Name = "checkDelete";
this.checkDelete.Size = new System.Drawing.Size(220, 25);
this.checkDelete.TabIndex = 1;
this.checkDelete.Text = "Delete old database if exists";
this.checkDelete.UseVisualStyleBackColor = true;
//
// FormMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.ClientSize = new System.Drawing.Size(278, 103);
this.Controls.Add(this.checkDelete);
this.Controls.Add(this.buttonUpdate);
this.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "FormMain";
this.Padding = new System.Windows.Forms.Padding(3);
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "FirebirdTest";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion Windows Form Designer generated code
private System.Windows.Forms.Button buttonUpdate;
private System.Windows.Forms.CheckBox checkDelete;
}
}