Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(975)

Side by Side Diff: experimental/visual_studio_plugin/src/NaClVsx.Package/Installation/ProgressForm.cs

Issue 10928195: First round of dead file removal (Closed) Base URL: https://github.com/samclegg/nativeclient-sdk.git@master
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 using System;
2 using System.Collections.Generic;
3 using System.ComponentModel;
4 using System.Data;
5 using System.Drawing;
6 using System.Linq;
7 using System.Text;
8 using System.Windows.Forms;
9
10 namespace Google.NaClVsx.Installation
11 {
12 public partial class ProgressForm : Form
13 {
14 public ProgressForm()
15 {
16 InitializeComponent();
17 }
18
19 public string Message {
20 get { return message_.Text; }
21 set { message_.Text = value; }
22 }
23
24 public void Cancel() {
25 if (Cancelled != null) {
26 Cancelled(this, null);
27 }
28 this.DialogResult = DialogResult.Cancel;
29 Close();
30 }
31
32 public event EventHandler Cancelled;
33
34 private void cancel__Click(object sender, EventArgs e)
35 {
36 Cancel();
37 }
38
39
40 }
41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698