本帖最后由 q55964133 于 2014-7-13 13:57 编辑
- private void button1_Click(object sender, EventArgs e)
- {
- int width = panel1.Width / 109;
- int col = 20 / width;
- int colsy = 20 % width;
- for (int i = 0; i < width; i++)
- {
- for (int y = 0; y < col; y++)
- {
- Draw(i, y);
- }
- }
- for (int z = 0; z < colsy; z++)
- {
- Draw( z, col);
- }
- }
- public void Draw(int x, int y)
- {
- Graphics g = Graphics.FromHwnd(panel1.Handle);
- g.DrawRectangle(Pens.Black, new Rectangle(x * 108, y * 108, 100, 100));
- //g.DrawString("第一", new Font("宋体", 12), new SolidBrush(Color.Red), new PointF(0, 0));
- }
复制代码
这个可以画出来可是一缩小 再打开出来就没了
还有画出来的时候 这个可不可以弄往下拉。。。不然下面还看不到
|