148 lines
6.6 KiB
C#
148 lines
6.6 KiB
C#
///
|
|
/// Copyright (c) 2017 Sensus Metering Systems
|
|
///
|
|
namespace Users.Forms
|
|
{
|
|
partial class UserManagementDlg
|
|
{
|
|
/// <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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UserManagementDlg));
|
|
this.listViewUsers = new System.Windows.Forms.ListView();
|
|
this.addButton = new System.Windows.Forms.Button();
|
|
this.editButton = new System.Windows.Forms.Button();
|
|
this.deleteButton = new System.Windows.Forms.Button();
|
|
this.closeButton = new System.Windows.Forms.Button();
|
|
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
|
|
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
|
|
this.copyFromRemoteButton = new System.Windows.Forms.Button();
|
|
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
|
|
this.splitContainer1.Panel1.SuspendLayout();
|
|
this.splitContainer1.Panel2.SuspendLayout();
|
|
this.splitContainer1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// listViewUsers
|
|
//
|
|
resources.ApplyResources(this.listViewUsers, "listViewUsers");
|
|
this.listViewUsers.FullRowSelect = true;
|
|
this.listViewUsers.GridLines = true;
|
|
this.listViewUsers.MultiSelect = false;
|
|
this.listViewUsers.Name = "listViewUsers";
|
|
this.listViewUsers.UseCompatibleStateImageBehavior = false;
|
|
this.listViewUsers.View = System.Windows.Forms.View.Details;
|
|
this.listViewUsers.SelectedIndexChanged += new System.EventHandler(this.listViewUsers_SelectedIndexChanged);
|
|
this.listViewUsers.DoubleClick += new System.EventHandler(this.listViewUsers_DoubleClick);
|
|
//
|
|
// addButton
|
|
//
|
|
resources.ApplyResources(this.addButton, "addButton");
|
|
this.addButton.Name = "addButton";
|
|
this.addButton.UseVisualStyleBackColor = true;
|
|
this.addButton.Click += new System.EventHandler(this.addButton_Click);
|
|
//
|
|
// editButton
|
|
//
|
|
resources.ApplyResources(this.editButton, "editButton");
|
|
this.editButton.Name = "editButton";
|
|
this.editButton.UseVisualStyleBackColor = true;
|
|
this.editButton.Click += new System.EventHandler(this.editButton_Click);
|
|
//
|
|
// deleteButton
|
|
//
|
|
resources.ApplyResources(this.deleteButton, "deleteButton");
|
|
this.deleteButton.Name = "deleteButton";
|
|
this.deleteButton.UseVisualStyleBackColor = true;
|
|
this.deleteButton.Click += new System.EventHandler(this.deleteButton_Click);
|
|
//
|
|
// closeButton
|
|
//
|
|
resources.ApplyResources(this.closeButton, "closeButton");
|
|
this.closeButton.Name = "closeButton";
|
|
this.closeButton.UseVisualStyleBackColor = true;
|
|
this.closeButton.Click += new System.EventHandler(this.closeButton_Click);
|
|
//
|
|
// statusStrip1
|
|
//
|
|
resources.ApplyResources(this.statusStrip1, "statusStrip1");
|
|
this.statusStrip1.Name = "statusStrip1";
|
|
//
|
|
// splitContainer1
|
|
//
|
|
resources.ApplyResources(this.splitContainer1, "splitContainer1");
|
|
this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
|
|
this.splitContainer1.Name = "splitContainer1";
|
|
//
|
|
// splitContainer1.Panel1
|
|
//
|
|
this.splitContainer1.Panel1.Controls.Add(this.listViewUsers);
|
|
//
|
|
// splitContainer1.Panel2
|
|
//
|
|
this.splitContainer1.Panel2.Controls.Add(this.copyFromRemoteButton);
|
|
this.splitContainer1.Panel2.Controls.Add(this.addButton);
|
|
this.splitContainer1.Panel2.Controls.Add(this.editButton);
|
|
this.splitContainer1.Panel2.Controls.Add(this.closeButton);
|
|
this.splitContainer1.Panel2.Controls.Add(this.deleteButton);
|
|
//
|
|
// copyFromRemoteButton
|
|
//
|
|
resources.ApplyResources(this.copyFromRemoteButton, "copyFromRemoteButton");
|
|
this.copyFromRemoteButton.Name = "copyFromRemoteButton";
|
|
this.copyFromRemoteButton.UseVisualStyleBackColor = true;
|
|
this.copyFromRemoteButton.Click += new System.EventHandler(this.copyFromRemoteButton_Click);
|
|
//
|
|
// UserManagementDlg
|
|
//
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.splitContainer1);
|
|
this.Controls.Add(this.statusStrip1);
|
|
this.Name = "UserManagementDlg";
|
|
this.Activated += new System.EventHandler(this.EditUsers_Activated);
|
|
this.Load += new System.EventHandler(this.EditUsers_Load);
|
|
this.splitContainer1.Panel1.ResumeLayout(false);
|
|
this.splitContainer1.Panel2.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
|
|
this.splitContainer1.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.ListView listViewUsers;
|
|
private System.Windows.Forms.Button addButton;
|
|
private System.Windows.Forms.Button editButton;
|
|
private System.Windows.Forms.Button deleteButton;
|
|
private System.Windows.Forms.Button closeButton;
|
|
private System.Windows.Forms.StatusStrip statusStrip1;
|
|
private System.Windows.Forms.SplitContainer splitContainer1;
|
|
private System.Windows.Forms.Button copyFromRemoteButton;
|
|
}
|
|
} |