我需要生成一个按钮网格,这些按钮将排列在表格上。按钮都将执行相同的代码,但应该能够识别所单击按钮的指定x和y值。关于如何实现这一点,我有3个想法,但我不知道哪个是最好的。
我不知道是否有更简单的解决方案 - 最终结果将是一个可点击的网格,可以打开或关闭点击的对象,然后将“on”按钮的坐标输入数据库。
答案 0 :(得分:3)
这是一些简单的代码,可以满足您的需求。将所有按钮连接到XAML中的同一事件处理程序
<Grid x:Name='gameboardGrid'>
<Grid.RowDefinitions>
<RowDefinition Height="1*"/>
<RowDefinition Height="1*"/>
<RowDefinition Height="1*"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="1*"/>
<ColumnDefinition Width="1*"/>
<ColumnDefinition Width="1*"/>
</Grid.ColumnDefinitions>
<Button Content="Button" Grid.Column="1" Click="AllButtons_Click"/>
<Button Content="Button" Grid.Column="0" Click="AllButtons_Click"/>
<Button Content="Button" Grid.Column="2" Grid.Row="1" Click="AllButtons_Click"/>
<Button Content="Button" Grid.Column="2" Click="AllButtons_Click"/>
</Grid>
然后在点击手中获取相对于LayoutRoot元素的x,y坐标。
private void AllButtons_Click(object sender, System.Windows.RoutedEventArgs e) {
var b = sender as Button;
// in order to remain hit testable, hide the element
// by setting its Opacity property, not the Visibility property
// also note that semi transparent objects can affect performance
b.Opacity = b.Opacity >= 1.0 ? 0.0 : 1.0;
var locationPoint = b.TransformToVisual(LayoutRoot).Transform(new Point());
PageTitle.Text = String.Format("{0},{1}",locationPoint.X, locationPoint.Y) ;
}
修改强>
如果你想在没有XAML的情况下这样做。这是网格的XAML。
<Grid x:Name='gameboardGrid'>
<Grid.RowDefinitions>
<RowDefinition Height="1*"/>
<RowDefinition Height="1*"/>
<RowDefinition Height="1*"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="1*"/>
<ColumnDefinition Width="1*"/>
<ColumnDefinition Width="1*"/>
</Grid.ColumnDefinitions>
</Grid>
然后添加此代码以生成按钮。
public MainPage() {
InitializeComponent();
for (int rowCounter = 0; rowCounter < 3; rowCounter++) {
for (int colCounter = 0; colCounter < 3; colCounter++) {
var codeButton = new Button();
Grid.SetRow(codeButton, rowCounter);
Grid.SetColumn(codeButton, colCounter);
codeButton.Click += new RoutedEventHandler(AllButtons_Click);
gameboardGrid.Children.Add(codeButton);
}
}
}
答案 1 :(得分:1)
您可以只指定每个按钮Tag
,以识别按钮。这样,您可以使代码独立于按钮的物理位置。这样您就可以生成按钮,将它们添加到网格中,并且没有任何其他引用。
我建议放入Tag
而不是坐标,但是更好的东西对应于按钮的实际语义(例如,按下按钮时必须拨打的号码,或者要执行的操作的参数。)