~ubuntu-branches/ubuntu/trusty/keepass2/trusty-proposed

« back to all changes in this revision

Viewing changes to KeePass/Forms/UpdateCheckForm.Designer.cs

  • Committer: Package Import Robot
  • Author(s): Julian Taylor
  • Date: 2011-12-30 15:45:59 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20111230154559-3en1b9v90hswvs1w
Tags: 2.18+dfsg-1
* New upstream release
  - refresh patches
  - drop upstream applied patches:
    explicitly-PUT-for-webdav-writes.patch
    prefer-4.0-framework-if-available.patch
* add patch to improve autotype when dealing with multiple keyboard layouts
  - Thanks to amiryal for the patch
* disable initial autoupdate popup via patch
* update years in debian/copyright

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
namespace KeePass.Forms
 
2
{
 
3
        partial class UpdateCheckForm
 
4
        {
 
5
                /// <summary>
 
6
                /// Required designer variable.
 
7
                /// </summary>
 
8
                private System.ComponentModel.IContainer components = null;
 
9
 
 
10
                /// <summary>
 
11
                /// Clean up any resources being used.
 
12
                /// </summary>
 
13
                /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
 
14
                protected override void Dispose(bool disposing)
 
15
                {
 
16
                        if(disposing && (components != null))
 
17
                        {
 
18
                                components.Dispose();
 
19
                        }
 
20
                        base.Dispose(disposing);
 
21
                }
 
22
 
 
23
                #region Windows Form Designer generated code
 
24
 
 
25
                /// <summary>
 
26
                /// Required method for Designer support - do not modify
 
27
                /// the contents of this method with the code editor.
 
28
                /// </summary>
 
29
                private void InitializeComponent()
 
30
                {
 
31
                        this.m_btnClose = new System.Windows.Forms.Button();
 
32
                        this.m_bannerImage = new System.Windows.Forms.PictureBox();
 
33
                        this.m_lvInfo = new KeePass.UI.CustomListViewEx();
 
34
                        this.m_linkWeb = new System.Windows.Forms.LinkLabel();
 
35
                        this.m_linkPlugins = new System.Windows.Forms.LinkLabel();
 
36
                        ((System.ComponentModel.ISupportInitialize)(this.m_bannerImage)).BeginInit();
 
37
                        this.SuspendLayout();
 
38
                        // 
 
39
                        // m_btnClose
 
40
                        // 
 
41
                        this.m_btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
 
42
                        this.m_btnClose.Location = new System.Drawing.Point(509, 310);
 
43
                        this.m_btnClose.Name = "m_btnClose";
 
44
                        this.m_btnClose.Size = new System.Drawing.Size(75, 23);
 
45
                        this.m_btnClose.TabIndex = 0;
 
46
                        this.m_btnClose.Text = "&Close";
 
47
                        this.m_btnClose.UseVisualStyleBackColor = true;
 
48
                        // 
 
49
                        // m_bannerImage
 
50
                        // 
 
51
                        this.m_bannerImage.Dock = System.Windows.Forms.DockStyle.Top;
 
52
                        this.m_bannerImage.Location = new System.Drawing.Point(0, 0);
 
53
                        this.m_bannerImage.Name = "m_bannerImage";
 
54
                        this.m_bannerImage.Size = new System.Drawing.Size(596, 60);
 
55
                        this.m_bannerImage.TabIndex = 1;
 
56
                        this.m_bannerImage.TabStop = false;
 
57
                        // 
 
58
                        // m_lvInfo
 
59
                        // 
 
60
                        this.m_lvInfo.FullRowSelect = true;
 
61
                        this.m_lvInfo.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
 
62
                        this.m_lvInfo.Location = new System.Drawing.Point(12, 71);
 
63
                        this.m_lvInfo.MultiSelect = false;
 
64
                        this.m_lvInfo.Name = "m_lvInfo";
 
65
                        this.m_lvInfo.ShowItemToolTips = true;
 
66
                        this.m_lvInfo.Size = new System.Drawing.Size(572, 233);
 
67
                        this.m_lvInfo.TabIndex = 1;
 
68
                        this.m_lvInfo.UseCompatibleStateImageBehavior = false;
 
69
                        this.m_lvInfo.View = System.Windows.Forms.View.Details;
 
70
                        this.m_lvInfo.ItemActivate += new System.EventHandler(this.OnInfoItemActivate);
 
71
                        // 
 
72
                        // m_linkWeb
 
73
                        // 
 
74
                        this.m_linkWeb.AutoSize = true;
 
75
                        this.m_linkWeb.Location = new System.Drawing.Point(9, 315);
 
76
                        this.m_linkWeb.Name = "m_linkWeb";
 
77
                        this.m_linkWeb.Size = new System.Drawing.Size(91, 13);
 
78
                        this.m_linkWeb.TabIndex = 2;
 
79
                        this.m_linkWeb.TabStop = true;
 
80
                        this.m_linkWeb.Text = "KeePass Website";
 
81
                        this.m_linkWeb.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.OnLinkWeb);
 
82
                        // 
 
83
                        // m_linkPlugins
 
84
                        // 
 
85
                        this.m_linkPlugins.AutoSize = true;
 
86
                        this.m_linkPlugins.Location = new System.Drawing.Point(106, 315);
 
87
                        this.m_linkPlugins.Name = "m_linkPlugins";
 
88
                        this.m_linkPlugins.Size = new System.Drawing.Size(69, 13);
 
89
                        this.m_linkPlugins.TabIndex = 3;
 
90
                        this.m_linkPlugins.TabStop = true;
 
91
                        this.m_linkPlugins.Text = "Plugins Page";
 
92
                        this.m_linkPlugins.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.OnLinkPlugins);
 
93
                        // 
 
94
                        // UpdateCheckForm
 
95
                        // 
 
96
                        this.AcceptButton = this.m_btnClose;
 
97
                        this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
 
98
                        this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 
99
                        this.CancelButton = this.m_btnClose;
 
100
                        this.ClientSize = new System.Drawing.Size(596, 345);
 
101
                        this.Controls.Add(this.m_linkPlugins);
 
102
                        this.Controls.Add(this.m_linkWeb);
 
103
                        this.Controls.Add(this.m_lvInfo);
 
104
                        this.Controls.Add(this.m_bannerImage);
 
105
                        this.Controls.Add(this.m_btnClose);
 
106
                        this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
 
107
                        this.MaximizeBox = false;
 
108
                        this.MinimizeBox = false;
 
109
                        this.Name = "UpdateCheckForm";
 
110
                        this.ShowInTaskbar = false;
 
111
                        this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
 
112
                        this.Text = "<>";
 
113
                        this.Load += new System.EventHandler(this.OnFormLoad);
 
114
                        this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.OnFormClosed);
 
115
                        ((System.ComponentModel.ISupportInitialize)(this.m_bannerImage)).EndInit();
 
116
                        this.ResumeLayout(false);
 
117
                        this.PerformLayout();
 
118
 
 
119
                }
 
120
 
 
121
                #endregion
 
122
 
 
123
                private System.Windows.Forms.Button m_btnClose;
 
124
                private System.Windows.Forms.PictureBox m_bannerImage;
 
125
                private KeePass.UI.CustomListViewEx m_lvInfo;
 
126
                private System.Windows.Forms.LinkLabel m_linkWeb;
 
127
                private System.Windows.Forms.LinkLabel m_linkPlugins;
 
128
        }
 
129
}
 
 
b'\\ No newline at end of file'