public String strOfficePhone {//办公电话属性 get { return textBoxOfficePhone.strPhoneCode; } set { textBoxOfficePhone.strPhoneCode = value; } } [ Category("联系信息"), Description("移动电话") ] public String strMobilePhone {//移动电话属性 get { return textBoxMobilePhone.strPhoneCode; } set { textBoxMobilePhone.strPhoneCode = value; } } [ Category("联系信息"), Description("电子信箱") ] public String strEmail {//电子邮件属性 get { return textBoxEmail.Text; } set { textBoxEmail.Text = value; } } [
|