morpionReseau/go01/RejoindrePartieReseau_clien...

209 lines
8.8 KiB
C#

namespace go01
{
partial class RejoindrePartieReseau_client
{
/// <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.dgvPart = new System.Windows.Forms.DataGridView();
this.tbIpServ = new System.Windows.Forms.TextBox();
this.lblIpServ = new System.Windows.Forms.Label();
this.tbPlayername = new System.Windows.Forms.TextBox();
this.lblPlayerName = new System.Windows.Forms.Label();
this.tbPort = new System.Windows.Forms.TextBox();
this.lblPort = new System.Windows.Forms.Label();
this.btnJoin = new System.Windows.Forms.Button();
this.uid = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.partName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.playerName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.ip = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.port = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.timeStamp = new System.Windows.Forms.DataGridViewTextBoxColumn();
((System.ComponentModel.ISupportInitialize)(this.dgvPart)).BeginInit();
this.SuspendLayout();
//
// dgvPart
//
this.dgvPart.AllowUserToAddRows = false;
this.dgvPart.AllowUserToDeleteRows = false;
this.dgvPart.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvPart.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.uid,
this.partName,
this.playerName,
this.ip,
this.port,
this.timeStamp});
this.dgvPart.Location = new System.Drawing.Point(12, 12);
this.dgvPart.Name = "dgvPart";
this.dgvPart.ReadOnly = true;
this.dgvPart.RowHeadersVisible = false;
this.dgvPart.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.dgvPart.Size = new System.Drawing.Size(505, 426);
this.dgvPart.TabIndex = 1;
this.dgvPart.Click += new System.EventHandler(this.dgvPart_Click);
//
// tbIpServ
//
this.tbIpServ.Location = new System.Drawing.Point(611, 12);
this.tbIpServ.Name = "tbIpServ";
this.tbIpServ.Size = new System.Drawing.Size(154, 20);
this.tbIpServ.TabIndex = 16;
//
// lblIpServ
//
this.lblIpServ.AutoSize = true;
this.lblIpServ.Location = new System.Drawing.Point(534, 15);
this.lblIpServ.Name = "lblIpServ";
this.lblIpServ.Size = new System.Drawing.Size(60, 13);
this.lblIpServ.TabIndex = 17;
this.lblIpServ.Text = "Ip serveur :";
//
// tbPlayername
//
this.tbPlayername.Location = new System.Drawing.Point(611, 64);
this.tbPlayername.Name = "tbPlayername";
this.tbPlayername.Size = new System.Drawing.Size(154, 20);
this.tbPlayername.TabIndex = 18;
//
// lblPlayerName
//
this.lblPlayerName.AutoSize = true;
this.lblPlayerName.Location = new System.Drawing.Point(534, 67);
this.lblPlayerName.Name = "lblPlayerName";
this.lblPlayerName.Size = new System.Drawing.Size(55, 13);
this.lblPlayerName.TabIndex = 19;
this.lblPlayerName.Text = "Nom joeur";
//
// tbPort
//
this.tbPort.Location = new System.Drawing.Point(611, 38);
this.tbPort.Name = "tbPort";
this.tbPort.Size = new System.Drawing.Size(154, 20);
this.tbPort.TabIndex = 20;
//
// lblPort
//
this.lblPort.AutoSize = true;
this.lblPort.Location = new System.Drawing.Point(534, 41);
this.lblPort.Name = "lblPort";
this.lblPort.Size = new System.Drawing.Size(26, 13);
this.lblPort.TabIndex = 21;
this.lblPort.Text = "Port";
//
// btnJoin
//
this.btnJoin.Location = new System.Drawing.Point(537, 93);
this.btnJoin.Name = "btnJoin";
this.btnJoin.Size = new System.Drawing.Size(228, 23);
this.btnJoin.TabIndex = 22;
this.btnJoin.Text = "Join";
this.btnJoin.UseVisualStyleBackColor = true;
this.btnJoin.Click += new System.EventHandler(this.btnJoin_Click);
//
// uid
//
this.uid.DataPropertyName = "uid";
this.uid.HeaderText = "uid";
this.uid.Name = "uid";
this.uid.ReadOnly = true;
//
// partName
//
this.partName.DataPropertyName = "partName";
this.partName.HeaderText = "Nom partie";
this.partName.Name = "partName";
this.partName.ReadOnly = true;
//
// playerName
//
this.playerName.DataPropertyName = "playerName";
this.playerName.HeaderText = "Nom joeur adverse";
this.playerName.Name = "playerName";
this.playerName.ReadOnly = true;
//
// ip
//
this.ip.DataPropertyName = "ip";
this.ip.HeaderText = "ip";
this.ip.Name = "ip";
this.ip.ReadOnly = true;
//
// port
//
this.port.DataPropertyName = "port";
this.port.HeaderText = "port";
this.port.Name = "port";
this.port.ReadOnly = true;
//
// timeStamp
//
this.timeStamp.DataPropertyName = "timeStamp";
this.timeStamp.HeaderText = "timeStamp";
this.timeStamp.Name = "timeStamp";
this.timeStamp.ReadOnly = true;
this.timeStamp.Visible = false;
//
// RejoindrePartieReseau_client
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(777, 450);
this.Controls.Add(this.btnJoin);
this.Controls.Add(this.tbPort);
this.Controls.Add(this.lblPort);
this.Controls.Add(this.tbPlayername);
this.Controls.Add(this.lblPlayerName);
this.Controls.Add(this.tbIpServ);
this.Controls.Add(this.lblIpServ);
this.Controls.Add(this.dgvPart);
this.Name = "RejoindrePartieReseau_client";
this.Text = "RejoindrePartieReseau_client";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.RejoindrePartieReseau_client_FormClosing);
this.Load += new System.EventHandler(this.RejoindrePartieReseau_client_Load);
((System.ComponentModel.ISupportInitialize)(this.dgvPart)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.DataGridView dgvPart;
private System.Windows.Forms.TextBox tbIpServ;
private System.Windows.Forms.Label lblIpServ;
private System.Windows.Forms.TextBox tbPlayername;
private System.Windows.Forms.Label lblPlayerName;
private System.Windows.Forms.TextBox tbPort;
private System.Windows.Forms.Label lblPort;
private System.Windows.Forms.Button btnJoin;
private System.Windows.Forms.DataGridViewTextBoxColumn uid;
private System.Windows.Forms.DataGridViewTextBoxColumn partName;
private System.Windows.Forms.DataGridViewTextBoxColumn playerName;
private System.Windows.Forms.DataGridViewTextBoxColumn ip;
private System.Windows.Forms.DataGridViewTextBoxColumn port;
private System.Windows.Forms.DataGridViewTextBoxColumn timeStamp;
}
}