Files
ntfysh-windows/ntfysh_client/SendMessageForm.cs
2024-12-17 22:54:24 +01:00

22 lines
461 B
C#

using System.Windows.Forms;
namespace ntfysh_client
{
public partial class SendMessageForm : Form
{
public string Message => richTextBox.Text;
public string Title => textBox.Text;
public SendMessageForm()
{
InitializeComponent();
}
private void button2_Click(object sender, System.EventArgs e)
{
DialogResult = DialogResult.OK;
Close();
}
}
}