1 namespace KeePassRPC.Forms 2 { 3 partial class KeeMAMOverrideForm 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.textBox1 = new System.Windows.Forms.TextBox(); 32 this.buttonOK = new System.Windows.Forms.Button(); 33 this.buttonCancel = new System.Windows.Forms.Button(); 34 this.label1 = new System.Windows.Forms.Label(); 35 this.radioButton1 = new System.Windows.Forms.RadioButton(); 36 this.radioButton2 = new System.Windows.Forms.RadioButton(); 37 this.radioButton3 = new System.Windows.Forms.RadioButton(); 38 this.label2 = new System.Windows.Forms.Label(); 39 this.SuspendLayout(); 40 // 41 // textBox1 42 // 43 this.textBox1.Location = new System.Drawing.Point(12, 29); 44 this.textBox1.Name = "textBox1"; 45 this.textBox1.Size = new System.Drawing.Size(260, 20); 46 this.textBox1.TabIndex = 1; 47 // 48 // buttonOK 49 // 50 this.buttonOK.DialogResult = System.Windows.Forms.DialogResult.OK; 51 this.buttonOK.Location = new System.Drawing.Point(116, 122); 52 this.buttonOK.Name = "buttonOK"; 53 this.buttonOK.Size = new System.Drawing.Size(75, 23); 54 this.buttonOK.TabIndex = 5; 55 this.buttonOK.Text = "OK"; 56 this.buttonOK.UseVisualStyleBackColor = true; 57 this.buttonOK.Click += new System.EventHandler(this.buttonOK_Click); 58 // 59 // buttonCancel 60 // 61 this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; 62 this.buttonCancel.Location = new System.Drawing.Point(197, 122); 63 this.buttonCancel.Name = "buttonCancel"; 64 this.buttonCancel.Size = new System.Drawing.Size(75, 23); 65 this.buttonCancel.TabIndex = 6; 66 this.buttonCancel.Text = "Cancel"; 67 this.buttonCancel.UseVisualStyleBackColor = true; 68 this.buttonCancel.Click += new System.EventHandler(this.button2_Click); 69 // 70 // label1 71 // 72 this.label1.AutoSize = true; 73 this.label1.Location = new System.Drawing.Point(12, 13); 74 this.label1.Name = "label1"; 75 this.label1.Size = new System.Drawing.Size(137, 13); 76 this.label1.TabIndex = 0; 77 this.label1.Text = "Domain: (e.g. google.com)"; 78 // 79 // radioButton1 80 // 81 this.radioButton1.AutoSize = true; 82 this.radioButton1.Location = new System.Drawing.Point(15, 85); 83 this.radioButton1.Name = "radioButton1"; 84 this.radioButton1.Size = new System.Drawing.Size(61, 17); 85 this.radioButton1.TabIndex = 7; 86 this.radioButton1.TabStop = true; 87 this.radioButton1.Text = "Domain"; 88 this.radioButton1.UseVisualStyleBackColor = true; 89 // 90 // radioButton2 91 // 92 this.radioButton2.AutoSize = true; 93 this.radioButton2.Location = new System.Drawing.Point(82, 85); 94 this.radioButton2.Name = "radioButton2"; 95 this.radioButton2.Size = new System.Drawing.Size(73, 17); 96 this.radioButton2.TabIndex = 8; 97 this.radioButton2.TabStop = true; 98 this.radioButton2.Text = "Hostname"; 99 this.radioButton2.UseVisualStyleBackColor = true; 100 // 101 // radioButton3 102 // 103 this.radioButton3.AutoSize = true; 104 this.radioButton3.Location = new System.Drawing.Point(161, 85); 105 this.radioButton3.Name = "radioButton3"; 106 this.radioButton3.Size = new System.Drawing.Size(52, 17); 107 this.radioButton3.TabIndex = 9; 108 this.radioButton3.TabStop = true; 109 this.radioButton3.Text = "Exact"; 110 this.radioButton3.UseVisualStyleBackColor = true; 111 // 112 // label2 113 // 114 this.label2.AutoSize = true; 115 this.label2.Location = new System.Drawing.Point(12, 69); 116 this.label2.Name = "label2"; 117 this.label2.Size = new System.Drawing.Size(155, 13); 118 this.label2.TabIndex = 10; 119 this.label2.Text = "Minimum URL match accuracy:"; 120 // 121 // KeeMAMOverrideForm 122 // 123 this.AcceptButton = this.buttonOK; 124 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 125 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 126 this.CancelButton = this.buttonCancel; 127 this.ClientSize = new System.Drawing.Size(284, 157); 128 this.Controls.Add(this.label2); 129 this.Controls.Add(this.radioButton3); 130 this.Controls.Add(this.radioButton2); 131 this.Controls.Add(this.radioButton1); 132 this.Controls.Add(this.label1); 133 this.Controls.Add(this.buttonCancel); 134 this.Controls.Add(this.buttonOK); 135 this.Controls.Add(this.textBox1); 136 this.MaximizeBox = false; 137 this.MinimizeBox = false; 138 this.Name = "KeeMAMOverrideForm"; 139 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; 140 this.Text = "KeeMAMOverrideForm"; 141 this.ResumeLayout(false); 142 this.PerformLayout(); 143 144 } 145 146 #endregion 147 148 private System.Windows.Forms.TextBox textBox1; 149 private System.Windows.Forms.Button buttonOK; 150 private System.Windows.Forms.Button buttonCancel; 151 private System.Windows.Forms.Label label1; 152 private System.Windows.Forms.RadioButton radioButton1; 153 private System.Windows.Forms.RadioButton radioButton2; 154 private System.Windows.Forms.RadioButton radioButton3; 155 private System.Windows.Forms.Label label2; 156 } 157 }