我有一个数字1到10的组合框,根据用户的选择,我的表单上应该显示许多用户控件。第一次表单加载组合框的值为1,只有一个用户控件petdetails在网格中(只有一行,并在进行更改时添加其他列)。我的程序工作正常,直到这个程度,但一旦用户添加更高并减少由于某种原因列删除但最后一列中的控件重叠。(例如:用户选择6,6个控件添加和一次他将组合框中的值更改为3,只剩下3列,但在第三列中,我可以看到用户控件5,6已经重叠了。我在这里粘贴我的代码,任何帮助都将不胜感激。
private void cmbNoOfPets_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
int i = Convert.ToInt32(((System.Windows.Controls.ContentControl)(cmbNoOfPets.SelectedValue)).Content);
int grdCols=Convert.ToInt32(grdPetDetails .ColumnDefinitions .Count.ToString ());
// check if the number of pets is more than the existing number in the grid if more start with adding at the next column
// if less start from the last decreasing till the number of columns required
if (i > grdCols)
for (int j = grdCols+1 ; j <= i; j++)
{
ColumnDefinition c = new ColumnDefinition();
c.Width = new GridLength(370, GridUnitType.Pixel);
grdPetDetails.ColumnDefinitions.Add (c);
PetDetails petdetails = new PetDetails();
petdetails.Name = "petDetails" + j ;
string str="Pet Number " + j + ":";
petdetails.lblPetNumber.Content = str;
Grid.SetRow(petdetails, 1);
Grid.SetColumn(petdetails, j - 1);
grdPetDetails.Children.Add(petdetails);
}
else if (i < grdCols)
for (int j = grdCols; j > i; j--)
{
PetDetails petdetails = new PetDetails();
petdetails.Name = "petDetails" + j;
grdPetDetails.Children.Remove(petdetails);
grdPetDetails.ColumnDefinitions.RemoveAt(j - 1);
}
}
我首先删除控件然后删除列定义,但后来无法理解为什么会发生这种情况。
提前致谢。
答案 0 :(得分:0)
因此,重新解释问题/请求“当我更改组合框的SelectedItem时,我希望新的SelectedIndex + 1控件数量显示在应用程序的其他位置。”看起来很简单,只需将事件处理程序连接到SelectionChanged,然后在该事件处理程序中创建控件。 http://msdn.microsoft.com/en-us/library/system.windows.controls.primitives.selector.selectionchanged.aspx