-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainForm.Designer.cs
117 lines (114 loc) · 4.59 KB
/
MainForm.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
namespace MedSQL_Reader
{
partial class MainForm
{
private System.ComponentModel.IContainer components = null;
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
dataGridView = new DataGridView();
openFileDialog = new OpenFileDialog();
btnOpenFile = new Button();
panelTextFile = new Panel();
label1 = new Label();
label2 = new Label();
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
SuspendLayout();
//
// dataGridView
//
dataGridView.BackgroundColor = SystemColors.ControlDarkDark;
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dataGridView.Location = new Point(13, 45);
dataGridView.Margin = new Padding(4, 3, 4, 3);
dataGridView.Name = "dataGridView";
dataGridView.Size = new Size(771, 554);
dataGridView.TabIndex = 0;
dataGridView.CellDoubleClick += dataGridView_CellDoubleClick;
//
// openFileDialog
//
openFileDialog.Filter = "SQLite files|*.db;*.sqlite;*.sqlite3|All files|*.*";
//
// btnOpenFile
//
btnOpenFile.Location = new Point(13, 12);
btnOpenFile.Margin = new Padding(4, 3, 4, 3);
btnOpenFile.Name = "btnOpenFile";
btnOpenFile.Size = new Size(180, 27);
btnOpenFile.TabIndex = 1;
btnOpenFile.Text = "Open Tomedo SQLite file";
btnOpenFile.UseVisualStyleBackColor = true;
btnOpenFile.Click += btnOpenFile_Click;
//
// panelTextFile
//
panelTextFile.BackColor = Color.Silver;
panelTextFile.BorderStyle = BorderStyle.FixedSingle;
panelTextFile.Location = new Point(806, 45);
panelTextFile.Margin = new Padding(4, 3, 4, 3);
panelTextFile.Name = "panelTextFile";
panelTextFile.Size = new Size(564, 554);
panelTextFile.TabIndex = 6;
//
// label1
//
label1.AutoSize = true;
label1.BackColor = Color.Transparent;
label1.ForeColor = SystemColors.Control;
label1.Location = new Point(200, 24);
label1.Name = "label1";
label1.Size = new Size(61, 15);
label1.TabIndex = 0;
label1.Text = "SQL Table:";
label1.TextAlign = ContentAlignment.MiddleCenter;
//
// label2
//
label2.AutoSize = true;
label2.BackColor = Color.Transparent;
label2.ForeColor = SystemColors.Control;
label2.Location = new Point(806, 24);
label2.Name = "label2";
label2.Size = new Size(82, 15);
label2.TabIndex = 7;
label2.Text = "Data/Content:";
label2.TextAlign = ContentAlignment.MiddleCenter;
//
// MainForm
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
BackgroundImage = Properties.Resources.bg;
ClientSize = new Size(1383, 611);
Controls.Add(label2);
Controls.Add(panelTextFile);
Controls.Add(btnOpenFile);
Controls.Add(dataGridView);
Controls.Add(label1);
FormBorderStyle = FormBorderStyle.FixedSingle;
Icon = (Icon)resources.GetObject("$this.Icon");
Margin = new Padding(4, 3, 4, 3);
MaximizeBox = false;
Name = "MainForm";
Text = "MedSQL Reader v1.0.1 by Jettcodey";
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
ResumeLayout(false);
PerformLayout();
}
private System.Windows.Forms.DataGridView dataGridView;
private System.Windows.Forms.OpenFileDialog openFileDialog;
private System.Windows.Forms.Button btnOpenFile;
private System.Windows.Forms.Panel panelTextFile;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
}
}