File tree Expand file tree Collapse file tree 1 file changed +55
-0
lines changed Expand file tree Collapse file tree 1 file changed +55
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments