(object sender, EventArgs e)
| 180 | } |
| 181 | |
| 182 | private void InstallForm_Load(object sender, EventArgs e) { |
| 183 | string version = UpdateChecker.GetFlashVersion(); |
| 184 | |
| 185 | subtitleLabel.Text = string.Format("built from version {0} ({1})", version, "China"); |
| 186 | Text = string.Format("Clean Flash Player {0} Installer", version); |
| 187 | |
| 188 | OpenDisclaimerPanel(); |
| 189 | CheckAgreeBox(); |
| 190 | } |
| 191 | |
| 192 | private void prevButton_Click(object sender, EventArgs e) { |
| 193 | if (disclaimerPanel.Visible || completePanel.Visible || failurePanel.Visible) { |
nothing calls this directly
no test coverage detected