Azavea.NijPredictivePolicing.AcsAlchemistGui.MainForm.btnBrowseBoundaryShpFile_Click C# (CSharp) Method

btnBrowseBoundaryShpFile_Click() private method

Browse for the "Output Filter Boundary" Shapefile
private btnBrowseBoundaryShpFile_Click ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void btnBrowseBoundaryShpFile_Click(object sender, EventArgs e)
        {
            if (ofdExportBoundaryShp.ShowDialog() == System.Windows.Forms.DialogResult.OK)
            {
                txtBoundaryShpFilePath.Text = ofdExportBoundaryShp.FileName;
            }
        }