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
|
using System.ComponentModel;
using System.Windows.Forms;
namespace KeePassRPC.Forms
{
partial class KeeGroupUserControl
{
/// <summary>
/// Required designer variable.
/// </summary>
private 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 Component 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.l_status = new System.Windows.Forms.Label();
this.buttonMakeHome = new System.Windows.Forms.Button();
this.l_homeExplanation = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.comboBoxLocation = new System.Windows.Forms.ComboBox();
this.SuspendLayout();
//
// l_status
//
this.l_status.AutoSize = true;
this.l_status.Location = new System.Drawing.Point(12, 44);
this.l_status.Name = "l_status";
this.l_status.Size = new System.Drawing.Size(76, 13);
this.l_status.TabIndex = 0;
this.l_status.Text = "Visibility Status";
//
// buttonMakeHome
//
this.buttonMakeHome.AutoSize = true;
this.buttonMakeHome.Location = new System.Drawing.Point(15, 78);
this.buttonMakeHome.Name = "buttonMakeHome";
this.buttonMakeHome.Size = new System.Drawing.Size(151, 23);
this.buttonMakeHome.TabIndex = 1;
this.buttonMakeHome.Text = "Set as Kee Home group";
this.buttonMakeHome.UseVisualStyleBackColor = true;
this.buttonMakeHome.Click += new System.EventHandler(this.buttonMakeHome_Click);
//
// l_homeExplanation
//
this.l_homeExplanation.AutoSize = true;
this.l_homeExplanation.Location = new System.Drawing.Point(12, 107);
this.l_homeExplanation.Name = "l_homeExplanation";
this.l_homeExplanation.Size = new System.Drawing.Size(120, 13);
this.l_homeExplanation.TabIndex = 2;
this.l_homeExplanation.Text = "home group explanation";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(16, 8);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(164, 13);
this.label1.TabIndex = 3;
this.label1.Text = "When KeePass is in this location:";
//
// comboBoxLocation
//
this.comboBoxLocation.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBoxLocation.FormattingEnabled = true;
this.comboBoxLocation.Location = new System.Drawing.Point(186, 5);
this.comboBoxLocation.Name = "comboBoxLocation";
this.comboBoxLocation.Size = new System.Drawing.Size(143, 21);
this.comboBoxLocation.TabIndex = 4;
this.comboBoxLocation.SelectedIndexChanged += new System.EventHandler(this.comboBoxLocation_SelectedIndexChanged);
//
// KeeGroupUserControl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.comboBoxLocation);
this.Controls.Add(this.label1);
this.Controls.Add(this.l_homeExplanation);
this.Controls.Add(this.buttonMakeHome);
this.Controls.Add(this.l_status);
this.Name = "KeeGroupUserControl";
this.Size = new System.Drawing.Size(332, 150);
this.Load += new System.EventHandler(this.KeeGroupUserControl_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private Label l_status;
private Button buttonMakeHome;
private Label l_homeExplanation;
private Label label1;
private ComboBox comboBoxLocation;
}
}
|