121 lines
5.3 KiB
C#
121 lines
5.3 KiB
C#
namespace PTWin
|
|
{
|
|
partial class ResourceSelect
|
|
{
|
|
/// <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.ResourceListListBox = new System.Windows.Forms.ListBox();
|
|
this.ResourceListBindingSource = new System.Windows.Forms.BindingSource(this.components);
|
|
this.TableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
|
|
this.OK_Button = new System.Windows.Forms.Button();
|
|
this.Cancel_Button = new System.Windows.Forms.Button();
|
|
((System.ComponentModel.ISupportInitialize)(this.ResourceListBindingSource)).BeginInit();
|
|
this.TableLayoutPanel1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// ResourceListListBox
|
|
//
|
|
this.ResourceListListBox.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.ResourceListListBox.DataSource = this.ResourceListBindingSource;
|
|
this.ResourceListListBox.Location = new System.Drawing.Point(12, 12);
|
|
this.ResourceListListBox.Name = "ResourceListListBox";
|
|
this.ResourceListListBox.Size = new System.Drawing.Size(416, 264);
|
|
this.ResourceListListBox.TabIndex = 4;
|
|
//
|
|
// ResourceListBindingSource
|
|
//
|
|
this.ResourceListBindingSource.DataSource = typeof(ProjectTracker.Library.ResourceList);
|
|
//
|
|
// TableLayoutPanel1
|
|
//
|
|
this.TableLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.TableLayoutPanel1.ColumnCount = 2;
|
|
this.TableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
|
|
this.TableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
|
|
this.TableLayoutPanel1.Controls.Add(this.OK_Button, 0, 0);
|
|
this.TableLayoutPanel1.Controls.Add(this.Cancel_Button, 1, 0);
|
|
this.TableLayoutPanel1.Location = new System.Drawing.Point(285, 282);
|
|
this.TableLayoutPanel1.Name = "TableLayoutPanel1";
|
|
this.TableLayoutPanel1.RowCount = 1;
|
|
this.TableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
|
|
this.TableLayoutPanel1.Size = new System.Drawing.Size(146, 29);
|
|
this.TableLayoutPanel1.TabIndex = 3;
|
|
//
|
|
// OK_Button
|
|
//
|
|
this.OK_Button.Anchor = System.Windows.Forms.AnchorStyles.None;
|
|
this.OK_Button.DialogResult = System.Windows.Forms.DialogResult.OK;
|
|
this.OK_Button.Location = new System.Drawing.Point(3, 3);
|
|
this.OK_Button.Name = "OK_Button";
|
|
this.OK_Button.Size = new System.Drawing.Size(67, 23);
|
|
this.OK_Button.TabIndex = 0;
|
|
this.OK_Button.Text = "OK";
|
|
this.OK_Button.Click += new System.EventHandler(this.OK_Button_Click);
|
|
//
|
|
// Cancel_Button
|
|
//
|
|
this.Cancel_Button.Anchor = System.Windows.Forms.AnchorStyles.None;
|
|
this.Cancel_Button.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.Cancel_Button.Location = new System.Drawing.Point(76, 3);
|
|
this.Cancel_Button.Name = "Cancel_Button";
|
|
this.Cancel_Button.Size = new System.Drawing.Size(67, 23);
|
|
this.Cancel_Button.TabIndex = 1;
|
|
this.Cancel_Button.Text = "Cancel";
|
|
this.Cancel_Button.Click += new System.EventHandler(this.Cancel_Button_Click);
|
|
//
|
|
// ResourceSelect
|
|
//
|
|
this.ClientSize = new System.Drawing.Size(443, 323);
|
|
this.Controls.Add(this.ResourceListListBox);
|
|
this.Controls.Add(this.TableLayoutPanel1);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "ResourceSelect";
|
|
this.ShowInTaskbar = false;
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "ResourceSelect";
|
|
this.Load += new System.EventHandler(this.ResourceSelect_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.ResourceListBindingSource)).EndInit();
|
|
this.TableLayoutPanel1.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
internal System.Windows.Forms.ListBox ResourceListListBox;
|
|
internal System.Windows.Forms.TableLayoutPanel TableLayoutPanel1;
|
|
internal System.Windows.Forms.Button OK_Button;
|
|
internal System.Windows.Forms.Button Cancel_Button;
|
|
internal System.Windows.Forms.BindingSource ResourceListBindingSource;
|
|
|
|
}
|
|
} |