示例#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("数据抽稀时发现错误,请仔细检查数据");
     }
 }