本帖最后由 q55964133 于 2014-7-10 23:18 编辑
- private void btn_Strat_Click(object sender, EventArgs e)
- {
- Graphics g = Graphics.FromHwnd(this.GameMap.Handle);
- int RowCount = 18;
- int ColCount = 11;
- int width = this.GameMap.Width / ColCount;
- int Heigth = this.GameMap.Height / RowCount;
- for (int rowindex = 0; rowindex < RowCount; rowindex++)
- {
- for (int colindex = 0; colindex < ColCount;colindex++)
- {
- g.DrawRectangle(Pens.Black, new Rectangle(colindex * width, rowindex * Height, width, Heigth));
-
-
- }
- }
- }
复制代码
找不出什么问题。。。
看视频的老师这样可以生成全部 我只能生成1行。。。。不知道什么问题。。。
请大神指点。。。谢谢
|