private void aboutToolStripMenuItem_Click(object sender, EventArgs e) { Form aboutBox = new About(); // TO DO: Make this stupid thing center. I tried setting the Left and Top // but it wouldn't resize until it had been shown. And of course showing it and them moving // it looked stupid. That is the kind of bug that makes me waste time on little details. // Right now this just shows up wherever. aboutBox.Show(); }
private void oEBibliotekaToolStripMenuItem1_Click(object sender, EventArgs e) { About a = new About(); a.ShowDialog(); }