127 lines
5.9 KiB
C#
127 lines
5.9 KiB
C#
namespace Tanshu.Accounts.PointOfSale
|
|
{
|
|
partial class RolesForm
|
|
{
|
|
/// <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.cmbRole = new System.Windows.Forms.ComboBox();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.clbPermissions = new System.Windows.Forms.CheckedListBox();
|
|
this.btnCancel = new System.Windows.Forms.Button();
|
|
this.btnOk = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// cmbRole
|
|
//
|
|
this.cmbRole.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.cmbRole.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|
this.cmbRole.FormattingEnabled = true;
|
|
this.cmbRole.Location = new System.Drawing.Point(109, 15);
|
|
this.cmbRole.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
|
|
this.cmbRole.Name = "cmbRole";
|
|
this.cmbRole.Size = new System.Drawing.Size(499, 24);
|
|
this.cmbRole.TabIndex = 2;
|
|
this.cmbRole.SelectedIndexChanged += new System.EventHandler(this.cmbGroup_SelectedIndexChanged);
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(12, 15);
|
|
this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(78, 17);
|
|
this.label1.TabIndex = 4;
|
|
this.label1.Text = "Role Name";
|
|
//
|
|
// clbPermissions
|
|
//
|
|
this.clbPermissions.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.clbPermissions.FormattingEnabled = true;
|
|
this.clbPermissions.Location = new System.Drawing.Point(16, 48);
|
|
this.clbPermissions.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
|
|
this.clbPermissions.Name = "clbPermissions";
|
|
this.clbPermissions.Size = new System.Drawing.Size(592, 225);
|
|
this.clbPermissions.TabIndex = 21;
|
|
this.clbPermissions.Format += new System.Windows.Forms.ListControlConvertEventHandler(this.clbRoles_Format);
|
|
//
|
|
// btnCancel
|
|
//
|
|
this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.btnCancel.Location = new System.Drawing.Point(509, 290);
|
|
this.btnCancel.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
|
|
this.btnCancel.Name = "btnCancel";
|
|
this.btnCancel.Size = new System.Drawing.Size(100, 92);
|
|
this.btnCancel.TabIndex = 23;
|
|
this.btnCancel.Text = "&Cancel";
|
|
this.btnCancel.UseVisualStyleBackColor = true;
|
|
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
|
|
//
|
|
// btnOk
|
|
//
|
|
this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.btnOk.Location = new System.Drawing.Point(401, 290);
|
|
this.btnOk.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
|
|
this.btnOk.Name = "btnOk";
|
|
this.btnOk.Size = new System.Drawing.Size(100, 92);
|
|
this.btnOk.TabIndex = 22;
|
|
this.btnOk.Text = "&Ok";
|
|
this.btnOk.UseVisualStyleBackColor = true;
|
|
this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
|
|
//
|
|
// RolesForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(625, 398);
|
|
this.Controls.Add(this.btnCancel);
|
|
this.Controls.Add(this.btnOk);
|
|
this.Controls.Add(this.clbPermissions);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.cmbRole);
|
|
this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
|
|
this.MaximizeBox = false;
|
|
this.Name = "RolesForm";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "Assign Permission Groups";
|
|
this.Load += new System.EventHandler(this.RolesForm_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.ComboBox cmbRole;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.CheckedListBox clbPermissions;
|
|
private System.Windows.Forms.Button btnCancel;
|
|
private System.Windows.Forms.Button btnOk;
|
|
}
|
|
} |