示例#1
0
 public KeyBoardForm()
 {
     InitializeComponent();
     control = new Canvas2D.Controls.Control2D();
     control.drawGameEventHandler += Control_DrawGame;
     point   = new Canvas2D.Models.Point(new Vector2(0, 0));
     texture = new Canvas2D.Models.Texture(@"../../../大软键盘.bmp");
     control.Start();
     Height = texture.ImageHeight;
     Width  = texture.ImageWidth;
 }