172 lines
6.2 KiB
C#
172 lines
6.2 KiB
C#
namespace WinApp
|
|
{
|
|
partial class frmAssignmentSelect
|
|
{
|
|
/// <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();
|
|
this.roleInfoListBindingSource = new System.Windows.Forms.BindingSource(this.components);
|
|
this.panel1 = new System.Windows.Forms.Panel();
|
|
this.btnRoles = new System.Windows.Forms.Button();
|
|
this.btnOK = new System.Windows.Forms.Button();
|
|
this.btnCancel = new System.Windows.Forms.Button();
|
|
this.tvFolder = new System.Windows.Forms.TreeView();
|
|
this.panel2 = new System.Windows.Forms.Panel();
|
|
this.cmbRoles = new System.Windows.Forms.ComboBox();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
((System.ComponentModel.ISupportInitialize)(this.roleInfoListBindingSource)).BeginInit();
|
|
this.panel1.SuspendLayout();
|
|
this.panel2.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// roleInfoListBindingSource
|
|
//
|
|
this.roleInfoListBindingSource.DataSource = typeof(VEPROMS.CSLA.Library.RoleInfo);
|
|
//
|
|
// panel1
|
|
//
|
|
this.panel1.AutoScroll = true;
|
|
this.panel1.Controls.Add(this.btnRoles);
|
|
this.panel1.Controls.Add(this.btnOK);
|
|
this.panel1.Controls.Add(this.btnCancel);
|
|
this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
|
|
this.panel1.Location = new System.Drawing.Point(0, 478);
|
|
this.panel1.Name = "panel1";
|
|
this.panel1.Size = new System.Drawing.Size(557, 29);
|
|
this.panel1.TabIndex = 2;
|
|
//
|
|
// btnRoles
|
|
//
|
|
this.btnRoles.Dock = System.Windows.Forms.DockStyle.Left;
|
|
this.btnRoles.Location = new System.Drawing.Point(0, 0);
|
|
this.btnRoles.Name = "btnRoles";
|
|
this.btnRoles.Size = new System.Drawing.Size(75, 29);
|
|
this.btnRoles.TabIndex = 2;
|
|
this.btnRoles.Text = "Roles";
|
|
this.btnRoles.UseVisualStyleBackColor = true;
|
|
this.btnRoles.Click += new System.EventHandler(this.btnRoles_Click);
|
|
//
|
|
// btnOK
|
|
//
|
|
this.btnOK.Dock = System.Windows.Forms.DockStyle.Right;
|
|
this.btnOK.Location = new System.Drawing.Point(407, 0);
|
|
this.btnOK.Name = "btnOK";
|
|
this.btnOK.Size = new System.Drawing.Size(75, 29);
|
|
this.btnOK.TabIndex = 1;
|
|
this.btnOK.Text = "OK";
|
|
this.btnOK.UseVisualStyleBackColor = true;
|
|
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
|
|
//
|
|
// btnCancel
|
|
//
|
|
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.btnCancel.Dock = System.Windows.Forms.DockStyle.Right;
|
|
this.btnCancel.Location = new System.Drawing.Point(482, 0);
|
|
this.btnCancel.Name = "btnCancel";
|
|
this.btnCancel.Size = new System.Drawing.Size(75, 29);
|
|
this.btnCancel.TabIndex = 0;
|
|
this.btnCancel.Text = "Cancel";
|
|
this.btnCancel.UseVisualStyleBackColor = true;
|
|
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
|
|
//
|
|
// tvFolder
|
|
//
|
|
this.tvFolder.CheckBoxes = true;
|
|
this.tvFolder.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.tvFolder.Location = new System.Drawing.Point(0, 25);
|
|
this.tvFolder.Name = "tvFolder";
|
|
this.tvFolder.Size = new System.Drawing.Size(557, 453);
|
|
this.tvFolder.TabIndex = 3;
|
|
this.tvFolder.BeforeCheck += new System.Windows.Forms.TreeViewCancelEventHandler(this.tvFolder_BeforeCheck);
|
|
//
|
|
// panel2
|
|
//
|
|
this.panel2.Controls.Add(this.cmbRoles);
|
|
this.panel2.Controls.Add(this.label1);
|
|
this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
|
|
this.panel2.Location = new System.Drawing.Point(0, 0);
|
|
this.panel2.Name = "panel2";
|
|
this.panel2.Size = new System.Drawing.Size(557, 25);
|
|
this.panel2.TabIndex = 6;
|
|
//
|
|
// cmbRoles
|
|
//
|
|
this.cmbRoles.DataSource = this.roleInfoListBindingSource;
|
|
this.cmbRoles.DisplayMember = "Name";
|
|
this.cmbRoles.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.cmbRoles.FormattingEnabled = true;
|
|
this.cmbRoles.Location = new System.Drawing.Point(41, 0);
|
|
this.cmbRoles.Name = "cmbRoles";
|
|
this.cmbRoles.Size = new System.Drawing.Size(516, 24);
|
|
this.cmbRoles.TabIndex = 6;
|
|
this.cmbRoles.ValueMember = "Rid";
|
|
this.cmbRoles.SelectedValueChanged += new System.EventHandler(this.cmbRoles_SelectedValueChanged);
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Dock = System.Windows.Forms.DockStyle.Left;
|
|
this.label1.Location = new System.Drawing.Point(0, 0);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(41, 17);
|
|
this.label1.TabIndex = 0;
|
|
this.label1.Text = "Role:";
|
|
//
|
|
// frmAssignmentSelect
|
|
//
|
|
this.AcceptButton = this.btnOK;
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.CancelButton = this.btnCancel;
|
|
this.ClientSize = new System.Drawing.Size(557, 507);
|
|
this.Controls.Add(this.tvFolder);
|
|
this.Controls.Add(this.panel2);
|
|
this.Controls.Add(this.panel1);
|
|
this.Name = "frmAssignmentSelect";
|
|
this.Text = "Assignment Selection";
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.BeforeFormClosing);
|
|
((System.ComponentModel.ISupportInitialize)(this.roleInfoListBindingSource)).EndInit();
|
|
this.panel1.ResumeLayout(false);
|
|
this.panel2.ResumeLayout(false);
|
|
this.panel2.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.BindingSource roleInfoListBindingSource;
|
|
private System.Windows.Forms.Panel panel1;
|
|
private System.Windows.Forms.Button btnRoles;
|
|
private System.Windows.Forms.Button btnOK;
|
|
private System.Windows.Forms.Button btnCancel;
|
|
private System.Windows.Forms.TreeView tvFolder;
|
|
private System.Windows.Forms.Panel panel2;
|
|
private System.Windows.Forms.ComboBox cmbRoles;
|
|
private System.Windows.Forms.Label label1;
|
|
}
|
|
} |