using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;

namespace JapiTest
{
	/// <summary>
	/// ChildJobList ̊Tv̐łB
	/// hWuꗗ̌ʂ̃_CAO\܂
	/// </summary>
	public class ChildJobList : System.Windows.Forms.Form
	{
		private System.Windows.Forms.Label label1;
		private System.Windows.Forms.TextBox tbResultChildListJobNo;
		private System.Windows.Forms.Label label2;
		private System.Windows.Forms.ListBox lbChidJobList;
		private System.Windows.Forms.TextBox tbResultChildListGetNumber;
		private System.Windows.Forms.Label label3;
		/// <summary>
		/// KvȃfUCiϐłB
		/// </summary>
		private System.ComponentModel.Container components = null;

		public ChildJobList()
		{
			//
			// Windows tH[ fUCi T|[gɕKvłB
			//
			InitializeComponent();

			//
			// TODO: InitializeComponent ĂяǒɁARXgN^ R[hǉĂB
			//
		}

		/// <summary>
		/// ChildJobList ̊Tv̐łB
		/// hWuꗗ̌ʂ̃_CAO\܂
		/// </summary>
		public ChildJobList(int JobNo , int GetNumber , int[] JobNoList)
		{
			//
			// Windows tH[ fUCi T|[gɕKvłB
			//
			InitializeComponent();

			//
			// TODO: InitializeComponent ĂяǒɁARXgN^ R[hǉĂB
			//

			tbResultChildListJobNo.Text = JobNo.ToString();
			tbResultChildListGetNumber.Text = GetNumber.ToString();

			if(JobNoList != null) 
			{
				foreach(int i in JobNoList)
				{
					lbChidJobList.Items.Add(i.ToString());
				}
			}

		}


		/// <summary>
		/// gpĂ郊\[XɌ㏈s܂B
		/// </summary>
		protected override void Dispose( bool disposing )
		{
			if( disposing )
			{
				if(components != null)
				{
					components.Dispose();
				}
			}
			base.Dispose( disposing );
		}

		#region Windows Form Designer generated code
		/// <summary>
		/// fUCi T|[gɕKvȃ\bhłB̃\bh̓e
		/// R[h GfB^ŕύXȂłB
		/// </summary>
		private void InitializeComponent()
		{
			this.label1 = new System.Windows.Forms.Label();
			this.tbResultChildListJobNo = new System.Windows.Forms.TextBox();
			this.tbResultChildListGetNumber = new System.Windows.Forms.TextBox();
			this.label2 = new System.Windows.Forms.Label();
			this.lbChidJobList = new System.Windows.Forms.ListBox();
			this.label3 = new System.Windows.Forms.Label();
			this.SuspendLayout();
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(24, 24);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(80, 23);
			this.label1.TabIndex = 0;
			this.label1.Text = "eWuԍ";
			// 
			// tbResultChildListJobNo
			// 
			this.tbResultChildListJobNo.Location = new System.Drawing.Point(120, 26);
			this.tbResultChildListJobNo.Name = "tbResultChildListJobNo";
			this.tbResultChildListJobNo.Size = new System.Drawing.Size(104, 19);
			this.tbResultChildListJobNo.TabIndex = 1;
			this.tbResultChildListJobNo.Text = "";
			// 
			// tbResultChildListGetNumber
			// 
			this.tbResultChildListGetNumber.Location = new System.Drawing.Point(120, 58);
			this.tbResultChildListGetNumber.Name = "tbResultChildListGetNumber";
			this.tbResultChildListGetNumber.Size = new System.Drawing.Size(104, 19);
			this.tbResultChildListGetNumber.TabIndex = 2;
			this.tbResultChildListGetNumber.Text = "";
			// 
			// label2
			// 
			this.label2.Location = new System.Drawing.Point(24, 56);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(64, 23);
			this.label2.TabIndex = 3;
			this.label2.Text = "擾";
			// 
			// lbChidJobList
			// 
			this.lbChidJobList.ItemHeight = 12;
			this.lbChidJobList.Location = new System.Drawing.Point(32, 104);
			this.lbChidJobList.Name = "lbChidJobList";
			this.lbChidJobList.Size = new System.Drawing.Size(192, 88);
			this.lbChidJobList.TabIndex = 4;
			// 
			// label3
			// 
			this.label3.Location = new System.Drawing.Point(24, 88);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(80, 16);
			this.label3.TabIndex = 5;
			this.label3.Text = "Wuԍꗗ";
			// 
			// ChildJobList
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 12);
			this.ClientSize = new System.Drawing.Size(256, 221);
			this.Controls.AddRange(new System.Windows.Forms.Control[] {
																		  this.label3,
																		  this.lbChidJobList,
																		  this.label2,
																		  this.tbResultChildListGetNumber,
																		  this.tbResultChildListJobNo,
																		  this.label1});
			this.Name = "ChildJobList";
			this.Text = "hWuꗗ";
			this.Load += new System.EventHandler(this.ChildJobList_Load);
			this.ResumeLayout(false);

		}
		#endregion

		private void ChildJobList_Load(object sender, System.EventArgs e)
		{
		
		}

	}
}
