SystemTrayMenu/Controls/DragDropHintForm.cs
2019-11-18 20:11:55 +01:00

23 lines
529 B
C#

using System;
using System.Windows.Forms;
namespace SystemTrayMenu.Controls
{
public partial class DragDropHintForm : Form
{
public DragDropHintForm(string hintTitle, string hintText,
string buttonOk)
{
InitializeComponent();
this.Text = hintTitle;
this.labelHint.Text = hintText;
this.buttonOk.Text = buttonOk;
}
private void ButtonOk_Click(object sender, EventArgs e)
{
this.Close();
}
}
}