C#消息模拟

阅读: 85 评论: 0 作者: wwewbw 发表于 2010-03-03 11:31 原文链接

C#中消息的工作流程:

 C#中的消息被Application类从应用程序消息队列中取出,然后分发到消息对应的窗体,窗体对象的第一个响应函数是对象中的protected override void WndProc(ref System.Windows.Forms.Message e)方法。
    它再根据消息的类型调用默认的消息响应函数(如OnMouseDown),默认的响应函数然后根据对象的事件字段(如this.MouseDown )中的函数指针列表,调用用户所加入的响应函数(如Form1_MouseDown1和Form1_MouseDown2),而且调用顺序和用户添加顺序一致

根据这个流程,我做了个模仿程序,有不足的地方还请大家提供更完善的补充。

 

using System;

 

//创建一个委托,返回类型void,两个参数

public delegate void KeyDownEventHandler(object sender, KeyEventArgs e);

//数据参数类

class KeyEventArgs : EventArgs  

{

    private char keyChar;

    public KeyEventArgs(char keyChar)

        : base()

    {

        this.keyChar = keyChar;

    }

    public char KeyChar

    {

        get { return keyChar; }

    }

}

 

//模仿Application类

class M_Application

{

 

    public static void Run(M_Form form)

    {

        bool finished = false;

        do

        {

            Console.WriteLine("Input a char");

            string response = Console.ReadLine();

            char responseChar = (response == "") ? ' ' : char.ToUpper(response[0]);

            switch (responseChar)

            {

                case 'X':

                    finished = true;

                    break;

                default:

                    //得到按键信息的参数

                    KeyEventArgs keyEventArgs = new KeyEventArgs(responseChar);

                    //向窗体发送一个消息

                    form.WndProc(keyEventArgs);

                    break;

 

            }

        } while (!finished);

    }

}

//模仿窗体类

class M_Form

{

 

    //定义事件

    public event KeyDownEventHandler KeyDown;

    public M_Form()

    {

        this.KeyDown += new KeyDownEventHandler(this.M_Form_KeyDown);

    }

 

    //事件处理函数

    private void M_Form_KeyDown(object sender, KeyEventArgs e)

    {

        Console.WriteLine("Capture key:{0}", e.KeyChar);

    }

 

    //窗体处理函数

    public void WndProc(KeyEventArgs e)

    {

        KeyDown(this, e);

    }

 

}

 

//主程序运行

class MainEntryPoint

{

    static void Main()

    {

        M_Application.Run(new M_Form());

    }

}

评论: 0 查看评论 发表评论

找优秀程序员,就在博客园


最新新闻:
· IBM发布第五代X架构 打破X86系统30年技术局限(2010-03-03 22:47)
· 互联网手机业务成香馍馍 上海电信盯牢3G市场(2010-03-03 22:38)
· Twitter信息总量即将突破100亿条大关(2010-03-03 22:34)
· Opera为何无法进一步拓展市场(2010-03-03 21:38)
· Symbian版 Skype登陆诺基亚Ovi Store(2010-03-03 21:04)

编辑推荐:Opera为何无法进一步拓展市场

网站导航:博客园首页  个人主页  新闻  闪存  小组  博问  社区  知识库

你可能感兴趣的:(C#)