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 183
|
namespace KeePass.Forms
{
partial class IconPickerForm
{
/// <summary>
/// Erforderliche Designervariable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Verwendete Ressourcen bereinigen.
/// </summary>
/// <param name="disposing">True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False.</param>
protected override void Dispose(bool disposing)
{
if(disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Vom Windows Form-Designer generierter Code
/// <summary>
/// Erforderliche Methode für die Designerunterstützung.
/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
/// </summary>
private void InitializeComponent()
{
this.m_lvIcons = new KeePass.UI.CustomListViewEx();
this.m_btnOK = new System.Windows.Forms.Button();
this.m_lvCustomIcons = new KeePass.UI.CustomListViewEx();
this.m_radioStandard = new System.Windows.Forms.RadioButton();
this.m_radioCustom = new System.Windows.Forms.RadioButton();
this.m_lblSeparator = new System.Windows.Forms.Label();
this.m_btnCustomAdd = new System.Windows.Forms.Button();
this.m_btnCustomRemove = new System.Windows.Forms.Button();
this.m_btnCustomExport = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// m_lvIcons
//
this.m_lvIcons.HideSelection = false;
this.m_lvIcons.Location = new System.Drawing.Point(32, 35);
this.m_lvIcons.MultiSelect = false;
this.m_lvIcons.Name = "m_lvIcons";
this.m_lvIcons.Size = new System.Drawing.Size(462, 197);
this.m_lvIcons.TabIndex = 0;
this.m_lvIcons.UseCompatibleStateImageBehavior = false;
this.m_lvIcons.View = System.Windows.Forms.View.List;
this.m_lvIcons.ItemActivate += new System.EventHandler(this.OnIconsItemActivate);
this.m_lvIcons.ItemSelectionChanged += new System.Windows.Forms.ListViewItemSelectionChangedEventHandler(this.OnIconsItemSelectionChanged);
//
// m_btnOK
//
this.m_btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
this.m_btnOK.Location = new System.Drawing.Point(419, 414);
this.m_btnOK.Name = "m_btnOK";
this.m_btnOK.Size = new System.Drawing.Size(75, 23);
this.m_btnOK.TabIndex = 7;
this.m_btnOK.Text = "&Close";
this.m_btnOK.UseVisualStyleBackColor = true;
this.m_btnOK.Click += new System.EventHandler(this.OnBtnOK);
//
// m_lvCustomIcons
//
this.m_lvCustomIcons.HideSelection = false;
this.m_lvCustomIcons.Location = new System.Drawing.Point(32, 271);
this.m_lvCustomIcons.Name = "m_lvCustomIcons";
this.m_lvCustomIcons.Size = new System.Drawing.Size(381, 121);
this.m_lvCustomIcons.TabIndex = 2;
this.m_lvCustomIcons.UseCompatibleStateImageBehavior = false;
this.m_lvCustomIcons.View = System.Windows.Forms.View.List;
this.m_lvCustomIcons.ItemActivate += new System.EventHandler(this.OnCustomIconsItemActivate);
this.m_lvCustomIcons.ItemSelectionChanged += new System.Windows.Forms.ListViewItemSelectionChangedEventHandler(this.OnCustomIconsItemSelectionChanged);
//
// m_radioStandard
//
this.m_radioStandard.AutoSize = true;
this.m_radioStandard.Location = new System.Drawing.Point(12, 12);
this.m_radioStandard.Name = "m_radioStandard";
this.m_radioStandard.Size = new System.Drawing.Size(114, 17);
this.m_radioStandard.TabIndex = 8;
this.m_radioStandard.TabStop = true;
this.m_radioStandard.Text = "Use standard icon:";
this.m_radioStandard.UseVisualStyleBackColor = true;
this.m_radioStandard.CheckedChanged += new System.EventHandler(this.OnStandardRadioCheckedChanged);
//
// m_radioCustom
//
this.m_radioCustom.AutoSize = true;
this.m_radioCustom.Location = new System.Drawing.Point(12, 248);
this.m_radioCustom.Name = "m_radioCustom";
this.m_radioCustom.Size = new System.Drawing.Size(278, 17);
this.m_radioCustom.TabIndex = 1;
this.m_radioCustom.TabStop = true;
this.m_radioCustom.Text = "Use custom icon (embedded in the current database):";
this.m_radioCustom.UseVisualStyleBackColor = true;
//
// m_lblSeparator
//
this.m_lblSeparator.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.m_lblSeparator.Location = new System.Drawing.Point(-1, 407);
this.m_lblSeparator.Name = "m_lblSeparator";
this.m_lblSeparator.Size = new System.Drawing.Size(507, 2);
this.m_lblSeparator.TabIndex = 6;
//
// m_btnCustomAdd
//
this.m_btnCustomAdd.Location = new System.Drawing.Point(419, 271);
this.m_btnCustomAdd.Name = "m_btnCustomAdd";
this.m_btnCustomAdd.Size = new System.Drawing.Size(75, 23);
this.m_btnCustomAdd.TabIndex = 3;
this.m_btnCustomAdd.Text = "&Add...";
this.m_btnCustomAdd.UseVisualStyleBackColor = true;
this.m_btnCustomAdd.Click += new System.EventHandler(this.OnBtnCustomAdd);
//
// m_btnCustomRemove
//
this.m_btnCustomRemove.Location = new System.Drawing.Point(419, 300);
this.m_btnCustomRemove.Name = "m_btnCustomRemove";
this.m_btnCustomRemove.Size = new System.Drawing.Size(75, 23);
this.m_btnCustomRemove.TabIndex = 4;
this.m_btnCustomRemove.Text = "&Remove";
this.m_btnCustomRemove.UseVisualStyleBackColor = true;
this.m_btnCustomRemove.Click += new System.EventHandler(this.OnBtnCustomRemove);
//
// m_btnCustomExport
//
this.m_btnCustomExport.Location = new System.Drawing.Point(419, 369);
this.m_btnCustomExport.Name = "m_btnCustomExport";
this.m_btnCustomExport.Size = new System.Drawing.Size(75, 23);
this.m_btnCustomExport.TabIndex = 5;
this.m_btnCustomExport.Text = "E&xport...";
this.m_btnCustomExport.UseVisualStyleBackColor = true;
this.m_btnCustomExport.Click += new System.EventHandler(this.OnBtnCustomSave);
//
// IconPickerForm
//
this.AcceptButton = this.m_btnOK;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.m_btnOK;
this.ClientSize = new System.Drawing.Size(506, 449);
this.Controls.Add(this.m_btnCustomExport);
this.Controls.Add(this.m_btnCustomRemove);
this.Controls.Add(this.m_btnCustomAdd);
this.Controls.Add(this.m_lblSeparator);
this.Controls.Add(this.m_radioCustom);
this.Controls.Add(this.m_radioStandard);
this.Controls.Add(this.m_lvCustomIcons);
this.Controls.Add(this.m_btnOK);
this.Controls.Add(this.m_lvIcons);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "IconPickerForm";
this.ShowInTaskbar = false;
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Icon Picker";
this.Load += new System.EventHandler(this.OnFormLoad);
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.OnFormClosed);
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.OnFormClosing);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private KeePass.UI.CustomListViewEx m_lvIcons;
private System.Windows.Forms.Button m_btnOK;
private KeePass.UI.CustomListViewEx m_lvCustomIcons;
private System.Windows.Forms.RadioButton m_radioStandard;
private System.Windows.Forms.RadioButton m_radioCustom;
private System.Windows.Forms.Label m_lblSeparator;
private System.Windows.Forms.Button m_btnCustomAdd;
private System.Windows.Forms.Button m_btnCustomRemove;
private System.Windows.Forms.Button m_btnCustomExport;
}
}
|