Windows Phone 8.1按钮单击参数

时间:2015-01-31 04:51:32

标签: c# windows-phone-8 windows-phone-8.1

在Windows Phone 8.1中有没有办法在按钮点击时传递参数?

我有一个5x5按钮的网格,他们应该调用相同的方法,但使用不同的参数。我正在添加这样的处理程序:

foreach (var child in buttonGrid.Children)
{
    Button b = child as Button;
    if (b != null)
    {
        b.Click += Button_Click;
        // I want to add an argument to this
    }
}

现在我可以获得按钮索引的唯一方法是迭代整个网格并检查发送者是否等于按钮:

private void Button_Click(object sender, RoutedEventArgs e)
{
    for (int i = 0; i < buttonGrid.Children.Count; i++)
    {
        if (sender == buttonGrid.Children[i])
        {
            DoSomething(i);
            return;
        }
    }
}

它有效,但我不喜欢这种方法。有没有更有效的方法(除了为25个按钮中的每一个创建不同的方法)?

我尝试在互联网上搜索,但Windows Phone的文档和示例确实缺乏。如果有人有一个很好的Windows Phone 8.1教程存储库来指导我,那也会有所帮助。

4 个答案:

答案 0 :(得分:3)

您可以使用按钮的Tag属性。

例如

我试图创建一个数字键盘,其中有9个按钮,相应的数字作为按钮内容,我也设置了与Tag属性相同的内容。

<StackPanel>
    <StackPanel Orientation="Horizontal" >
        <Button Content="1" Margin="10" HorizontalAlignment="Left" VerticalAlignment="Top" FontSize="48" FontWeight="Bold" Click="Button_Click" Tag="1" />
        <Button Content="2" Margin="10" HorizontalAlignment="Left" VerticalAlignment="Top" FontSize="48" FontWeight="Bold" Click="Button_Click" Tag="2" />
        <Button Content="3" Margin="10" HorizontalAlignment="Left" VerticalAlignment="Top" FontSize="48" FontWeight="Bold" Click="Button_Click" Tag="3" />
    </StackPanel>

    <StackPanel Orientation="Horizontal">
        <Button Content="4" Margin="10" HorizontalAlignment="Left" VerticalAlignment="Top" FontSize="48" FontWeight="Bold" Click="Button_Click" Tag="4" />
        <Button Content="5" Margin="10" HorizontalAlignment="Left" VerticalAlignment="Top" FontSize="48" FontWeight="Bold" Click="Button_Click" Tag="5" />
        <Button Content="6" Margin="10" HorizontalAlignment="Left" VerticalAlignment="Top" FontSize="48" FontWeight="Bold" Click="Button_Click" Tag="6" />
    </StackPanel>

    <StackPanel Orientation="Horizontal">
        <Button Content="7" Margin="10" HorizontalAlignment="Left" VerticalAlignment="Top" FontSize="48" FontWeight="Bold" Click="Button_Click" Tag="7" />
        <Button Content="8" Margin="10" HorizontalAlignment="Left" VerticalAlignment="Top" FontSize="48" FontWeight="Bold" Click="Button_Click" Tag="8" />
        <Button Content="9" Margin="10" HorizontalAlignment="Left" VerticalAlignment="Top" FontSize="48" FontWeight="Bold" Click="Button_Click" Tag="9" />
    </StackPanel>
</StackPanel>

这会产生以下输出:

Output

在您的代码中,您现在可以按以下方式使用Tag属性

private void Button_Click(object sender, RoutedEventArgs e)
{
    var tag = (sender as Button).Tag;

    int t = Convert.ToInt16(tag);

    switch (t)
    {
        case 1:

            //Do Something
            break;

        case 2:

            //Do Something
            break;

        case 3:

            //Do Something
            break;

        case 4:

            //Do Something
            break;

        case 5:

            //Do Something
            break;

        case 6:

            //Do Something
            break;

        case 7:

            //Do Something
            break;

        case 8:

            //Do Something
            break;

        case 9:

            //Do Something
            break;

        default:
            break;
    }
}

答案 1 :(得分:2)

XAML中的控件和其他元素具有Tag属性,您可以将其设置为此类事物的任意对象值。在创建对象时设置它,然后在事件处理程序中检查它。

答案 2 :(得分:1)

一个简单的解决方案是为每个按钮分配唯一的数字,然后使用这个唯一分配的数字作为参数调用该函数。

在该功能中,您可以轻松使用If-Else块根据唯一编号执行任务。

4个按钮的代码类似于: -

void func(int unique_number)
{
    if(unique_number==1)
    {
        //perform tasks for button 1
    }

    if(unique_number==2)
    {
        //perform tasks for button 2
    }

    if(unique_number==3)
    {
        //perform tasks for button 3
    }

    if(unique_number==4)
    {
        //perform tasks for button 4
    }

}

private void Button_1_Click(object sender, RoutedEventArgs e)
{
   func(1); //Call from button 1
}

private void Button_2_Click(object sender, RoutedEventArgs e)
{
   func(2); //Call from button 2
}

private void Button_3_Click(object sender, RoutedEventArgs e)
{
   func(3); //Call from button 3
}

private void Button_4_Click(object sender, RoutedEventArgs e)
{
   func(4); //Call from button 4
}

我希望这会让它变得简单而有效。

答案 3 :(得分:1)

虽然答案显示了如何使用Tag执行此操作,但这种方法对100个按钮来说并不方便。

要获得结果,您可以使用闭包来完成工作。以下是:

// When you're attaching handlers
int i=0;
foreach (var child in buttonGrid.Children)
{
    Button b = child as Button;
    if (b != null)
    {
        b.Click += () => {
            int z = i++; // You can put a different id generator here as well, like int z = <rand>%<prime> if you want
            DoSomething(z); // DoSomething called with corrosponding button id
        }
    }
}

此方法不要求您使用标记!