#7 add simple send dialog
This commit is contained in:
21
ntfysh_client/SendMessageForm.cs
Normal file
21
ntfysh_client/SendMessageForm.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user