Files
ntfysh-windows/ntfysh_client/SendMessageForm.Designer.cs
seba 2c18f91d68 changed var to explicit type
changed title on SendMessageForm
handling error codes
added credentials handling
added icon to context menu item
2024-12-18 20:39:19 +01:00

108 lines
3.8 KiB
C#

namespace ntfysh_client
{
partial class SendMessageForm
{
/// <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()
{
richTextBox = new System.Windows.Forms.RichTextBox();
button2 = new System.Windows.Forms.Button();
textBox = new System.Windows.Forms.TextBox();
label1 = new System.Windows.Forms.Label();
label2 = new System.Windows.Forms.Label();
SuspendLayout();
//
// richTextBox
//
richTextBox.Location = new System.Drawing.Point(12, 71);
richTextBox.Name = "richTextBox";
richTextBox.Size = new System.Drawing.Size(365, 165);
richTextBox.TabIndex = 0;
richTextBox.Text = "";
//
// button2
//
button2.Location = new System.Drawing.Point(302, 242);
button2.Name = "button2";
button2.Size = new System.Drawing.Size(75, 23);
button2.TabIndex = 2;
button2.Text = "Send";
button2.UseVisualStyleBackColor = true;
button2.Click += button2_Click;
//
// textBox
//
textBox.Location = new System.Drawing.Point(12, 27);
textBox.Name = "textBox";
textBox.Size = new System.Drawing.Size(365, 23);
textBox.TabIndex = 3;
//
// label1
//
label1.AutoSize = true;
label1.Location = new System.Drawing.Point(12, 53);
label1.Name = "label1";
label1.Size = new System.Drawing.Size(56, 15);
label1.TabIndex = 4;
label1.Text = "Message:";
//
// label2
//
label2.AutoSize = true;
label2.Location = new System.Drawing.Point(12, 9);
label2.Name = "label2";
label2.Size = new System.Drawing.Size(33, 15);
label2.TabIndex = 5;
label2.Text = "Title:";
//
// SendMessageForm
//
AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
ClientSize = new System.Drawing.Size(389, 277);
Controls.Add(label2);
Controls.Add(label1);
Controls.Add(textBox);
Controls.Add(button2);
Controls.Add(richTextBox);
FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
MaximizeBox = false;
MinimizeBox = false;
Name = "SendMessageForm";
Text = "Send Message";
ResumeLayout(false);
PerformLayout();
}
#endregion
private System.Windows.Forms.RichTextBox richTextBox;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.TextBox textBox;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
}
}