SystemTrayMenu/UserInterface/DragDropHintForm.cs

23 lines
559 B
C#
Raw Normal View History

//using System;
//using System.Windows.Forms;
2019-07-05 05:04:14 +12:00
//namespace SystemTrayMenu.UserInterface
//{
// public partial class DragDropHintForm : Form
// {
// public DragDropHintForm(string hintTitle, string hintText,
// string buttonOk)
// {
// InitializeComponent();
// Text = hintTitle;
// labelHint.Text = hintText;
// this.buttonOk.Text = buttonOk;
// }
2019-07-05 05:04:14 +12:00
// private void ButtonOk_Click(object sender, EventArgs e)
// {
// Close();
// }
// }
//}