Example #1
0
		public FormStudent ()
		{
			InitializeComponent ();

			// 创建核心类
			TestWindowCore.StudentCore core = new TestWindowCore.StudentCore ( this );

			// 将弹出消息绑定到各个控件上
			core.BindPopMessageEvent<EventArgs> ( this.button1, null, "Click", EventHandlerType.EventHandler, "点击我了" );
			core.BindPopMessageEvent<EventArgs> ( this.button2, null, "MouseDown", EventHandlerType.MouseEventHandler, "鼠标按下" );

			core.BindPopMessageEvent<EventArgs> ( null, null, "Click", EventHandlerType.EventHandler, null );
			core.BindPopMessageEvent<EventArgs> ( this.button1, null, "Click123", EventHandlerType.EventHandler, "点击我了123" );
		}
Example #2
0
        public FormStudent()
        {
            InitializeComponent();

            // 创建核心类
            TestWindowCore.StudentCore core = new TestWindowCore.StudentCore(this);

            // 将弹出消息绑定到各个控件上
            core.BindPopMessageEvent <EventArgs> (this.button1, null, "Click", EventHandlerType.EventHandler, "点击我了");
            core.BindPopMessageEvent <EventArgs> (this.button2, null, "MouseDown", EventHandlerType.MouseEventHandler, "鼠标按下");

            core.BindPopMessageEvent <EventArgs> (null, null, "Click", EventHandlerType.EventHandler, null);
            core.BindPopMessageEvent <EventArgs> (this.button1, null, "Click123", EventHandlerType.EventHandler, "点击我了123");
        }