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

Side by Side Diff: experimental/visual_studio_plugin/src/MsiHelp/MainForm.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 MsiHelp
2 {
3 partial class MainForm
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 this.worker_ = new System.ComponentModel.BackgroundWorker();
32 this.message_ = new System.Windows.Forms.Label();
33 this.progress_ = new System.Windows.Forms.ProgressBar();
34 this.button1 = new System.Windows.Forms.Button();
35 this.SuspendLayout();
36 //
37 // message_
38 //
39 this.message_.AutoSize = true;
40 this.message_.Location = new System.Drawing.Point(12, 9);
41 this.message_.Name = "message_";
42 this.message_.Size = new System.Drawing.Size(35, 13);
43 this.message_.TabIndex = 0;
44 this.message_.Text = "label1";
45 //
46 // progress_
47 //
48 this.progress_.Location = new System.Drawing.Point(15, 25);
49 this.progress_.Name = "progress_";
50 this.progress_.Size = new System.Drawing.Size(328, 23);
51 this.progress_.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
52 this.progress_.TabIndex = 1;
53 //
54 // button1
55 //
56 this.button1.DialogResult = System.Windows.Forms.DialogResult.Cancel;
57 this.button1.Location = new System.Drawing.Point(140, 54);
58 this.button1.Name = "button1";
59 this.button1.Size = new System.Drawing.Size(75, 23);
60 this.button1.TabIndex = 2;
61 this.button1.Text = "&Cancel";
62 this.button1.UseVisualStyleBackColor = true;
63 this.button1.Click += new System.EventHandler(this.button1_Click);
64 //
65 // MainForm
66 //
67 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
68 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
69 this.CancelButton = this.button1;
70 this.ClientSize = new System.Drawing.Size(355, 82);
71 this.ControlBox = false;
72 this.Controls.Add(this.button1);
73 this.Controls.Add(this.progress_);
74 this.Controls.Add(this.message_);
75 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
76 this.Name = "MainForm";
77 this.ShowIcon = false;
78 this.ShowInTaskbar = false;
79 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
80 this.Text = "Installer";
81 this.TopMost = true;
82 this.ResumeLayout(false);
83 this.PerformLayout();
84
85 }
86
87 #endregion
88
89 private System.ComponentModel.BackgroundWorker worker_;
90 private System.Windows.Forms.Label message_;
91 private System.Windows.Forms.ProgressBar progress_;
92 private System.Windows.Forms.Button button1;
93 }
94 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698