예제 #1
0
파일: MainEditor.cs 프로젝트: built/Roark
        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();
        }
예제 #2
0
        private void 도움말HToolStripMenuItem_Click(object sender, EventArgs e)
        {
            About About1 = new About();

            About1.Show();
        }
예제 #3
0
        private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
        {
            About about = new About();

            about.Show();
        }
예제 #4
0
        private void radButton5_Click(object sender, EventArgs e)
        {
            About a = new About();

            a.Show();
        }