1 namespace KeePassRPC.Forms
2 {
3     partial class AuthForm
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>
Dispose(bool disposing)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>
InitializeComponent()29         private void InitializeComponent()
30         {
31             this.buttonDeny = new System.Windows.Forms.Button();
32             this.richTextBoxClientID = new System.Windows.Forms.RichTextBox();
33             this.richTextBoxPassword = new System.Windows.Forms.RichTextBox();
34             this.richTextBoxSecurityLevel = new System.Windows.Forms.RichTextBox();
35             this.richTextBoxConfirmInstruction = new System.Windows.Forms.RichTextBox();
36             this.label1 = new System.Windows.Forms.Label();
37             this.panel1 = new System.Windows.Forms.Panel();
38             this.panel1.SuspendLayout();
39             this.SuspendLayout();
40             //
41             // buttonDeny
42             //
43             this.buttonDeny.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
44             this.buttonDeny.Location = new System.Drawing.Point(12, 386);
45             this.buttonDeny.Name = "buttonDeny";
46             this.buttonDeny.Size = new System.Drawing.Size(280, 23);
47             this.buttonDeny.TabIndex = 0;
48             this.buttonDeny.Text = "Deny this request";
49             this.buttonDeny.UseVisualStyleBackColor = true;
50             this.buttonDeny.Click += new System.EventHandler(this.buttonDeny_Click);
51             //
52             // richTextBoxClientID
53             //
54             this.richTextBoxClientID.BorderStyle = System.Windows.Forms.BorderStyle.None;
55             this.richTextBoxClientID.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
56             this.richTextBoxClientID.Location = new System.Drawing.Point(12, 12);
57             this.richTextBoxClientID.Name = "richTextBoxClientID";
58             this.richTextBoxClientID.ReadOnly = true;
59             this.richTextBoxClientID.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
60             this.richTextBoxClientID.Size = new System.Drawing.Size(556, 138);
61             this.richTextBoxClientID.TabIndex = 2;
62             this.richTextBoxClientID.Text = "This is a test";
63             //
64             // richTextBoxPassword
65             //
66             this.richTextBoxPassword.BorderStyle = System.Windows.Forms.BorderStyle.None;
67             this.richTextBoxPassword.DetectUrls = false;
68             this.richTextBoxPassword.Font = new System.Drawing.Font("Arial", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
69             this.richTextBoxPassword.ForeColor = System.Drawing.Color.Red;
70             this.richTextBoxPassword.Location = new System.Drawing.Point(400, 13);
71             this.richTextBoxPassword.Name = "richTextBoxPassword";
72             this.richTextBoxPassword.ReadOnly = true;
73             this.richTextBoxPassword.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.None;
74             this.richTextBoxPassword.Size = new System.Drawing.Size(151, 31);
75             this.richTextBoxPassword.TabIndex = 3;
76             this.richTextBoxPassword.Text = "222222222";
77             //
78             // richTextBoxSecurityLevel
79             //
80             this.richTextBoxSecurityLevel.BackColor = System.Drawing.SystemColors.Control;
81             this.richTextBoxSecurityLevel.BorderStyle = System.Windows.Forms.BorderStyle.None;
82             this.richTextBoxSecurityLevel.Cursor = System.Windows.Forms.Cursors.Default;
83             this.richTextBoxSecurityLevel.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
84             this.richTextBoxSecurityLevel.Location = new System.Drawing.Point(12, 242);
85             this.richTextBoxSecurityLevel.Name = "richTextBoxSecurityLevel";
86             this.richTextBoxSecurityLevel.ReadOnly = true;
87             this.richTextBoxSecurityLevel.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.None;
88             this.richTextBoxSecurityLevel.Size = new System.Drawing.Size(556, 138);
89             this.richTextBoxSecurityLevel.TabIndex = 4;
90             this.richTextBoxSecurityLevel.Text = "";
91             //
92             // richTextBoxConfirmInstruction
93             //
94             this.richTextBoxConfirmInstruction.BackColor = System.Drawing.SystemColors.Control;
95             this.richTextBoxConfirmInstruction.BorderStyle = System.Windows.Forms.BorderStyle.None;
96             this.richTextBoxConfirmInstruction.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
97             this.richTextBoxConfirmInstruction.Location = new System.Drawing.Point(15, 13);
98             this.richTextBoxConfirmInstruction.Name = "richTextBoxConfirmInstruction";
99             this.richTextBoxConfirmInstruction.ReadOnly = true;
100             this.richTextBoxConfirmInstruction.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.None;
101             this.richTextBoxConfirmInstruction.Size = new System.Drawing.Size(379, 58);
102             this.richTextBoxConfirmInstruction.TabIndex = 5;
103             this.richTextBoxConfirmInstruction.Text = "To authorise the client to access your passwords please enter this password into the " +
104     "box it has presented to you.";
105             //
106             // label1
107             //
108             this.label1.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
109             this.label1.Location = new System.Drawing.Point(364, 386);
110             this.label1.Name = "label1";
111             this.label1.Size = new System.Drawing.Size(204, 29);
112             this.label1.TabIndex = 6;
113             this.label1.Text = "This dialog will automatically close when the connection is authorised or denied";
114             //
115             // panel1
116             //
117             this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
118             this.panel1.Controls.Add(this.richTextBoxConfirmInstruction);
119             this.panel1.Controls.Add(this.richTextBoxPassword);
120             this.panel1.ForeColor = System.Drawing.Color.Red;
121             this.panel1.Location = new System.Drawing.Point(12, 156);
122             this.panel1.Name = "panel1";
123             this.panel1.Size = new System.Drawing.Size(556, 80);
124             this.panel1.TabIndex = 8;
125             //
126             // AuthForm
127             //
128             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
129             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
130             this.ClientSize = new System.Drawing.Size(580, 427);
131             this.ControlBox = false;
132             this.Controls.Add(this.panel1);
133             this.Controls.Add(this.label1);
134             this.Controls.Add(this.richTextBoxSecurityLevel);
135             this.Controls.Add(this.richTextBoxClientID);
136             this.Controls.Add(this.buttonDeny);
137             this.Name = "AuthForm";
138             this.Text = "Authorise a new connection";
139             this.Load += new System.EventHandler(this.AuthForm_Load);
140             this.panel1.ResumeLayout(false);
141             this.ResumeLayout(false);
142 
143         }
144 
145         #endregion
146 
147         private System.Windows.Forms.Button buttonDeny;
148         private System.Windows.Forms.RichTextBox richTextBoxClientID;
149         private System.Windows.Forms.RichTextBox richTextBoxPassword;
150         private System.Windows.Forms.RichTextBox richTextBoxSecurityLevel;
151         private System.Windows.Forms.RichTextBox richTextBoxConfirmInstruction;
152         private System.Windows.Forms.Label label1;
153         private System.Windows.Forms.Panel panel1;
154     }
155 }