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

btnBrowseVariableFile_Click() private method

Opens a file dialog for -- Variables File Extensions: *.txt, *.vars / All
private btnBrowseVariableFile_Click ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void btnBrowseVariableFile_Click(object sender, EventArgs e)
        {
            if (ofdVariablesFile.ShowDialog() == System.Windows.Forms.DialogResult.OK)
            {
                txtVariableFilePath.Text = ofdVariablesFile.FileName;
                txtVariableFilePath.Focus();
            }
        }