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
|
namespace KeePass.Forms
{
partial class UpdateCheckForm
{
/// <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_btnClose = new System.Windows.Forms.Button();
this.m_bannerImage = new System.Windows.Forms.PictureBox();
this.m_lvInfo = new KeePass.UI.CustomListViewEx();
this.m_linkWeb = new System.Windows.Forms.LinkLabel();
this.m_linkPlugins = new System.Windows.Forms.LinkLabel();
((System.ComponentModel.ISupportInitialize)(this.m_bannerImage)).BeginInit();
this.SuspendLayout();
//
// m_btnClose
//
this.m_btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.m_btnClose.Location = new System.Drawing.Point(509, 310);
this.m_btnClose.Name = "m_btnClose";
this.m_btnClose.Size = new System.Drawing.Size(75, 23);
this.m_btnClose.TabIndex = 0;
this.m_btnClose.Text = "&Close";
this.m_btnClose.UseVisualStyleBackColor = true;
//
// 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(596, 60);
this.m_bannerImage.TabIndex = 1;
this.m_bannerImage.TabStop = false;
//
// m_lvInfo
//
this.m_lvInfo.FullRowSelect = true;
this.m_lvInfo.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
this.m_lvInfo.Location = new System.Drawing.Point(12, 71);
this.m_lvInfo.MultiSelect = false;
this.m_lvInfo.Name = "m_lvInfo";
this.m_lvInfo.ShowItemToolTips = true;
this.m_lvInfo.Size = new System.Drawing.Size(572, 233);
this.m_lvInfo.TabIndex = 1;
this.m_lvInfo.UseCompatibleStateImageBehavior = false;
this.m_lvInfo.View = System.Windows.Forms.View.Details;
this.m_lvInfo.ItemActivate += new System.EventHandler(this.OnInfoItemActivate);
//
// m_linkWeb
//
this.m_linkWeb.AutoSize = true;
this.m_linkWeb.Location = new System.Drawing.Point(9, 315);
this.m_linkWeb.Name = "m_linkWeb";
this.m_linkWeb.Size = new System.Drawing.Size(91, 13);
this.m_linkWeb.TabIndex = 2;
this.m_linkWeb.TabStop = true;
this.m_linkWeb.Text = "KeePass Website";
this.m_linkWeb.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.OnLinkWeb);
//
// m_linkPlugins
//
this.m_linkPlugins.AutoSize = true;
this.m_linkPlugins.Location = new System.Drawing.Point(106, 315);
this.m_linkPlugins.Name = "m_linkPlugins";
this.m_linkPlugins.Size = new System.Drawing.Size(69, 13);
this.m_linkPlugins.TabIndex = 3;
this.m_linkPlugins.TabStop = true;
this.m_linkPlugins.Text = "Plugins Page";
this.m_linkPlugins.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.OnLinkPlugins);
//
// UpdateCheckForm
//
this.AcceptButton = this.m_btnClose;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.m_btnClose;
this.ClientSize = new System.Drawing.Size(596, 345);
this.Controls.Add(this.m_linkPlugins);
this.Controls.Add(this.m_linkWeb);
this.Controls.Add(this.m_lvInfo);
this.Controls.Add(this.m_bannerImage);
this.Controls.Add(this.m_btnClose);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "UpdateCheckForm";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
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.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button m_btnClose;
private System.Windows.Forms.PictureBox m_bannerImage;
private KeePass.UI.CustomListViewEx m_lvInfo;
private System.Windows.Forms.LinkLabel m_linkWeb;
private System.Windows.Forms.LinkLabel m_linkPlugins;
}
}
|