forked from wenjy/HighWayIot
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
211 lines
9.9 KiB
C#
211 lines
9.9 KiB
C#
namespace HighWayIot.Winform.UserControlPages.SysConfigPages
|
|
{
|
|
partial class RoleUpdateForm
|
|
{
|
|
/// <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.label1 = new System.Windows.Forms.Label();
|
|
this.RoleNameTextBox = new System.Windows.Forms.TextBox();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.ConfrimAddButton = new System.Windows.Forms.Button();
|
|
this.panel1 = new System.Windows.Forms.Panel();
|
|
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
|
this.SelectNone = new System.Windows.Forms.Button();
|
|
this.SelectAll = new System.Windows.Forms.Button();
|
|
this.panel2 = new System.Windows.Forms.Panel();
|
|
this.RolesDataGridView = new System.Windows.Forms.DataGridView();
|
|
this.TableName = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.IsUseable = new System.Windows.Forms.DataGridViewCheckBoxColumn();
|
|
this.panel1.SuspendLayout();
|
|
this.groupBox1.SuspendLayout();
|
|
this.panel2.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.RolesDataGridView)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(94, 76);
|
|
this.label1.Name = "label1";
|
|
this.label1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
|
|
this.label1.Size = new System.Drawing.Size(0, 12);
|
|
this.label1.TabIndex = 0;
|
|
//
|
|
// RoleNameTextBox
|
|
//
|
|
this.RoleNameTextBox.Location = new System.Drawing.Point(216, 23);
|
|
this.RoleNameTextBox.Name = "RoleNameTextBox";
|
|
this.RoleNameTextBox.Size = new System.Drawing.Size(136, 21);
|
|
this.RoleNameTextBox.TabIndex = 1;
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(157, 27);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(53, 12);
|
|
this.label2.TabIndex = 2;
|
|
this.label2.Text = "角色名:";
|
|
//
|
|
// ConfrimAddButton
|
|
//
|
|
this.ConfrimAddButton.Location = new System.Drawing.Point(12, 12);
|
|
this.ConfrimAddButton.Name = "ConfrimAddButton";
|
|
this.ConfrimAddButton.Size = new System.Drawing.Size(110, 41);
|
|
this.ConfrimAddButton.TabIndex = 8;
|
|
this.ConfrimAddButton.Text = "确认修改";
|
|
this.ConfrimAddButton.UseVisualStyleBackColor = true;
|
|
this.ConfrimAddButton.Click += new System.EventHandler(this.ConfrimAddButton_Click);
|
|
//
|
|
// panel1
|
|
//
|
|
this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.panel1.Controls.Add(this.ConfrimAddButton);
|
|
this.panel1.Controls.Add(this.label2);
|
|
this.panel1.Controls.Add(this.RoleNameTextBox);
|
|
this.panel1.Controls.Add(this.label1);
|
|
this.panel1.Location = new System.Drawing.Point(0, 0);
|
|
this.panel1.Name = "panel1";
|
|
this.panel1.Size = new System.Drawing.Size(398, 66);
|
|
this.panel1.TabIndex = 9;
|
|
//
|
|
// 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.SelectNone);
|
|
this.groupBox1.Controls.Add(this.SelectAll);
|
|
this.groupBox1.Controls.Add(this.panel2);
|
|
this.groupBox1.Location = new System.Drawing.Point(0, 72);
|
|
this.groupBox1.Name = "groupBox1";
|
|
this.groupBox1.Size = new System.Drawing.Size(398, 593);
|
|
this.groupBox1.TabIndex = 10;
|
|
this.groupBox1.TabStop = false;
|
|
this.groupBox1.Text = "权限设置";
|
|
//
|
|
// SelectNone
|
|
//
|
|
this.SelectNone.Location = new System.Drawing.Point(70, 20);
|
|
this.SelectNone.Name = "SelectNone";
|
|
this.SelectNone.Size = new System.Drawing.Size(52, 23);
|
|
this.SelectNone.TabIndex = 2;
|
|
this.SelectNone.Text = "全不选";
|
|
this.SelectNone.UseVisualStyleBackColor = true;
|
|
this.SelectNone.Click += new System.EventHandler(this.SelectNone_Click);
|
|
//
|
|
// SelectAll
|
|
//
|
|
this.SelectAll.Location = new System.Drawing.Point(12, 20);
|
|
this.SelectAll.Name = "SelectAll";
|
|
this.SelectAll.Size = new System.Drawing.Size(52, 23);
|
|
this.SelectAll.TabIndex = 1;
|
|
this.SelectAll.Text = "全选";
|
|
this.SelectAll.UseVisualStyleBackColor = true;
|
|
this.SelectAll.Click += new System.EventHandler(this.SelectAll_Click);
|
|
//
|
|
// panel2
|
|
//
|
|
this.panel2.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.panel2.Controls.Add(this.RolesDataGridView);
|
|
this.panel2.Location = new System.Drawing.Point(3, 49);
|
|
this.panel2.Name = "panel2";
|
|
this.panel2.Size = new System.Drawing.Size(392, 541);
|
|
this.panel2.TabIndex = 0;
|
|
//
|
|
// RolesDataGridView
|
|
//
|
|
this.RolesDataGridView.AllowUserToAddRows = false;
|
|
this.RolesDataGridView.AllowUserToDeleteRows = false;
|
|
this.RolesDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.RolesDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
this.TableName,
|
|
this.IsUseable});
|
|
this.RolesDataGridView.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.RolesDataGridView.Location = new System.Drawing.Point(0, 0);
|
|
this.RolesDataGridView.MultiSelect = false;
|
|
this.RolesDataGridView.Name = "RolesDataGridView";
|
|
this.RolesDataGridView.RowHeadersVisible = false;
|
|
this.RolesDataGridView.RowTemplate.Height = 23;
|
|
this.RolesDataGridView.Size = new System.Drawing.Size(392, 541);
|
|
this.RolesDataGridView.TabIndex = 0;
|
|
//
|
|
// TableName
|
|
//
|
|
this.TableName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
|
|
this.TableName.DataPropertyName = "TableName";
|
|
this.TableName.HeaderText = "页面名称";
|
|
this.TableName.Name = "TableName";
|
|
this.TableName.ReadOnly = true;
|
|
//
|
|
// IsUseable
|
|
//
|
|
this.IsUseable.DataPropertyName = "IsUseable";
|
|
this.IsUseable.HeaderText = "是否有权限";
|
|
this.IsUseable.Name = "IsUseable";
|
|
this.IsUseable.Resizable = System.Windows.Forms.DataGridViewTriState.True;
|
|
this.IsUseable.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
|
|
this.IsUseable.Width = 90;
|
|
//
|
|
// RoleUpdateForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(398, 665);
|
|
this.Controls.Add(this.groupBox1);
|
|
this.Controls.Add(this.panel1);
|
|
this.Name = "RoleUpdateForm";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "修改角色信息";
|
|
this.panel1.ResumeLayout(false);
|
|
this.panel1.PerformLayout();
|
|
this.groupBox1.ResumeLayout(false);
|
|
this.panel2.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)(this.RolesDataGridView)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.TextBox RoleNameTextBox;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.Button ConfrimAddButton;
|
|
private System.Windows.Forms.Panel panel1;
|
|
private System.Windows.Forms.GroupBox groupBox1;
|
|
private System.Windows.Forms.Button SelectNone;
|
|
private System.Windows.Forms.Button SelectAll;
|
|
private System.Windows.Forms.Panel panel2;
|
|
private System.Windows.Forms.DataGridView RolesDataGridView;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn TableName;
|
|
private System.Windows.Forms.DataGridViewCheckBoxColumn IsUseable;
|
|
}
|
|
} |