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

Side by Side Diff: obsolete/Microsoft.VisualStudio.Project/DontShowAgainDialog.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 Microsoft.VisualStudio.Project
2 {
3 partial class DontShowAgainDialog
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; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
15 {
16 try
17 {
18 if(disposing)
19 {
20 if(components != null)
21 {
22 components.Dispose();
23 }
24
25 if(this.bitmap != null)
26 {
27 this.bitmap.Dispose();
28 }
29 }
30 }
31 finally
32 {
33 base.Dispose(disposing);
34 }
35 }
36
37 #region Windows Form Designer generated code
38
39 /// <summary>
40 /// Required method for Designer support - do not modify
41 /// the contents of this method with the code editor.
42 /// </summary>
43 private void InitializeComponent()
44 {
45 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DontShowAgainDialog ));
46 this.messageText = new System.Windows.Forms.Label();
47 this.dontShowAgain = new System.Windows.Forms.CheckBox() ;
48 this.okButton = new System.Windows.Forms.Button();
49 this.cancelButton = new System.Windows.Forms.Button();
50 this.SuspendLayout();
51 //
52 // messageText
53 //
54 this.messageText.AutoEllipsis = true;
55 resources.ApplyResources(this.messageText, "messageText" );
56 this.messageText.Name = "messageText";
57 //
58 // dontShowAgain
59 //
60 resources.ApplyResources(this.dontShowAgain, "dontShowAg ain");
61 this.dontShowAgain.Name = "dontShowAgain";
62 this.dontShowAgain.UseVisualStyleBackColor = true;
63 //
64 // okButton
65 //
66 resources.ApplyResources(this.okButton, "okButton");
67 this.okButton.Name = "okButton";
68 this.okButton.UseVisualStyleBackColor = true;
69 this.okButton.Click += new System.EventHandler(this.OnOK ButtonClicked);
70 //
71 // cancelButton
72 //
73 this.cancelButton.DialogResult = System.Windows.Forms.Di alogResult.Cancel;
74 resources.ApplyResources(this.cancelButton, "cancelButto n");
75 this.cancelButton.Name = "cancelButton";
76 this.cancelButton.UseVisualStyleBackColor = true;
77 this.cancelButton.Click += new System.EventHandler(this. OnCancelButtonClicked);
78 //
79 // DontShowAgainDialog
80 //
81 this.AcceptButton = this.okButton;
82 this.CancelButton = this.cancelButton;
83 resources.ApplyResources(this, "$this");
84 this.Controls.Add(this.cancelButton);
85 this.Controls.Add(this.okButton);
86 this.Controls.Add(this.dontShowAgain);
87 this.Controls.Add(this.messageText);
88 this.FormBorderStyle = System.Windows.Forms.FormBorderSt yle.FixedDialog;
89 this.HelpButton = true;
90 this.MaximizeBox = false;
91 this.MinimizeBox = false;
92 this.Name = "DontShowAgainDialog";
93 this.HelpButtonClicked += new System.ComponentModel.Canc elEventHandler(this.OnHelpButtonClicked);
94 this.Paint += new System.Windows.Forms.PaintEventHandler (this.OnPaint);
95 this.HelpRequested += new System.Windows.Forms.HelpEvent Handler(this.OnHelpRequested);
96 this.ResumeLayout(false);
97 this.PerformLayout();
98
99 }
100
101 #endregion
102
103 private System.Windows.Forms.Label messageText;
104 private System.Windows.Forms.CheckBox dontShowAgain;
105 private System.Windows.Forms.Button okButton;
106 private System.Windows.Forms.Button cancelButton;
107 }
108 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698