private void identifyDepressionToolStripMenuItem_Click(object sender, EventArgs e) { OpenFileDialog open_dlg = new OpenFileDialog(); if (open_dlg.ShowDialog() == DialogResult.OK) { DllExportMethod.IdentifyDepressions(open_dlg.FileName); MessageBox.Show("Identify Done!"); } }
private void button2_Click(object sender, EventArgs e) { DllExportMethod.FillDepressions(FileNameTextBox.Text); MessageBox.Show("Fill Done!"); }
private void button2_Click(object sender, EventArgs e) { DllExportMethod.FlowDirectionD8(FileNameTextBox.Text, false); MessageBox.Show("Flow Direction Done!"); }
private void button2_Click(object sender, EventArgs e) { DllExportMethod.FlowAccumulation(FileNameTextBox.Text); MessageBox.Show("Accumulate Done!"); }
private void button2_Click(object sender, EventArgs e) { DllExportMethod.IdentifyNestedDepressions(FileNameTextBox.Text); MessageBox.Show("Flow Direction Done!"); }