mirror of https://github.com/quasar/Quasar.git
291 lines
16 KiB
C#
291 lines
16 KiB
C#
namespace xServer.Forms
|
|
{
|
|
partial class FrmPasswordRecovery
|
|
{
|
|
/// <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.components = new System.ComponentModel.Container();
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmPasswordRecovery));
|
|
this.contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
|
|
this.saveToFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.saveAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.saveSelectedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.copyToClipboardToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.copyAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.copySelectedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
|
|
this.clearToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.clearAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.clearSelectedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.refreshToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
|
this.groupBox2 = new System.Windows.Forms.GroupBox();
|
|
this.lblInfo = new System.Windows.Forms.Label();
|
|
this.txtFormat = new System.Windows.Forms.TextBox();
|
|
this.lstPasswords = new xServer.Controls.AeroListView();
|
|
this.hIdentification = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.hURL = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.hUser = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.hPass = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.contextMenuStrip.SuspendLayout();
|
|
this.groupBox1.SuspendLayout();
|
|
this.groupBox2.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// contextMenuStrip
|
|
//
|
|
this.contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.saveToFileToolStripMenuItem,
|
|
this.copyToClipboardToolStripMenuItem,
|
|
this.toolStripSeparator1,
|
|
this.clearToolStripMenuItem,
|
|
this.refreshToolStripMenuItem});
|
|
this.contextMenuStrip.Name = "menuMain";
|
|
this.contextMenuStrip.Size = new System.Drawing.Size(172, 120);
|
|
//
|
|
// saveToFileToolStripMenuItem
|
|
//
|
|
this.saveToFileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.saveAllToolStripMenuItem,
|
|
this.saveSelectedToolStripMenuItem});
|
|
this.saveToFileToolStripMenuItem.Image = global::xServer.Properties.Resources.save;
|
|
this.saveToFileToolStripMenuItem.Name = "saveToFileToolStripMenuItem";
|
|
this.saveToFileToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
|
|
this.saveToFileToolStripMenuItem.Text = "Save to File";
|
|
//
|
|
// saveAllToolStripMenuItem
|
|
//
|
|
this.saveAllToolStripMenuItem.Name = "saveAllToolStripMenuItem";
|
|
this.saveAllToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
|
this.saveAllToolStripMenuItem.Text = "All";
|
|
this.saveAllToolStripMenuItem.Click += new System.EventHandler(this.saveAllToolStripMenuItem_Click);
|
|
//
|
|
// saveSelectedToolStripMenuItem
|
|
//
|
|
this.saveSelectedToolStripMenuItem.Name = "saveSelectedToolStripMenuItem";
|
|
this.saveSelectedToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
|
this.saveSelectedToolStripMenuItem.Text = "Selected";
|
|
this.saveSelectedToolStripMenuItem.Click += new System.EventHandler(this.saveSelectedToolStripMenuItem_Click);
|
|
//
|
|
// copyToClipboardToolStripMenuItem
|
|
//
|
|
this.copyToClipboardToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.copyAllToolStripMenuItem,
|
|
this.copySelectedToolStripMenuItem});
|
|
this.copyToClipboardToolStripMenuItem.Image = global::xServer.Properties.Resources.copy;
|
|
this.copyToClipboardToolStripMenuItem.Name = "copyToClipboardToolStripMenuItem";
|
|
this.copyToClipboardToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
|
|
this.copyToClipboardToolStripMenuItem.Text = "Copy to Clipboard";
|
|
//
|
|
// copyAllToolStripMenuItem
|
|
//
|
|
this.copyAllToolStripMenuItem.Name = "copyAllToolStripMenuItem";
|
|
this.copyAllToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
|
this.copyAllToolStripMenuItem.Text = "All";
|
|
this.copyAllToolStripMenuItem.Click += new System.EventHandler(this.copyAllToolStripMenuItem_Click);
|
|
//
|
|
// copySelectedToolStripMenuItem
|
|
//
|
|
this.copySelectedToolStripMenuItem.Name = "copySelectedToolStripMenuItem";
|
|
this.copySelectedToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
|
this.copySelectedToolStripMenuItem.Text = "Selected";
|
|
this.copySelectedToolStripMenuItem.Click += new System.EventHandler(this.copySelectedToolStripMenuItem_Click);
|
|
//
|
|
// toolStripSeparator1
|
|
//
|
|
this.toolStripSeparator1.Name = "toolStripSeparator1";
|
|
this.toolStripSeparator1.Size = new System.Drawing.Size(168, 6);
|
|
//
|
|
// clearToolStripMenuItem
|
|
//
|
|
this.clearToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.clearAllToolStripMenuItem,
|
|
this.clearSelectedToolStripMenuItem});
|
|
this.clearToolStripMenuItem.Image = global::xServer.Properties.Resources.delete;
|
|
this.clearToolStripMenuItem.Name = "clearToolStripMenuItem";
|
|
this.clearToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
|
|
this.clearToolStripMenuItem.Text = "Clear";
|
|
//
|
|
// clearAllToolStripMenuItem
|
|
//
|
|
this.clearAllToolStripMenuItem.Name = "clearAllToolStripMenuItem";
|
|
this.clearAllToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
|
this.clearAllToolStripMenuItem.Text = "All";
|
|
this.clearAllToolStripMenuItem.Click += new System.EventHandler(this.clearAllToolStripMenuItem_Click);
|
|
//
|
|
// clearSelectedToolStripMenuItem
|
|
//
|
|
this.clearSelectedToolStripMenuItem.Name = "clearSelectedToolStripMenuItem";
|
|
this.clearSelectedToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
|
this.clearSelectedToolStripMenuItem.Text = "Selected";
|
|
this.clearSelectedToolStripMenuItem.Click += new System.EventHandler(this.clearSelectedToolStripMenuItem_Click);
|
|
//
|
|
// refreshToolStripMenuItem
|
|
//
|
|
this.refreshToolStripMenuItem.Image = global::xServer.Properties.Resources.refresh;
|
|
this.refreshToolStripMenuItem.Name = "refreshToolStripMenuItem";
|
|
this.refreshToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
|
|
this.refreshToolStripMenuItem.Text = "Refresh";
|
|
this.refreshToolStripMenuItem.Click += new System.EventHandler(this.refreshToolStripMenuItem_Click);
|
|
//
|
|
// groupBox1
|
|
//
|
|
this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.groupBox1.Controls.Add(this.lstPasswords);
|
|
this.groupBox1.Location = new System.Drawing.Point(12, 12);
|
|
this.groupBox1.Name = "groupBox1";
|
|
this.groupBox1.Size = new System.Drawing.Size(549, 325);
|
|
this.groupBox1.TabIndex = 1;
|
|
this.groupBox1.TabStop = false;
|
|
this.groupBox1.Text = "Recovered Accounts";
|
|
//
|
|
// groupBox2
|
|
//
|
|
this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.groupBox2.Controls.Add(this.lblInfo);
|
|
this.groupBox2.Controls.Add(this.txtFormat);
|
|
this.groupBox2.Location = new System.Drawing.Point(12, 343);
|
|
this.groupBox2.Name = "groupBox2";
|
|
this.groupBox2.Size = new System.Drawing.Size(549, 90);
|
|
this.groupBox2.TabIndex = 2;
|
|
this.groupBox2.TabStop = false;
|
|
this.groupBox2.Text = "Custom Saving/Copying Format";
|
|
//
|
|
// lblInfo
|
|
//
|
|
this.lblInfo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.lblInfo.Location = new System.Drawing.Point(35, 50);
|
|
this.lblInfo.Name = "lblInfo";
|
|
this.lblInfo.Size = new System.Drawing.Size(467, 26);
|
|
this.lblInfo.TabIndex = 1;
|
|
this.lblInfo.Text = "You can change the way the accounts are saved by adjusting the format in the box " +
|
|
"above.\r\nAvailable variables: APP, URL, USER, PASS\r\n";
|
|
this.lblInfo.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
|
//
|
|
// txtFormat
|
|
//
|
|
this.txtFormat.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.txtFormat.Location = new System.Drawing.Point(6, 19);
|
|
this.txtFormat.Name = "txtFormat";
|
|
this.txtFormat.Size = new System.Drawing.Size(537, 22);
|
|
this.txtFormat.TabIndex = 0;
|
|
this.txtFormat.Text = "APP - URL - USER:PASS";
|
|
this.txtFormat.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
|
//
|
|
// lstPasswords
|
|
//
|
|
this.lstPasswords.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.lstPasswords.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.hIdentification,
|
|
this.hURL,
|
|
this.hUser,
|
|
this.hPass});
|
|
this.lstPasswords.ContextMenuStrip = this.contextMenuStrip;
|
|
this.lstPasswords.FullRowSelect = true;
|
|
this.lstPasswords.HideSelection = false;
|
|
this.lstPasswords.Location = new System.Drawing.Point(6, 19);
|
|
this.lstPasswords.Name = "lstPasswords";
|
|
this.lstPasswords.Size = new System.Drawing.Size(537, 300);
|
|
this.lstPasswords.TabIndex = 0;
|
|
this.lstPasswords.UseCompatibleStateImageBehavior = false;
|
|
this.lstPasswords.View = System.Windows.Forms.View.Details;
|
|
//
|
|
// hIdentification
|
|
//
|
|
this.hIdentification.Text = "Identification";
|
|
this.hIdentification.Width = 107;
|
|
//
|
|
// hURL
|
|
//
|
|
this.hURL.Text = "URL / Location";
|
|
this.hURL.Width = 151;
|
|
//
|
|
// hUser
|
|
//
|
|
this.hUser.Text = "Username";
|
|
this.hUser.Width = 142;
|
|
//
|
|
// hPass
|
|
//
|
|
this.hPass.Text = "Password";
|
|
this.hPass.Width = 130;
|
|
//
|
|
// FrmPasswordRecovery
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(573, 445);
|
|
this.Controls.Add(this.groupBox2);
|
|
this.Controls.Add(this.groupBox1);
|
|
this.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.MinimumSize = new System.Drawing.Size(589, 400);
|
|
this.Name = "FrmPasswordRecovery";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "Password Recovery []";
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmPasswordRecovery_FormClosing);
|
|
this.Load += new System.EventHandler(this.FrmPasswordRecovery_Load);
|
|
this.contextMenuStrip.ResumeLayout(false);
|
|
this.groupBox1.ResumeLayout(false);
|
|
this.groupBox2.ResumeLayout(false);
|
|
this.groupBox2.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Controls.AeroListView lstPasswords;
|
|
private System.Windows.Forms.GroupBox groupBox1;
|
|
private System.Windows.Forms.ColumnHeader hIdentification;
|
|
private System.Windows.Forms.ColumnHeader hURL;
|
|
private System.Windows.Forms.ColumnHeader hUser;
|
|
private System.Windows.Forms.ColumnHeader hPass;
|
|
private System.Windows.Forms.ContextMenuStrip contextMenuStrip;
|
|
private System.Windows.Forms.ToolStripMenuItem saveToFileToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem copyToClipboardToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
|
|
private System.Windows.Forms.ToolStripMenuItem clearToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem refreshToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem saveAllToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem saveSelectedToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem copyAllToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem copySelectedToolStripMenuItem;
|
|
private System.Windows.Forms.GroupBox groupBox2;
|
|
private System.Windows.Forms.Label lblInfo;
|
|
private System.Windows.Forms.TextBox txtFormat;
|
|
private System.Windows.Forms.ToolStripMenuItem clearAllToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem clearSelectedToolStripMenuItem;
|
|
}
|
|
} |