C#之消息队列的简要说明----自学笔记[2]

[入库:2005年8月18日] [更新:2007年3月24日]

本文简介:选择自 dhz123 的 blog

   this.groupbox1.suspendlayout();
   this.groupbox2.suspendlayout();
   this.groupbox3.suspendlayout();
   this.suspendlayout();
   //
   // button1
   //
   this.button1.location = new system.drawing.point(8, 56);
   this.button1.name = "button1";
   this.button1.tabindex = 0;
   this.button1.text = "sendmsg";
   this.button1.click += new system.eventhandler(this.button1_click);
   //
   // button2
   //
   this.button2.location = new system.drawing.point(8, 16);
   this.button2.name = "button2";
   this.button2.tabindex = 1;
   this.button2.text = "createmsmq";
   this.button2.click += new system.eventhandler(this.button2_click);
   //
   // button3
   //
   this.button3.location = new system.drawing.point(8, 104);
   this.button3.name = "button3";
   this.button3.tabindex = 2;
   this.button3.text = "readmsg";
   this.button3.click += new system.eventhandler(this.button3_click);
   //
   // richtextbox1
   //
   this.richtextbox1.anchor = ((system.windows.forms.anchorstyles)((((system.windows.forms.anchorstyles.top | system.windows.forms.anchorstyles.bottom)
    | system.windows.forms.anchorstyles.left)
    | system.windows.forms.anchorstyles.right)));
   this.richtextbox1.location = new system.drawing.point(0, 152);
   this.richtextbox1.name = "richtextbox1";
   this.richtextbox1.size = new system.drawing.size(640, 188);
   this.richtextbox1.tabindex = 3;
   this.richtextbox1.text = "richtextbox1";
   //
   // groupbox1
   //
   this.groupbox1.controls.add(this.button2);
   this.groupbox1.controls.add(this.button1);
   this.groupbox1.controls.add(this.button3);
   this.groupbox1.location = new system.drawing.point(16, 0);
   this.groupbox1.name = "groupbox1";
   this.groupbox1.size = new system.drawing.size(144, 136);
   this.groupbox1.tabindex = 4;
   this.groupbox1.tabstop = false;
   this.groupbox1.text = "非事务";
   //
   // groupbox2
   //
   this.groupbox2.controls.add(this.button4);
   this.groupbox2.controls.add(this.button7);
   this.groupbox2.controls.add(this.creaet);
   this.groupbox2.controls.add(this.button6);
   this.groupbox2.controls.add(this.button5);
   this.groupbox2.location = new system.drawing.point(184, 0);
   this.groupbox2.name = "groupbox2";
   this.groupbox2.size = new system.drawing.size(240, 136);
   this.groupbox2.tabindex = 5;
   this.groupbox2.tabstop = false;
   this.groupbox2.text = "事务性";
   //
   // button4
   //
   this.button4.location = new system.drawing.point(168, 80);
   this.button4.name = "button4";
   this.button4.size = new system.drawing.size(56, 48);
   this.button4.tabindex = 5;
   this.button4.text = "createmsmqwithtran";
   this.button4.click += new system.eventhandler(this.button4_click);
   //
   // button7
   //
   this.button7.location = new system.drawing.point(16, 104);
   this.button7.name = "button7";
   this.button7.size = new system.drawing.size(136, 23);
   this.button7.tabindex = 4;
   this.button7.text = "clearmsgofrichtxtbox";
   this.button7.click += new system.eventhandler(this.button7_click);
   //
   // creaet
   //
   this.creaet.location = new system.drawing.point(144, 32);
   this.creaet.name = "creaet";
   this.creaet.size = new system.drawing.size(80, 40);
   this.creaet.tabindex = 3;
   this.creaet.text = "异步读取消息";
   this.creaet.click += new system.eventhandler(this.read);

本文关键:C#之消息队列的简要说明----自学笔记
  相关方案
Google
 

本站最佳浏览方式为 分辨率 1024x768 IE 6.0(或更高版本的 IE浏览器)

go top