32
32
this.m_btnCancel = new System.Windows.Forms.Button();
33
33
this.m_lblChoose = new System.Windows.Forms.Label();
34
34
this.m_lblReorderHint = new System.Windows.Forms.Label();
35
this.m_btnAsterisks = new System.Windows.Forms.Button();
36
35
this.m_lvColumns = new KeePass.UI.CustomListViewEx();
37
36
this.m_bannerImage = new System.Windows.Forms.PictureBox();
38
37
this.m_lblSortHint = new System.Windows.Forms.Label();
38
this.m_grpColumn = new System.Windows.Forms.GroupBox();
39
this.m_cbHide = new System.Windows.Forms.CheckBox();
39
40
((System.ComponentModel.ISupportInitialize)(this.m_bannerImage)).BeginInit();
41
this.m_grpColumn.SuspendLayout();
40
42
this.SuspendLayout();
66
68
this.m_lblChoose.AutoSize = true;
67
this.m_lblChoose.Location = new System.Drawing.Point(9, 70);
69
this.m_lblChoose.Location = new System.Drawing.Point(9, 72);
68
70
this.m_lblChoose.Name = "m_lblChoose";
69
71
this.m_lblChoose.Size = new System.Drawing.Size(239, 13);
70
this.m_lblChoose.TabIndex = 5;
72
this.m_lblChoose.TabIndex = 2;
71
73
this.m_lblChoose.Text = "Choose the columns to show in the main window:";
73
75
// m_lblReorderHint
75
77
this.m_lblReorderHint.AutoSize = true;
76
this.m_lblReorderHint.Location = new System.Drawing.Point(9, 423);
78
this.m_lblReorderHint.Location = new System.Drawing.Point(9, 447);
77
79
this.m_lblReorderHint.Name = "m_lblReorderHint";
78
80
this.m_lblReorderHint.Size = new System.Drawing.Size(344, 13);
79
this.m_lblReorderHint.TabIndex = 3;
81
this.m_lblReorderHint.TabIndex = 5;
80
82
this.m_lblReorderHint.Text = "To reorder columns, drag&&drop the column headers in the main window.";
84
this.m_btnAsterisks.Location = new System.Drawing.Point(518, 395);
85
this.m_btnAsterisks.Name = "m_btnAsterisks";
86
this.m_btnAsterisks.Size = new System.Drawing.Size(75, 23);
87
this.m_btnAsterisks.TabIndex = 2;
88
this.m_btnAsterisks.Text = "&Asterisks";
89
this.m_btnAsterisks.UseVisualStyleBackColor = true;
90
this.m_btnAsterisks.Click += new System.EventHandler(this.OnBtnAsterisks);
94
86
this.m_lvColumns.CheckBoxes = true;
95
87
this.m_lvColumns.FullRowSelect = true;
96
88
this.m_lvColumns.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
97
this.m_lvColumns.Location = new System.Drawing.Point(13, 88);
89
this.m_lvColumns.Location = new System.Drawing.Point(12, 88);
90
this.m_lvColumns.MultiSelect = false;
98
91
this.m_lvColumns.Name = "m_lvColumns";
99
this.m_lvColumns.Size = new System.Drawing.Size(499, 329);
100
this.m_lvColumns.TabIndex = 6;
92
this.m_lvColumns.Size = new System.Drawing.Size(500, 300);
93
this.m_lvColumns.TabIndex = 3;
101
94
this.m_lvColumns.UseCompatibleStateImageBehavior = false;
102
95
this.m_lvColumns.View = System.Windows.Forms.View.Details;
103
96
this.m_lvColumns.SelectedIndexChanged += new System.EventHandler(this.OnColumnsSelectedIndexChanged);
116
109
this.m_lblSortHint.AutoSize = true;
117
this.m_lblSortHint.Location = new System.Drawing.Point(9, 440);
110
this.m_lblSortHint.Location = new System.Drawing.Point(9, 465);
118
111
this.m_lblSortHint.Name = "m_lblSortHint";
119
112
this.m_lblSortHint.Size = new System.Drawing.Size(419, 13);
120
this.m_lblSortHint.TabIndex = 4;
113
this.m_lblSortHint.TabIndex = 6;
121
114
this.m_lblSortHint.Text = "To sort entries by a field, click on the corresponding column header in the main " +
119
this.m_grpColumn.Controls.Add(this.m_cbHide);
120
this.m_grpColumn.Location = new System.Drawing.Point(12, 394);
121
this.m_grpColumn.Name = "m_grpColumn";
122
this.m_grpColumn.Size = new System.Drawing.Size(500, 45);
123
this.m_grpColumn.TabIndex = 4;
124
this.m_grpColumn.TabStop = false;
125
this.m_grpColumn.Text = "<>";
129
this.m_cbHide.AutoSize = true;
130
this.m_cbHide.Location = new System.Drawing.Point(10, 19);
131
this.m_cbHide.Name = "m_cbHide";
132
this.m_cbHide.Size = new System.Drawing.Size(144, 17);
133
this.m_cbHide.TabIndex = 0;
134
this.m_cbHide.Text = "Hide data using asterisks";
135
this.m_cbHide.UseVisualStyleBackColor = true;
136
this.m_cbHide.CheckedChanged += new System.EventHandler(this.OnHideCheckedChanged);
126
140
this.AcceptButton = this.m_btnOK;
127
141
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
128
142
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
129
143
this.CancelButton = this.m_btnCancel;
130
this.ClientSize = new System.Drawing.Size(605, 461);
144
this.ClientSize = new System.Drawing.Size(605, 487);
145
this.Controls.Add(this.m_grpColumn);
131
146
this.Controls.Add(this.m_lblSortHint);
132
147
this.Controls.Add(this.m_bannerImage);
133
this.Controls.Add(this.m_btnAsterisks);
134
148
this.Controls.Add(this.m_lblReorderHint);
135
149
this.Controls.Add(this.m_lvColumns);
136
150
this.Controls.Add(this.m_lblChoose);
146
160
this.Load += new System.EventHandler(this.OnFormLoad);
147
161
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.OnFormClosed);
148
162
((System.ComponentModel.ISupportInitialize)(this.m_bannerImage)).EndInit();
163
this.m_grpColumn.ResumeLayout(false);
164
this.m_grpColumn.PerformLayout();
149
165
this.ResumeLayout(false);
150
166
this.PerformLayout();
158
174
private System.Windows.Forms.Label m_lblChoose;
159
175
private KeePass.UI.CustomListViewEx m_lvColumns;
160
176
private System.Windows.Forms.Label m_lblReorderHint;
161
private System.Windows.Forms.Button m_btnAsterisks;
162
177
private System.Windows.Forms.PictureBox m_bannerImage;
163
178
private System.Windows.Forms.Label m_lblSortHint;
179
private System.Windows.Forms.GroupBox m_grpColumn;
180
private System.Windows.Forms.CheckBox m_cbHide;
b'\\ No newline at end of file'