-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathStripProperties.cs
120 lines (114 loc) · 3.49 KB
/
StripProperties.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
namespace SpiffCode
{
/// <summary>
/// Summary description for StripProperties.
/// </summary>
public class StripProperties : System.Windows.Forms.Form
{
private System.Windows.Forms.PropertyGrid prgStrip;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Button btnOK;
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.Container components = null;
public StripProperties(Strip stp)
{
//
// Required for Windows Form Designer support
//
InitializeComponent();
prgStrip.SelectedObject = stp;
}
/// <summary>
/// Clean up any resources being used.
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if(components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.prgStrip = new System.Windows.Forms.PropertyGrid();
this.panel1 = new System.Windows.Forms.Panel();
this.btnCancel = new System.Windows.Forms.Button();
this.btnOK = new System.Windows.Forms.Button();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// prgStrip
//
this.prgStrip.CommandsVisibleIfAvailable = true;
this.prgStrip.Dock = System.Windows.Forms.DockStyle.Fill;
this.prgStrip.HelpVisible = false;
this.prgStrip.LargeButtons = false;
this.prgStrip.LineColor = System.Drawing.SystemColors.ScrollBar;
this.prgStrip.Name = "prgStrip";
this.prgStrip.Size = new System.Drawing.Size(292, 294);
this.prgStrip.TabIndex = 0;
this.prgStrip.Text = "Strip Properties";
this.prgStrip.ViewBackColor = System.Drawing.SystemColors.Window;
this.prgStrip.ViewForeColor = System.Drawing.SystemColors.WindowText;
//
// panel1
//
this.panel1.Controls.AddRange(new System.Windows.Forms.Control[] {
this.btnCancel,
this.btnOK});
this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
this.panel1.Location = new System.Drawing.Point(0, 294);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(292, 40);
this.panel1.TabIndex = 1;
//
// btnCancel
//
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.Location = new System.Drawing.Point(169, 8);
this.btnCancel.Name = "btnCancel";
this.btnCancel.TabIndex = 1;
this.btnCancel.Text = "Cancel";
//
// btnOK
//
this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
this.btnOK.Location = new System.Drawing.Point(49, 8);
this.btnOK.Name = "btnOK";
this.btnOK.TabIndex = 0;
this.btnOK.Text = "OK";
//
// StripProperties
//
this.AcceptButton = this.btnOK;
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.CancelButton = this.btnCancel;
this.ClientSize = new System.Drawing.Size(292, 334);
this.Controls.AddRange(new System.Windows.Forms.Control[] {
this.prgStrip,
this.panel1});
this.Name = "StripProperties";
this.Text = "Strip Properties";
this.panel1.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
}
}