Exemplo n.º 1
0
        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();
        }
Exemplo n.º 2
0
        private void 도움말HToolStripMenuItem_Click(object sender, EventArgs e)
        {
            About About1 = new About();

            About1.Show();
        }
Exemplo n.º 3
0
        private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
        {
            About about = new About();

            about.Show();
        }
Exemplo n.º 4
0
        private void radButton5_Click(object sender, EventArgs e)
        {
            About a = new About();

            a.Show();
        }