Browse Source
git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/2.1@2330 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61shortcuts
7 changed files with 166 additions and 173 deletions
@ -0,0 +1,74 @@
@@ -0,0 +1,74 @@
|
||||
// <file>
|
||||
// <copyright see="prj:///doc/copyright.txt"/>
|
||||
// <license see="prj:///doc/license.txt"/>
|
||||
// <owner name="Daniel Grunwald" email="daniel@danielgrunwald.de"/>
|
||||
// <version>$Revision$</version>
|
||||
// </file>
|
||||
namespace ICSharpCode.FiletypeRegisterer |
||||
{ |
||||
partial class RegisterFiletypesPanel |
||||
{ |
||||
/// <summary>
|
||||
/// Designer variable used to keep track of non-visual components.
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null; |
||||
|
||||
/// <summary>
|
||||
/// Disposes resources used by the control.
|
||||
/// </summary>
|
||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
protected override void Dispose(bool disposing) |
||||
{ |
||||
if (disposing) { |
||||
if (components != null) { |
||||
components.Dispose(); |
||||
} |
||||
} |
||||
base.Dispose(disposing); |
||||
} |
||||
|
||||
/// <summary>
|
||||
/// 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.
|
||||
/// </summary>
|
||||
private void InitializeComponent() |
||||
{ |
||||
this.captionLabel = new System.Windows.Forms.Label(); |
||||
this.fileTypesListBox = new System.Windows.Forms.CheckedListBox(); |
||||
this.SuspendLayout(); |
||||
//
|
||||
// captionLabel
|
||||
//
|
||||
this.captionLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) |
||||
| System.Windows.Forms.AnchorStyles.Right))); |
||||
this.captionLabel.Location = new System.Drawing.Point(3, 0); |
||||
this.captionLabel.Name = "captionLabel"; |
||||
this.captionLabel.Size = new System.Drawing.Size(328, 23); |
||||
this.captionLabel.TabIndex = 0; |
||||
this.captionLabel.Text = "${res:ICSharpCode.SharpDevelop.Gui.Dialogs.OptionPanels.RegisterFiletypesPanel.Ca" + |
||||
"ptionLabel}"; |
||||
//
|
||||
// fileTypesListBox
|
||||
//
|
||||
this.fileTypesListBox.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.fileTypesListBox.IntegralHeight = false; |
||||
this.fileTypesListBox.Location = new System.Drawing.Point(3, 26); |
||||
this.fileTypesListBox.Name = "fileTypesListBox"; |
||||
this.fileTypesListBox.Size = new System.Drawing.Size(328, 299); |
||||
this.fileTypesListBox.TabIndex = 1; |
||||
//
|
||||
// RegisterFiletypesPanel
|
||||
//
|
||||
this.Controls.Add(this.fileTypesListBox); |
||||
this.Controls.Add(this.captionLabel); |
||||
this.Name = "RegisterFiletypesPanel"; |
||||
this.Size = new System.Drawing.Size(334, 328); |
||||
this.ResumeLayout(false); |
||||
} |
||||
private System.Windows.Forms.CheckedListBox fileTypesListBox; |
||||
private System.Windows.Forms.Label captionLabel; |
||||
} |
||||
} |
Loading…
Reference in new issue