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 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
|
namespace KeePass.Forms
{
partial class ColumnsForm
{
/// <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.m_btnOK = new System.Windows.Forms.Button();
this.m_btnCancel = new System.Windows.Forms.Button();
this.m_lblChoose = new System.Windows.Forms.Label();
this.m_lblReorderHint = new System.Windows.Forms.Label();
this.m_lvColumns = new KeePass.UI.CustomListViewEx();
this.m_bannerImage = new System.Windows.Forms.PictureBox();
this.m_lblSortHint = new System.Windows.Forms.Label();
this.m_grpColumn = new System.Windows.Forms.GroupBox();
this.m_cbHide = new System.Windows.Forms.CheckBox();
((System.ComponentModel.ISupportInitialize)(this.m_bannerImage)).BeginInit();
this.m_grpColumn.SuspendLayout();
this.SuspendLayout();
//
// m_btnOK
//
this.m_btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
this.m_btnOK.Location = new System.Drawing.Point(518, 87);
this.m_btnOK.Name = "m_btnOK";
this.m_btnOK.Size = new System.Drawing.Size(75, 23);
this.m_btnOK.TabIndex = 0;
this.m_btnOK.Text = "&OK";
this.m_btnOK.UseVisualStyleBackColor = true;
this.m_btnOK.Click += new System.EventHandler(this.OnBtnOK);
//
// m_btnCancel
//
this.m_btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.m_btnCancel.Location = new System.Drawing.Point(518, 116);
this.m_btnCancel.Name = "m_btnCancel";
this.m_btnCancel.Size = new System.Drawing.Size(75, 23);
this.m_btnCancel.TabIndex = 1;
this.m_btnCancel.Text = "&Cancel";
this.m_btnCancel.UseVisualStyleBackColor = true;
this.m_btnCancel.Click += new System.EventHandler(this.OnBtnCancel);
//
// m_lblChoose
//
this.m_lblChoose.AutoSize = true;
this.m_lblChoose.Location = new System.Drawing.Point(9, 72);
this.m_lblChoose.Name = "m_lblChoose";
this.m_lblChoose.Size = new System.Drawing.Size(239, 13);
this.m_lblChoose.TabIndex = 2;
this.m_lblChoose.Text = "Choose the columns to show in the main window:";
//
// m_lblReorderHint
//
this.m_lblReorderHint.AutoSize = true;
this.m_lblReorderHint.Location = new System.Drawing.Point(9, 447);
this.m_lblReorderHint.Name = "m_lblReorderHint";
this.m_lblReorderHint.Size = new System.Drawing.Size(344, 13);
this.m_lblReorderHint.TabIndex = 5;
this.m_lblReorderHint.Text = "To reorder columns, drag&&drop the column headers in the main window.";
//
// m_lvColumns
//
this.m_lvColumns.CheckBoxes = true;
this.m_lvColumns.FullRowSelect = true;
this.m_lvColumns.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
this.m_lvColumns.Location = new System.Drawing.Point(12, 88);
this.m_lvColumns.MultiSelect = false;
this.m_lvColumns.Name = "m_lvColumns";
this.m_lvColumns.Size = new System.Drawing.Size(500, 300);
this.m_lvColumns.TabIndex = 3;
this.m_lvColumns.UseCompatibleStateImageBehavior = false;
this.m_lvColumns.View = System.Windows.Forms.View.Details;
this.m_lvColumns.SelectedIndexChanged += new System.EventHandler(this.OnColumnsSelectedIndexChanged);
//
// m_bannerImage
//
this.m_bannerImage.Dock = System.Windows.Forms.DockStyle.Top;
this.m_bannerImage.Location = new System.Drawing.Point(0, 0);
this.m_bannerImage.Name = "m_bannerImage";
this.m_bannerImage.Size = new System.Drawing.Size(605, 60);
this.m_bannerImage.TabIndex = 6;
this.m_bannerImage.TabStop = false;
//
// m_lblSortHint
//
this.m_lblSortHint.AutoSize = true;
this.m_lblSortHint.Location = new System.Drawing.Point(9, 465);
this.m_lblSortHint.Name = "m_lblSortHint";
this.m_lblSortHint.Size = new System.Drawing.Size(419, 13);
this.m_lblSortHint.TabIndex = 6;
this.m_lblSortHint.Text = "To sort entries by a field, click on the corresponding column header in the main " +
"window.";
//
// m_grpColumn
//
this.m_grpColumn.Controls.Add(this.m_cbHide);
this.m_grpColumn.Location = new System.Drawing.Point(12, 394);
this.m_grpColumn.Name = "m_grpColumn";
this.m_grpColumn.Size = new System.Drawing.Size(500, 45);
this.m_grpColumn.TabIndex = 4;
this.m_grpColumn.TabStop = false;
this.m_grpColumn.Text = "<>";
//
// m_cbHide
//
this.m_cbHide.AutoSize = true;
this.m_cbHide.Location = new System.Drawing.Point(10, 19);
this.m_cbHide.Name = "m_cbHide";
this.m_cbHide.Size = new System.Drawing.Size(144, 17);
this.m_cbHide.TabIndex = 0;
this.m_cbHide.Text = "Hide data using asterisks";
this.m_cbHide.UseVisualStyleBackColor = true;
this.m_cbHide.CheckedChanged += new System.EventHandler(this.OnHideCheckedChanged);
//
// ColumnsForm
//
this.AcceptButton = this.m_btnOK;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.m_btnCancel;
this.ClientSize = new System.Drawing.Size(605, 487);
this.Controls.Add(this.m_grpColumn);
this.Controls.Add(this.m_lblSortHint);
this.Controls.Add(this.m_bannerImage);
this.Controls.Add(this.m_lblReorderHint);
this.Controls.Add(this.m_lvColumns);
this.Controls.Add(this.m_lblChoose);
this.Controls.Add(this.m_btnCancel);
this.Controls.Add(this.m_btnOK);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "ColumnsForm";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "<>";
this.Load += new System.EventHandler(this.OnFormLoad);
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.OnFormClosed);
((System.ComponentModel.ISupportInitialize)(this.m_bannerImage)).EndInit();
this.m_grpColumn.ResumeLayout(false);
this.m_grpColumn.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button m_btnOK;
private System.Windows.Forms.Button m_btnCancel;
private System.Windows.Forms.Label m_lblChoose;
private KeePass.UI.CustomListViewEx m_lvColumns;
private System.Windows.Forms.Label m_lblReorderHint;
private System.Windows.Forms.PictureBox m_bannerImage;
private System.Windows.Forms.Label m_lblSortHint;
private System.Windows.Forms.GroupBox m_grpColumn;
private System.Windows.Forms.CheckBox m_cbHide;
}
}
|