我正在为我的Windows Phone创建一个游戏(扫雷)。
有一个网格,这个应用程序通过double for循环自动创建按钮(单元格)(列i
和行j
。
按钮的位置为(CellWidth * i, CellHeigth * j, 0, 0)
。
问题是按钮之间的空间,我不知道它为什么存在! 通过代码,按钮之间没有任何空格。
答案 0 :(得分:3)
为按钮创建样式并将margin / padding设置为0.我相信默认样式有边距和/或填充。
查看Why does System.Windows.Controls.Button always have a padding of 10px?和How to remove the black space around the button in WP7?