-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathCustomForm.cs
More file actions
32 lines (29 loc) · 804 Bytes
/
Copy pathCustomForm.cs
File metadata and controls
32 lines (29 loc) · 804 Bytes
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
using System;
using System.ComponentModel;
using System.Windows.Forms;
namespace Smart.FormDesigner.Demo
{
public partial class CustomForm : Form
{
[Browsable(false)]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public string LayoutXml
{
get { return this.designer1.LayoutXML; }
set { this.designer1.LayoutXML = value; }
}
public CustomForm()
{
InitializeComponent();
}
// public 设计时事件可选
public void button1_Click(object sender, EventArgs e)
{
MessageBox.Show("Click1");
}
public void button1_Click2(object sender, EventArgs e)
{
MessageBox.Show("Click2");
}
}
}