コード例 #1
0
 // Token: 0x060001C6 RID: 454 RVA: 0x000097CC File Offset: 0x000079CC
 private void SetupFormBase_FormClosed(object sender, FormClosedEventArgs e)
 {
     if (!string.IsNullOrEmpty(SetupFormBase.LaunchECPUrl))
     {
         SetupFormBase.ShowHelpFromUrl(SetupFormBase.LaunchECPUrl);
     }
 }
コード例 #2
0
 // Token: 0x060001C2 RID: 450 RVA: 0x000096C8 File Offset: 0x000078C8
 private void ShowHelp()
 {
     if (this.HelpUrlGenerator == null)
     {
         throw new Exception("HelpUrlGenerator object is not initialized.");
     }
     try
     {
         string helpUrl = this.HelpUrlGenerator.GetHelpUrl(this.GetHelpId(this.activePage.Name));
         SetupFormBase.ShowHelpFromUrl(helpUrl);
     }
     catch (ArgumentException)
     {
         MessageBox.Show(string.Format("{0} is not an value of the HelpId enumeration.", this.activePage.Name));
     }
 }
コード例 #3
0
 // Token: 0x060001E8 RID: 488 RVA: 0x0000B3DE File Offset: 0x000095DE
 private void UnableContactServerTextBox_LinkClicked(object sender, LinkClickedEventArgs e)
 {
     SetupFormBase.ShowHelpFromUrl(e.LinkText);
 }