资源简介

c#实现的,连接短信猫池的串口程序,封装了at指令集,能够实现短息发送与接收功能。vs2013测试通过。

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace 短信猫
{
    public partial class Form1 : Form
    {
        public Form2 f2;
        Form3 f3;
        Form4 f4;
        Form5 f5;
        Form6 f6;
        Form7 f7;

        public Form1()
        {
            InitializeComponent();

            //菜单窗体
            f2 = new Form2();
            f2.TopLevel = false;
            f2.FormBorderstyle = FormBorderstyle.None;
            f2.Parent = this.splitContainer1.Panel1;
            f2.Show();
            f2.F2Event += new Form2.F2EventHandler(f2_F2Event);         //绑定Form2事件

            //首页窗体
            f3 = new Form3();
            f3.TopLevel = false;
            f3.FormBorderstyle = FormBorderstyle.None;
            f3.Parent = this.splitContainer1.Panel2;
            f3.Show();
            f3.BringToFront();

            //发送短信窗体
            f4 = new Form4();
            f4.TopLevel = false;
            f4.FormBorderstyle = FormBorderstyle.None;
            f4.Parent = this.splitContainer1.Panel2;
            f4.Show();

            //读取短信窗体
            f5 = new Form5();
            f5.TopLevel = false;
            f5.FormBorderstyle = FormBorderstyle.None;
            f5.Parent = this.splitContainer1.Panel2;
            f5.Show();

            //设备管理窗体
            f6 = new Form6();
            f6.TopLevel = false;
            f6.FormBorderstyle = FormBorderstyle.None;
            f6.Parent = this.splitContainer1.Panel2;
            f6.Show();

            //帮助窗体
            f7 = new Form7();
            f7.TopLevel = false;
            f7.FormBorderstyle = FormBorderstyle.None;
            f7.Parent = this.splitContainer1.Panel2;
            f7.Show();
        }

        private void Form1_Load(object sender EventArgs e)
        {

        }

        void f2_F2Event(object sender GSMEventArgs e)
        {
            switch (e.Message)
            {
                case “首页“:
                    f3.BringToFront();          //首页窗体移至最前
                    break;

                case “发送短信“:
                    f4.BringToFront();          //发送短信窗体移至最前
                    break;

                case “读取短信“:
                    f5.BringToFront();          //读取短信窗体移至最前
                    break;

                case “设备管理“:
                    f6.BringToFront();          //设备管理窗体移至最前
                    break;

                case “帮助“:
                    f7.BringToFront();          //帮助窗体移至最前
                    break;

                default: break;

            }
        }
    }

    //
    public class GSMEventArgs : EventArgs
    {
        /// 
        /// 构造函数
        /// 

        public GSMEventArgs()
        {

        }

        /// 

        /// 构造函数
        /// 

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1053  2010-11-20 21:03  sms moderm\短信猫\app.config

     文件       8522  2010-11-18 17:27  sms moderm\短信猫\AT.ico

     文件       3418  2010-11-23 13:59  sms moderm\短信猫\Form1.cs

     文件       5159  2010-11-20 10:02  sms moderm\短信猫\Form1.Designer.cs

     文件      60543  2010-11-20 10:02  sms moderm\短信猫\Form1.resx

     文件        999  2010-11-20 11:33  sms moderm\短信猫\Form2.cs

     文件       6088  2010-11-19 16:17  sms moderm\短信猫\Form2.Designer.cs

     文件       5814  2010-11-19 16:17  sms moderm\短信猫\Form2.resx

     文件        426  2010-11-20 11:35  sms moderm\短信猫\Form3.cs

     文件       3300  2010-11-20 11:30  sms moderm\短信猫\Form3.Designer.cs

     文件      80947  2010-11-20 11:30  sms moderm\短信猫\Form3.resx

     文件       8919  2010-11-23 17:01  sms moderm\短信猫\Form4.cs

     文件      11291  2010-11-23 17:01  sms moderm\短信猫\Form4.Designer.cs

     文件       5814  2010-11-23 17:01  sms moderm\短信猫\Form4.resx

     文件       4196  2010-11-24 18:28  sms moderm\短信猫\Form5.cs

     文件       5208  2010-11-23 10:40  sms moderm\短信猫\Form5.Designer.cs

     文件       5814  2010-11-23 10:40  sms moderm\短信猫\Form5.resx

     文件       5035  2014-11-11 11:16  sms moderm\短信猫\Form6.cs

     文件       6870  2010-11-20 20:15  sms moderm\短信猫\Form6.Designer.cs

     文件       5814  2010-11-20 20:15  sms moderm\短信猫\Form6.resx

     文件        339  2010-11-20 09:43  sms moderm\短信猫\Form7.cs

     文件       3358  2010-11-20 09:43  sms moderm\短信猫\Form7.Designer.cs

     文件       5814  2010-11-20 09:43  sms moderm\短信猫\Form7.resx

     文件       2418  2010-11-23 17:04  sms moderm\短信猫\Form8.cs

     文件       9625  2010-11-23 17:01  sms moderm\短信猫\Form8.Designer.cs

     文件       5814  2010-11-23 17:01  sms moderm\短信猫\Form8.resx

     文件       1440  2010-11-21 12:17  sms moderm\短信猫\Form9.cs

     文件       6350  2010-11-21 12:17  sms moderm\短信猫\Form9.Designer.cs

     文件      18904  2010-11-21 12:17  sms moderm\短信猫\Form9.resx

     文件      32365  2014-11-11 11:25  sms moderm\短信猫\GSMModem.cs

............此处省略18个文件信息

评论

共有 条评论