mirror of
https://github.com/Ylianst/MeshAgent
synced 2025-12-10 21:33:38 +00:00
116 lines
5.3 KiB
C#
116 lines
5.3 KiB
C#
namespace WebRTC_Sample
|
|
{
|
|
partial class SessionForm
|
|
{
|
|
/// <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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SessionForm));
|
|
this.messageTextBox = new System.Windows.Forms.TextBox();
|
|
this.inputTextBox = new System.Windows.Forms.TextBox();
|
|
this.sendButton = new System.Windows.Forms.Button();
|
|
this.panel1 = new System.Windows.Forms.Panel();
|
|
this.panel1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// messageTextBox
|
|
//
|
|
this.messageTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.messageTextBox.Location = new System.Drawing.Point(0, 0);
|
|
this.messageTextBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.messageTextBox.Multiline = true;
|
|
this.messageTextBox.Name = "messageTextBox";
|
|
this.messageTextBox.ReadOnly = true;
|
|
this.messageTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
|
|
this.messageTextBox.Size = new System.Drawing.Size(613, 315);
|
|
this.messageTextBox.TabIndex = 0;
|
|
//
|
|
// inputTextBox
|
|
//
|
|
this.inputTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.inputTextBox.Enabled = false;
|
|
this.inputTextBox.Location = new System.Drawing.Point(0, 0);
|
|
this.inputTextBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.inputTextBox.Name = "inputTextBox";
|
|
this.inputTextBox.Size = new System.Drawing.Size(500, 22);
|
|
this.inputTextBox.TabIndex = 1;
|
|
this.inputTextBox.TextChanged += new System.EventHandler(this.inputText_TextChanged);
|
|
this.inputTextBox.KeyUp += new System.Windows.Forms.KeyEventHandler(this.inputText_KeyUp);
|
|
//
|
|
// sendButton
|
|
//
|
|
this.sendButton.Dock = System.Windows.Forms.DockStyle.Right;
|
|
this.sendButton.Enabled = false;
|
|
this.sendButton.Location = new System.Drawing.Point(500, 0);
|
|
this.sendButton.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.sendButton.Name = "sendButton";
|
|
this.sendButton.Size = new System.Drawing.Size(113, 26);
|
|
this.sendButton.TabIndex = 2;
|
|
this.sendButton.Text = "Send";
|
|
this.sendButton.UseVisualStyleBackColor = true;
|
|
this.sendButton.TextChanged += new System.EventHandler(this.inputText_TextChanged);
|
|
this.sendButton.Click += new System.EventHandler(this.sendButton_Click);
|
|
this.sendButton.KeyUp += new System.Windows.Forms.KeyEventHandler(this.inputText_KeyUp);
|
|
//
|
|
// panel1
|
|
//
|
|
this.panel1.Controls.Add(this.inputTextBox);
|
|
this.panel1.Controls.Add(this.sendButton);
|
|
this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
|
|
this.panel1.Location = new System.Drawing.Point(0, 315);
|
|
this.panel1.Margin = new System.Windows.Forms.Padding(4);
|
|
this.panel1.Name = "panel1";
|
|
this.panel1.Size = new System.Drawing.Size(613, 26);
|
|
this.panel1.TabIndex = 3;
|
|
//
|
|
// SessionForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(613, 341);
|
|
this.Controls.Add(this.messageTextBox);
|
|
this.Controls.Add(this.panel1);
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.Name = "SessionForm";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "WebRTC Session";
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.UserForm_FormClosing);
|
|
this.panel1.ResumeLayout(false);
|
|
this.panel1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TextBox messageTextBox;
|
|
private System.Windows.Forms.TextBox inputTextBox;
|
|
private System.Windows.Forms.Button sendButton;
|
|
private System.Windows.Forms.Panel panel1;
|
|
}
|
|
} |