예제 #1
0
파일: Form1.cs 프로젝트: hehao1999/CSharp
        private void douglasPeukerToolStripMenuItem_Click(object sender, EventArgs e)
        {
            DP dp = new DP();

            dp.Owner = this;
            dp.Show();
        }
예제 #2
0
 private void douglasPeukerToolStripMenuItem_Click(object sender, EventArgs e)
 {//数据压缩
     try
     {
         DP dp = new DP();
         dp.Owner = this;
         dp.Show();
     }
     catch
     {
         MessageBox.Show("数据抽稀时发现错误,请仔细检查数据");
     }
 }