I would like to display a reminder when opening and editing a certain form in our project. This would be while in Design Mode in Visual Studio.
I tried putting MessageBox.Show in the constructor, Paint and Load event but Nothing seems to work. Is it even possible?
public Form1()
{
InitializeComponent();
if (this.DesignMode)
{
MessageBox.Show("Remember to fix the xyz control!");
}
if (LicenseManager.UsageMode == LicenseUsageMode.Designtime)
{
MessageBox.Show("Remember to fix the xyz control!");
}
}