frmSet.cs
上传用户:jsz11269
上传日期:2017-01-14
资源大小:450k
文件大小:1k
源码类别:

Email服务器

开发平台:

C#

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Text;
  7. using System.Windows.Forms;
  8. namespace myWorkPad
  9. {
  10.     public partial class frmSet : Form
  11.     {
  12.         public string strName
  13.         {
  14.             get { return tbName.Text; }
  15.         }
  16.         public string strEmail
  17.         {
  18.             get { return tbEmail.Text; }
  19.         }
  20.         public string strUserName
  21.         {
  22.             get { return tbUserName.Text; }
  23.         }
  24.         public string strPass
  25.         {
  26.             get { return tbPass.Text; }
  27.         }
  28.         public string strPOP3
  29.         {
  30.             get { return tbPOP3.Text; }
  31.         }
  32.         public string strSMTP
  33.         {
  34.             get { return tbSMTP.Text; }
  35.         }
  36.         public frmSet()
  37.         {
  38.             InitializeComponent();
  39.         }
  40.         private void tbOK_Click(object sender, EventArgs e)
  41.         {
  42.         }
  43.     }
  44. }