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

Side by Side Diff: obsolete/Microsoft.VisualStudio.Project/SecurityWarningDialog.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 SecurityWarningDialog
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 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.ComponentModel.ComponentResourceManager(typeof(SecurityWarningDial og));
32 this.warningText = new System.Windows.Forms.Label();
33 this.detailsButton = new System.Windows.Forms.Button();
34 this.optionBox = new System.Windows.Forms.GroupBox();
35 this.loadButton = new System.Windows.Forms.RadioButton() ;
36 this.browseButton = new System.Windows.Forms.RadioButton ();
37 this.loadText = new System.Windows.Forms.Label();
38 this.browseText = new System.Windows.Forms.Label();
39 this.askAgainCheckBox = new System.Windows.Forms.CheckBo x();
40 this.okButton = new System.Windows.Forms.Button();
41 this.cancelButton = new System.Windows.Forms.Button();
42 this.optionBox.SuspendLayout();
43 this.SuspendLayout();
44 //
45 // warningText
46 //
47 resources.ApplyResources(this.warningText, "warningText" );
48 this.warningText.Name = "warningText";
49 //
50 // detailsButton
51 //
52 resources.ApplyResources(this.detailsButton, "detailsBut ton");
53 this.detailsButton.Name = "detailsButton";
54 this.detailsButton.UseVisualStyleBackColor = true;
55 this.detailsButton.Click += new System.EventHandler(this .detailsButton_Click);
56 //
57 // optionBox
58 //
59 this.optionBox.Controls.Add(this.loadButton);
60 this.optionBox.Controls.Add(this.browseButton);
61 this.optionBox.Controls.Add(this.loadText);
62 this.optionBox.Controls.Add(this.browseText);
63 resources.ApplyResources(this.optionBox, "optionBox");
64 this.optionBox.Name = "optionBox";
65 this.optionBox.TabStop = false;
66 //
67 // loadButton
68 //
69 resources.ApplyResources(this.loadButton, "loadButton");
70 this.loadButton.Name = "loadButton";
71 this.loadButton.TabStop = true;
72 this.loadButton.UseVisualStyleBackColor = true;
73 //
74 // browseButton
75 //
76 resources.ApplyResources(this.browseButton, "browseButto n");
77 this.browseButton.Name = "browseButton";
78 this.browseButton.TabStop = true;
79 this.browseButton.UseVisualStyleBackColor = true;
80 //
81 // loadText
82 //
83 resources.ApplyResources(this.loadText, "loadText");
84 this.loadText.Name = "loadText";
85 //
86 // browseText
87 //
88 resources.ApplyResources(this.browseText, "browseText");
89 this.browseText.Name = "browseText";
90 //
91 // askAgainCheckBox
92 //
93 resources.ApplyResources(this.askAgainCheckBox, "askAgai nCheckBox");
94 this.askAgainCheckBox.Name = "askAgainCheckBox";
95 this.askAgainCheckBox.UseVisualStyleBackColor = true;
96 //
97 // okButton
98 //
99 this.okButton.DialogResult = System.Windows.Forms.Dialog Result.OK;
100 resources.ApplyResources(this.okButton, "okButton");
101 this.okButton.Name = "okButton";
102 this.okButton.UseVisualStyleBackColor = true;
103 this.okButton.Click += new System.EventHandler(this.okBu tton_Click);
104 //
105 // cancelButton
106 //
107 this.cancelButton.DialogResult = System.Windows.Forms.Di alogResult.Cancel;
108 resources.ApplyResources(this.cancelButton, "cancelButto n");
109 this.cancelButton.Name = "cancelButton";
110 this.cancelButton.UseVisualStyleBackColor = true;
111 this.cancelButton.Click += new System.EventHandler(this. cancelButton_Click);
112 //
113 // SecurityWarningDialog
114 //
115 this.AcceptButton = this.okButton;
116 resources.ApplyResources(this, "$this");
117 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode. Font;
118 this.CancelButton = this.cancelButton;
119 this.Controls.Add(this.cancelButton);
120 this.Controls.Add(this.okButton);
121 this.Controls.Add(this.askAgainCheckBox);
122 this.Controls.Add(this.optionBox);
123 this.Controls.Add(this.detailsButton);
124 this.Controls.Add(this.warningText);
125 this.FormBorderStyle = System.Windows.Forms.FormBorderSt yle.FixedDialog;
126 this.MaximizeBox = false;
127 this.MinimizeBox = false;
128 this.Name = "SecurityWarningDialog";
129 this.ShowInTaskbar = false;
130 this.optionBox.ResumeLayout(false);
131 this.optionBox.PerformLayout();
132 this.ResumeLayout(false);
133 this.PerformLayout();
134
135 }
136
137 #endregion
138
139 private System.Windows.Forms.Label warningText;
140 private System.Windows.Forms.Button detailsButton;
141 private System.Windows.Forms.GroupBox optionBox;
142 private System.Windows.Forms.Label browseText;
143 private System.Windows.Forms.Label loadText;
144 private System.Windows.Forms.RadioButton browseButton;
145 private System.Windows.Forms.RadioButton loadButton;
146 private System.Windows.Forms.CheckBox askAgainCheckBox;
147 private System.Windows.Forms.Button okButton;
148 private System.Windows.Forms.Button cancelButton;
149 }
150 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698