我知道我可以拖放一个按钮,但是我想创建许多具有不同属性的按钮。
private void Enter_Click(object sender, RoutedEventArgs e)
{
string xDiv = textx.Text;
int x = Convert.ToInt32(xDiv);
string yDiv = texty.Text;
int y = Convert.ToInt32(yDiv);
//x would be the length y the height of the button
}