Skip to content

Commit 467ff16

Browse files
author
Matthew Campbell
committed
Copied remotely
git-svn-id: svn://minddrive.numenor.org:12345/lilysharp/trunk@68 cd4f4983-58cb-0310-a95f-a8e966aa8d93
1 parent 1bcd12a commit 467ff16

File tree

1 file changed

+55
-0
lines changed

1 file changed

+55
-0
lines changed

UserControl1.cs

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
using System;
2+
using System.Collections;
3+
using System.ComponentModel;
4+
using System.Drawing;
5+
using System.Data;
6+
using System.Windows.Forms;
7+
8+
namespace lilySharp
9+
{
10+
/// <summary>
11+
/// Summary description for UserControl1.
12+
/// </summary>
13+
public class UserControl1 : System.Windows.Forms.UserControl
14+
{
15+
/// <summary>
16+
/// Required designer variable.
17+
/// </summary>
18+
private System.ComponentModel.Container components = null;
19+
20+
public UserControl1()
21+
{
22+
// This call is required by the Windows.Forms Form Designer.
23+
InitializeComponent();
24+
25+
// TODO: Add any initialization after the InitForm call
26+
27+
}
28+
29+
/// <summary>
30+
/// Clean up any resources being used.
31+
/// </summary>
32+
protected override void Dispose( bool disposing )
33+
{
34+
if( disposing )
35+
{
36+
if(components != null)
37+
{
38+
components.Dispose();
39+
}
40+
}
41+
base.Dispose( disposing );
42+
}
43+
44+
#region Component Designer generated code
45+
/// <summary>
46+
/// Required method for Designer support - do not modify
47+
/// the contents of this method with the code editor.
48+
/// </summary>
49+
private void InitializeComponent()
50+
{
51+
components = new System.ComponentModel.Container();
52+
}
53+
#endregion
54+
}
55+
}

0 commit comments

Comments
 (0)