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

Side by Side Diff: experimental/visual_studio_plugin/src/NaClVsx.Package/Installation/ProgressForm.Designer.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 namespace Google.NaClVsx.Installation
2 {
3 partial class ProgressForm
4 {
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
9
10 /// <summary>
11 /// Clean up any resources being used.
12 /// </summary>
13 /// <param name="disposing">true if managed resources should be disposed; ot herwise, false.</param>
14 protected override void Dispose(bool disposing)
15 {
16 if (disposing && (components != null))
17 {
18 components.Dispose();
19 }
20 base.Dispose(disposing);
21 }
22
23 #region Windows Form Designer generated code
24
25 /// <summary>
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
28 /// </summary>
29 private void InitializeComponent()
30 {
31 System.ComponentModel.ComponentResourceManager resources = new System.Comp onentModel.ComponentResourceManager(typeof(ProgressForm));
32 this.progress_ = new System.Windows.Forms.ProgressBar();
33 this.message_ = new System.Windows.Forms.Label();
34 this.cancel_ = new System.Windows.Forms.Button();
35 this.SuspendLayout();
36 //
37 // progress_
38 //
39 this.progress_.Location = new System.Drawing.Point(12, 25);
40 this.progress_.Name = "progress_";
41 this.progress_.Size = new System.Drawing.Size(300, 23);
42 this.progress_.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
43 this.progress_.TabIndex = 0;
44 //
45 // message_
46 //
47 this.message_.AutoSize = true;
48 this.message_.Location = new System.Drawing.Point(12, 9);
49 this.message_.Name = "message_";
50 this.message_.Size = new System.Drawing.Size(35, 13);
51 this.message_.TabIndex = 1;
52 this.message_.Text = "label1";
53 //
54 // cancel_
55 //
56 this.cancel_.Location = new System.Drawing.Point(125, 54);
57 this.cancel_.Name = "cancel_";
58 this.cancel_.Size = new System.Drawing.Size(75, 23);
59 this.cancel_.TabIndex = 2;
60 this.cancel_.Text = "&Cancel";
61 this.cancel_.UseVisualStyleBackColor = true;
62 this.cancel_.Click += new System.EventHandler(this.cancel__Click);
63 //
64 // ProgressForm
65 //
66 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
67 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
68 this.ClientSize = new System.Drawing.Size(324, 83);
69 this.ControlBox = false;
70 this.Controls.Add(this.cancel_);
71 this.Controls.Add(this.message_);
72 this.Controls.Add(this.progress_);
73 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
74 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
75 this.Name = "ProgressForm";
76 this.Text = "Installer";
77 this.TopMost = true;
78 this.ResumeLayout(false);
79 this.PerformLayout();
80
81 }
82
83 #endregion
84
85 private System.Windows.Forms.ProgressBar progress_;
86 private System.Windows.Forms.Label message_;
87 private System.Windows.Forms.Button cancel_;
88 }
89 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698