Windows手机应用程序中的按钮边距

时间:2013-10-03 18:33:16

标签: c# xaml windows-phone-7 windows-phone

我正在动态生成一个按钮矩阵(动态gridSize),一切都很完美,除了我无法得到它们之间没有空格。我试过但是无法理解如何使用margin属性。

460是我添加按钮的gridPanel的宽度和高度

以下是我的app.cs文件

中的代码
private void generateButtons()
{
    for (int i = 0; i < gridSize; i++)
    {
        for (int j = 0; j < gridSize; j++)
        {
            buttons[i, j] = new Button();
            buttons[i, j].Content = "0";
            buttons[i, j].FontSize = 16;
            buttons[i, j].Height = 460/gridSize;
            double size = buttons[i, j].Height;
            buttons[i, j].Width = 460/gridSize;
            buttons[i, j].Foreground = new SolidColorBrush(Colors.Transparent);
            opened[i, j] = false;
            buttons[i, j].Margin = new Thickness(0 + (size * j), 0 + (size * i), 464 -                    (0 + (size * (j + 1))), 464 - (0 + (size * (i + 1))));
            buttons[i, j].Click += new RoutedEventHandler(cell_Click);
            this.gridPanel.Children.Add(buttons[i, j]);
        }
    }
}

1 个答案:

答案 0 :(得分:1)

Windows Phone上的大多数“输入控件”(按钮,文本框等)的默认间距等于6.0或12.0。简单的解决方法是将按钮的边距调整为-12。

与问题无关的消化 - 当您想要使用按钮统一填充网格时,生成所需数量的行和列并将每个按钮放在不同的单元格中(使用button.margin始终相等)可能更容易到-12)。所有尺寸计算都将由Grid完成。像这样(gridPanel是Grid)。

// generate rows and columns
for (int i = 0; i < gridSize; i++)
{
    gridPanel.RowDefinitions.Add(new RowDefinition());
    gridPanel.ColumnDefinitions.Add(new ColumnDefinition());
}

for (int i = 0; i < gridSize; i++)
{
    for (int j = 0; j < gridSize; j++)
    {
        buttons[i, j] = new Button
            {
                Content = "0",
                FontSize = 16,
                Foreground = new SolidColorBrush(Colors.Transparent),
                // all buttons have the same margin, no calculation needed
                Margin = new Thickness(-12) 
            };
        // placing in a row and column via attached properties
        buttons[i, j].SetValue(Grid.RowProperty, i);
        buttons[i, j].SetValue(Grid.ColumnProperty, j);
        buttons[i, j].Click += new RoutedEventHandler(cell_Click);
        opened[i, j] = false;
        this.gridPanel.Children.Add(buttons[i, j]);
    }
}