AEMManager.AemInstanceDialog.cmdCustomIconPath_Click C# (CSharp) Method

cmdCustomIconPath_Click() private method

private cmdCustomIconPath_Click ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void cmdCustomIconPath_Click(object sender, EventArgs e)
        {
            openFileDialogIcon.InitialDirectory = GetDirectory(txtCustomIconPath.Text);
              if (openFileDialogIcon.ShowDialog(this) == DialogResult.OK) {
            txtCustomIconPath.Text = openFileDialogIcon.FileName;
              }
        }