frmSet.cs
上传用户:jsz11269
上传日期:2017-01-14
资源大小:450k
文件大小:1k
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Text;
- using System.Windows.Forms;
- namespace myWorkPad
- {
- public partial class frmSet : Form
- {
- public string strName
- {
- get { return tbName.Text; }
- }
- public string strEmail
- {
- get { return tbEmail.Text; }
- }
- public string strUserName
- {
- get { return tbUserName.Text; }
- }
- public string strPass
- {
- get { return tbPass.Text; }
- }
- public string strPOP3
- {
- get { return tbPOP3.Text; }
- }
- public string strSMTP
- {
- get { return tbSMTP.Text; }
- }
- public frmSet()
- {
- InitializeComponent();
- }
- private void tbOK_Click(object sender, EventArgs e)
- {
- }
- }
- }