@@ -458,9 +458,15 @@ private void RadioButtonSelectCertificateLocation_CheckedChanged(object sender,
458458 checkBoxTimestamp . Checked = true ;
459459 checkBoxTimestamp . Enabled = false ;
460460
461+ // Disable the signtool path text box and browse button
462+ textBoxSignToolPath . Enabled = false ;
463+ buttonBrowseSignTool . Enabled = false ;
464+
465+ // Set the timestamp group box text and label text
461466 groupBoxTimestamp . Text = @"Trusted Signing Endpoint" ;
462467 labelTimeStampServer . Text = @"Endpoint URL:" ;
463468
469+ // Set the tooltip for the timestamp checkbox
464470 toolTip . SetToolTip ( checkBoxTimestamp , "Trusted Signing requires a timestamp. This option is disabled for Trusted Signing." ) ;
465471 }
466472 else
@@ -481,6 +487,11 @@ private void RadioButtonSelectCertificateLocation_CheckedChanged(object sender,
481487 // Enable the timestamp checkbox
482488 checkBoxTimestamp . Enabled = true ;
483489
490+ // Enable the signtool path text box and browse button
491+ textBoxSignToolPath . Enabled = true ;
492+ buttonBrowseSignTool . Enabled = true ;
493+
494+ // Set the timestamp group box text and label text
484495 groupBoxTimestamp . Text = @"Timestamp URL:" ;
485496 labelTimeStampServer . Text = @"Timestamp" ;
486497
@@ -502,7 +513,7 @@ private void RadioButtonSelectCertificateLocation_CheckedChanged(object sender,
502513 }
503514 else if ( radioButtonTrustedSigning . Checked )
504515 {
505- labelCertificateInformation . Text = @"Trusted Signing Certificate - set details in Trusted Signing account" ;
516+ labelCertificateInformation . Text = @"Trusted Signing Certificate - set details in Trusted Signing account located in the Azure Portal " ;
506517 }
507518 else
508519 {
0 commit comments