This repository was archived by the owner on Sep 3, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFormInterfaceTag.Designer.cs
More file actions
152 lines (147 loc) · 5.77 KB
/
Copy pathFormInterfaceTag.Designer.cs
File metadata and controls
152 lines (147 loc) · 5.77 KB
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
namespace MyGui.net
{
partial class FormInterfaceTag
{
/// <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()
{
DataGridViewCellStyle dataGridViewCellStyle1 = new DataGridViewCellStyle();
DataGridViewCellStyle dataGridViewCellStyle2 = new DataGridViewCellStyle();
dataGridView1 = new DataGridView();
searchBox = new TextBox();
applyButton = new Button();
cancelButton = new Button();
((System.ComponentModel.ISupportInitialize)dataGridView1).BeginInit();
SuspendLayout();
//
// dataGridView1
//
dataGridView1.AllowUserToAddRows = false;
dataGridView1.AllowUserToDeleteRows = false;
dataGridView1.AllowUserToResizeRows = false;
dataGridView1.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
dataGridView1.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.AllCellsExceptHeader;
dataGridView1.BackgroundColor = SystemColors.ControlLightLight;
dataGridView1.ClipboardCopyMode = DataGridViewClipboardCopyMode.EnableWithoutHeaderText;
dataGridViewCellStyle1.Alignment = DataGridViewContentAlignment.MiddleLeft;
dataGridViewCellStyle1.BackColor = Color.Transparent;
dataGridViewCellStyle1.Font = new Font("Segoe UI", 9F);
dataGridViewCellStyle1.ForeColor = SystemColors.WindowText;
dataGridViewCellStyle1.SelectionBackColor = SystemColors.Highlight;
dataGridViewCellStyle1.SelectionForeColor = SystemColors.HighlightText;
dataGridViewCellStyle1.WrapMode = DataGridViewTriState.True;
dataGridView1.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
dataGridView1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dataGridView1.EditMode = DataGridViewEditMode.EditProgrammatically;
dataGridView1.Location = new Point(12, 41);
dataGridView1.MultiSelect = false;
dataGridView1.Name = "dataGridView1";
dataGridView1.ReadOnly = true;
dataGridView1.RowHeadersBorderStyle = DataGridViewHeaderBorderStyle.None;
dataGridViewCellStyle2.Alignment = DataGridViewContentAlignment.MiddleLeft;
dataGridViewCellStyle2.BackColor = SystemColors.ControlLightLight;
dataGridViewCellStyle2.Font = new Font("Segoe UI", 9F);
dataGridViewCellStyle2.ForeColor = SystemColors.WindowText;
dataGridViewCellStyle2.SelectionBackColor = SystemColors.Highlight;
dataGridViewCellStyle2.SelectionForeColor = SystemColors.HighlightText;
dataGridViewCellStyle2.WrapMode = DataGridViewTriState.True;
dataGridView1.RowHeadersDefaultCellStyle = dataGridViewCellStyle2;
dataGridView1.RowHeadersVisible = false;
dataGridView1.RowHeadersWidth = 4;
dataGridView1.RowHeadersWidthSizeMode = DataGridViewRowHeadersWidthSizeMode.DisableResizing;
dataGridView1.RowTemplate.ReadOnly = true;
dataGridView1.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
dataGridView1.ShowCellErrors = false;
dataGridView1.ShowCellToolTips = false;
dataGridView1.ShowEditingIcon = false;
dataGridView1.ShowRowErrors = false;
dataGridView1.Size = new Size(760, 379);
dataGridView1.StandardTab = true;
dataGridView1.TabIndex = 0;
dataGridView1.CellMouseDoubleClick += dataGridView1_CellMouseDoubleClick;
//
// searchBox
//
searchBox.Anchor = AnchorStyles.Top | AnchorStyles.Right;
searchBox.Location = new Point(522, 12);
searchBox.Name = "searchBox";
searchBox.PlaceholderText = "Search";
searchBox.Size = new Size(250, 23);
searchBox.TabIndex = 1;
searchBox.TextChanged += searchBox_TextChanged;
//
// applyButton
//
applyButton.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
applyButton.DialogResult = DialogResult.OK;
applyButton.FlatStyle = FlatStyle.System;
applyButton.Location = new Point(552, 426);
applyButton.Name = "applyButton";
applyButton.Size = new Size(105, 23);
applyButton.TabIndex = 9;
applyButton.Text = "OK";
applyButton.UseVisualStyleBackColor = true;
//
// cancelButton
//
cancelButton.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
cancelButton.DialogResult = DialogResult.Cancel;
cancelButton.FlatStyle = FlatStyle.System;
cancelButton.Location = new Point(667, 426);
cancelButton.Name = "cancelButton";
cancelButton.Size = new Size(105, 23);
cancelButton.TabIndex = 8;
cancelButton.Text = "Cancel";
cancelButton.UseVisualStyleBackColor = true;
//
// FormInterfaceTag
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(784, 461);
Controls.Add(applyButton);
Controls.Add(cancelButton);
Controls.Add(searchBox);
Controls.Add(dataGridView1);
KeyPreview = true;
MinimizeBox = false;
MinimumSize = new Size(290, 200);
Name = "FormInterfaceTag";
ShowIcon = false;
ShowInTaskbar = false;
SizeGripStyle = SizeGripStyle.Show;
Text = "Interface Tags";
FormClosing += FormInterfaceTag_FormClosing;
Load += FormInterfaceTag_Load;
KeyDown += FormInterfaceTag_KeyDown;
((System.ComponentModel.ISupportInitialize)dataGridView1).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion
private DataGridView dataGridView1;
private TextBox searchBox;
private Button applyButton;
private Button cancelButton;
}
}