// // // // // $Revision$ // namespace ICSharpCode.SharpDevelop.Gui { partial class OpenWithDialog { /// /// Designer variable used to keep track of non-visual components. /// private System.ComponentModel.IContainer components = null; /// /// Disposes resources used by the form. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing) { if (components != null) { components.Dispose(); } } base.Dispose(disposing); } /// /// This method is required for Windows Forms designer support. /// Do not change the method contents inside the source code editor. The Forms designer might /// not be able to load this method if it was changed manually. /// private void InitializeComponent() { this.label1 = new System.Windows.Forms.Label(); this.programListBox = new System.Windows.Forms.ListBox(); this.addButton = new System.Windows.Forms.Button(); this.removeButton = new System.Windows.Forms.Button(); this.setAsDefaultButton = new System.Windows.Forms.Button(); this.okButton = new System.Windows.Forms.Button(); this.cancelButton = new System.Windows.Forms.Button(); this.SuspendLayout(); // // label1 // this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.label1.Location = new System.Drawing.Point(12, 9); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(372, 23); this.label1.TabIndex = 0; this.label1.Text = "${res:Gui.ProjectBrowser.OpenWith.ChooseProgram}"; // // programListBox // this.programListBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.programListBox.FormattingEnabled = true; this.programListBox.IntegralHeight = false; this.programListBox.Location = new System.Drawing.Point(12, 35); this.programListBox.Name = "programListBox"; this.programListBox.Size = new System.Drawing.Size(268, 156); this.programListBox.TabIndex = 1; this.programListBox.SelectedIndexChanged += new System.EventHandler(this.ProgramListBoxSelectedIndexChanged); // // addButton // this.addButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.addButton.Location = new System.Drawing.Point(286, 35); this.addButton.Name = "addButton"; this.addButton.Size = new System.Drawing.Size(98, 23); this.addButton.TabIndex = 2; this.addButton.Text = "${res:Global.AddButtonText}..."; this.addButton.UseVisualStyleBackColor = true; this.addButton.Click += new System.EventHandler(this.AddButtonClick); // // removeButton // this.removeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.removeButton.Enabled = false; this.removeButton.Location = new System.Drawing.Point(286, 64); this.removeButton.Name = "removeButton"; this.removeButton.Size = new System.Drawing.Size(98, 23); this.removeButton.TabIndex = 3; this.removeButton.Text = "${res:Global.RemoveButtonText}"; this.removeButton.UseVisualStyleBackColor = true; this.removeButton.Click += new System.EventHandler(this.RemoveButtonClick); // // setAsDefaultButton // this.setAsDefaultButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.setAsDefaultButton.Enabled = false; this.setAsDefaultButton.Location = new System.Drawing.Point(286, 94); this.setAsDefaultButton.Name = "setAsDefaultButton"; this.setAsDefaultButton.Size = new System.Drawing.Size(98, 23); this.setAsDefaultButton.TabIndex = 4; this.setAsDefaultButton.Text = "${res:Gui.ProjectBrowser.OpenWith.SetAsDefault}"; this.setAsDefaultButton.UseVisualStyleBackColor = true; this.setAsDefaultButton.Click += new System.EventHandler(this.SetAsDefaultButtonClick); // // okButton // this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK; this.okButton.Enabled = false; this.okButton.Location = new System.Drawing.Point(228, 204); this.okButton.Name = "okButton"; this.okButton.Size = new System.Drawing.Size(75, 23); this.okButton.TabIndex = 5; this.okButton.Text = "${res:Global.OKButtonText}"; this.okButton.UseVisualStyleBackColor = true; // // cancelButton // this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.cancelButton.Location = new System.Drawing.Point(309, 204); this.cancelButton.Name = "cancelButton"; this.cancelButton.Size = new System.Drawing.Size(75, 23); this.cancelButton.TabIndex = 6; this.cancelButton.Text = "${res:Global.CancelButtonText}"; this.cancelButton.UseVisualStyleBackColor = true; // // OpenWithDialog // this.AcceptButton = this.okButton; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.CancelButton = this.cancelButton; this.ClientSize = new System.Drawing.Size(396, 239); this.Controls.Add(this.cancelButton); this.Controls.Add(this.okButton); this.Controls.Add(this.setAsDefaultButton); this.Controls.Add(this.removeButton); this.Controls.Add(this.addButton); this.Controls.Add(this.programListBox); this.Controls.Add(this.label1); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.MaximizeBox = false; this.MinimizeBox = false; this.MinimumSize = new System.Drawing.Size(292, 186); this.Name = "OpenWithDialog"; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "${res:Gui.ProjectBrowser.OpenWith.DialogTitle}"; this.ResumeLayout(false); } private System.Windows.Forms.Button cancelButton; private System.Windows.Forms.Button okButton; private System.Windows.Forms.Button setAsDefaultButton; private System.Windows.Forms.Button removeButton; private System.Windows.Forms.Button addButton; private System.Windows.Forms.ListBox programListBox; private System.Windows.Forms.Label label1; } }