예제 #1
0
파일: Graph.cs 프로젝트: eylvisaker/tbsuite
        private void horizontalAxisToolStripMenuItem_Click(object sender, EventArgs e)
        {
            frmAxisEditor frm = new frmAxisEditor(this, HorizontalAxis, false);

            frm.ShowDialog();
        }
예제 #2
0
파일: Graph.cs 프로젝트: eylvisaker/tbsuite
        private void verticalAxisToolStripMenuItem_Click(object sender, EventArgs e)
        {
            frmAxisEditor frm = new frmAxisEditor(this, VerticalAxis, true);

            frm.ShowDialog();
        }