(object sender, RoutedEventArgs e)
| 220 | } |
| 221 | |
| 222 | private void UpdateReleaseNotes_Click(object sender, RoutedEventArgs e) |
| 223 | { |
| 224 | if (_pendingUpdate?.HtmlUrl != null) |
| 225 | { |
| 226 | System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo |
| 227 | { |
| 228 | FileName = _pendingUpdate.HtmlUrl, |
| 229 | UseShellExecute = true |
| 230 | }); |
| 231 | } |
| 232 | } |
| 233 | |
| 234 | private void UpdateSkip_Click(object sender, RoutedEventArgs e) |
| 235 | { |
nothing calls this directly
no outgoing calls
no test coverage detected