Hỏi đáp
Chia sẻ kiến thức, cùng nhau phát triển
C# Window Form: Giúp mình giải quyết lỗi vòng lặp tạo button
21:11 17-12-2018
475 lượt xem
0 bình luận
Lỗi xuống vòng lặp rất khó hiểu ae giải thích giúp mình
Anh em xem hình mình ko biết up ảnh
https://drive.google.com/file/d/1RMcgO7QbFTuC6P0itj2HxKIDelpHP2ac/view?usp=sharing
Cons.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GameCaro
{
class Cons
{
public static int boardHeight = 10;
public static int boardWidth = 10;
public static int buttonSize = 40;
}
}
CheckBoardManager.cs
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace GameCaro
{
class ChessBoardManager
{
public ChessBoardManager()
{
}
public void DrawTable(Panel panel)
{
float count = 1f;
Button oldbtn = new Button() { Location = new Point(0, 0), Width = 0, Height = 0 };
for (int j = 1; j <= Cons.boardHeight; j++)
{
for (int i = 0; i <= Cons.boardWidth; i++)
{
Button btn = new Button()
{
Width = Cons.buttonSize,
Height = Cons.buttonSize,
Location = new Point(oldbtn.Location.X + oldbtn.Width, oldbtn.Location.Y),
Text = count.ToString()
};
oldbtn = btn;
panel.Controls.Add(btn);
count++;
}
oldbtn.Location = new Point(0, oldbtn.Location.Y + oldbtn.Height);
}
}
}
}
Form1.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace GameCaro
{
public partial class MainForm : Form
{
public MainForm()
{
InitializeComponent();
ChessBoardManager ChessBoard = new ChessBoardManager();
ChessBoard.DrawTable(pn_ChessBoard);
}
}
}