-
Notifications
You must be signed in to change notification settings - Fork 0
/
WriteMessagesForm.Designer.cs
105 lines (100 loc) · 3.65 KB
/
WriteMessagesForm.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
namespace WinFormsTest3
{
partial class WriteMessagesForm
{
/// <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()
{
userNameLabel = new Label();
messageContentLabel = new Label();
userNameText = new TextBox();
sendButton = new Button();
messageContentText = new RichTextBox();
SuspendLayout();
//
// userNameLabel
//
userNameLabel.AutoSize = true;
userNameLabel.Location = new Point(227, 104);
userNameLabel.Name = "userNameLabel";
userNameLabel.Size = new Size(114, 15);
userNameLabel.TabIndex = 1;
userNameLabel.Text = "Nazwa użytkownika:";
//
// messageContentLabel
//
messageContentLabel.AutoSize = true;
messageContentLabel.Location = new Point(210, 151);
messageContentLabel.Name = "messageContentLabel";
messageContentLabel.Size = new Size(131, 15);
messageContentLabel.TabIndex = 2;
messageContentLabel.Text = "Zawartość wiadomości:";
//
// userNameText
//
userNameText.Location = new Point(344, 101);
userNameText.Name = "userNameText";
userNameText.Size = new Size(199, 23);
userNameText.TabIndex = 3;
//
// sendButton
//
sendButton.Location = new Point(698, 416);
sendButton.Name = "sendButton";
sendButton.Size = new Size(75, 23);
sendButton.TabIndex = 5;
sendButton.Text = "Wyślij";
sendButton.UseVisualStyleBackColor = true;
sendButton.Click += sendButton_Click;
//
// messageContentText
//
messageContentText.Location = new Point(344, 151);
messageContentText.Name = "messageContentText";
messageContentText.Size = new Size(429, 233);
messageContentText.TabIndex = 4;
messageContentText.Text = "";
//
// WriteMessagesForm
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(982, 541);
Controls.Add(messageContentText);
Controls.Add(sendButton);
Controls.Add(userNameText);
Controls.Add(messageContentLabel);
Controls.Add(userNameLabel);
Name = "WriteMessagesForm";
Text = "Write Messages";
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label userNameLabel;
private Label messageContentLabel;
private TextBox userNameText;
private Button sendButton;
private RichTextBox messageContentText;
}
}