~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to external/nrefactory/ICSharpCode.NRefactory.Demo/VBEditDialog.Designer.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
Import upstream version 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team
 
2
// 
 
3
// Permission is hereby granted, free of charge, to any person obtaining a copy of this
 
4
// software and associated documentation files (the "Software"), to deal in the Software
 
5
// without restriction, including without limitation the rights to use, copy, modify, merge,
 
6
// publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons
 
7
// to whom the Software is furnished to do so, subject to the following conditions:
 
8
// 
 
9
// The above copyright notice and this permission notice shall be included in all copies or
 
10
// substantial portions of the Software.
 
11
// 
 
12
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
 
13
// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
 
14
// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
 
15
// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
 
16
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 
17
// DEALINGS IN THE SOFTWARE.
 
18
 
 
19
namespace ICSharpCode.NRefactory.Demo
 
20
{
 
21
        partial class VBEditDialog : System.Windows.Forms.Form
 
22
        {
 
23
                /// <summary>
 
24
                /// Designer variable used to keep track of non-visual components.
 
25
                /// </summary>
 
26
                private System.ComponentModel.IContainer components = null;
 
27
                
 
28
                /// <summary>
 
29
                /// Disposes resources used by the form.
 
30
                /// </summary>
 
31
                /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
 
32
                protected override void Dispose(bool disposing)
 
33
                {
 
34
                        if (disposing) {
 
35
                                if (components != null) {
 
36
                                        components.Dispose();
 
37
                                }
 
38
                        }
 
39
                        base.Dispose(disposing);
 
40
                }
 
41
                
 
42
                /// <summary>
 
43
                /// This method is required for Windows Forms designer support.
 
44
                /// Do not change the method contents inside the source code editor. The Forms designer might
 
45
                /// not be able to load this method if it was changed manually.
 
46
                /// </summary>
 
47
                private void InitializeComponent()
 
48
                {
 
49
                        this.propertyGrid = new System.Windows.Forms.PropertyGrid();
 
50
                        this.panel1 = new System.Windows.Forms.Panel();
 
51
                        this.okButton = new System.Windows.Forms.Button();
 
52
                        this.panel1.SuspendLayout();
 
53
                        this.SuspendLayout();
 
54
                        // 
 
55
                        // propertyGrid
 
56
                        // 
 
57
                        this.propertyGrid.Dock = System.Windows.Forms.DockStyle.Fill;
 
58
                        this.propertyGrid.HelpVisible = false;
 
59
                        this.propertyGrid.Location = new System.Drawing.Point(0, 0);
 
60
                        this.propertyGrid.Name = "propertyGrid";
 
61
                        this.propertyGrid.PropertySort = System.Windows.Forms.PropertySort.Alphabetical;
 
62
                        this.propertyGrid.Size = new System.Drawing.Size(477, 436);
 
63
                        this.propertyGrid.TabIndex = 0;
 
64
                        this.propertyGrid.ToolbarVisible = false;
 
65
                        // 
 
66
                        // panel1
 
67
                        // 
 
68
                        this.panel1.Controls.Add(this.okButton);
 
69
                        this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
 
70
                        this.panel1.Location = new System.Drawing.Point(0, 436);
 
71
                        this.panel1.Name = "panel1";
 
72
                        this.panel1.Size = new System.Drawing.Size(477, 38);
 
73
                        this.panel1.TabIndex = 1;
 
74
                        // 
 
75
                        // okButton
 
76
                        // 
 
77
                        this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
 
78
                        this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
 
79
                        this.okButton.Location = new System.Drawing.Point(390, 6);
 
80
                        this.okButton.Name = "okButton";
 
81
                        this.okButton.Size = new System.Drawing.Size(75, 23);
 
82
                        this.okButton.TabIndex = 0;
 
83
                        this.okButton.Text = "OK";
 
84
                        this.okButton.UseVisualStyleBackColor = true;
 
85
                        // 
 
86
                        // EditDialog
 
87
                        // 
 
88
                        this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
 
89
                        this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 
90
                        this.CancelButton = this.okButton;
 
91
                        this.ClientSize = new System.Drawing.Size(477, 474);
 
92
                        this.Controls.Add(this.propertyGrid);
 
93
                        this.Controls.Add(this.panel1);
 
94
                        this.Name = "EditDialog";
 
95
                        this.Text = "EditDialog";
 
96
                        this.panel1.ResumeLayout(false);
 
97
                        this.ResumeLayout(false);
 
98
                }
 
99
                private System.Windows.Forms.PropertyGrid propertyGrid;
 
100
                private System.Windows.Forms.Button okButton;
 
101
                private System.Windows.Forms.Panel panel1;
 
102
        }
 
103
}