我正在开展一个大型的Silverlight项目,我遇到了问题,所以我将问题分解为在stackoverflow上询问的较小问题。
我在这段代码中有一个大网格(LayoutRoot)。在这个LayoutRoot中,我有超过2行(我将使用超过2行的2行)。在第一行,我将有组合框,在另一行 我将在combo selectionChnged事件中显示文本(在两个不同的行中),但请注意文本的显示必须在for循环中的两个不同的行中 因为在更大的程序中我有类似的情况,其中for循环中的每个if条件将返回一个网格,其中包含一些数据/ UI元素,并且我将每个网格一个接一个地存储在不同的列中,并再次将所有行存储在一个大网格。
它将在“storeRowGridInBig.Children.Add(rowGrid)”行第二次执行for循环时给出“已经有孩子异常”; 但问题是如何解决它呢? (我要做的是:在我的每个if for循环中的条件将在for循环的每次迭代中返回一个网格,并且那些网格是 应该逐行显示)如何解决这个问题?
我尝试这样做是:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
namespace SilverlightApplication6
{
public partial class MainPage : UserControl
{
public MainPage()
{
InitializeComponent();
ComboBox cmb = new ComboBox();
Grid largeGrid = new Grid();
for (int i = 0; i <4; i++)
{
largeGrid.RowDefinitions.Add(new RowDefinition() { Height = GridLength.Auto });
largeGrid.ColumnDefinitions.Add(new ColumnDefinition() { });
cmb.Items.Add(i);
}
cmb.SelectionChanged += (o, e) =>
{
Grid rowGrid = new Grid();
Grid storeRowGridInBig = new Grid();
for (int i = 0; i < 4;i++ )
rowGrid.RowDefinitions.Add(new RowDefinition());
for (int i = 0; i < 4; i++)
{
if (i == 0)
{
TextBlock txt1 = new TextBlock();
txt1.Text = "for 1";
rowGrid.Children.Add(txt1);
}
else if (i == 1)
{
TextBlock txt1 = new TextBlock();
txt1.Text = "for 2";
rowGrid.Children.Add(txt1);
}
Grid.SetRow(rowGrid, i);
storeRowGridInBig.Children.Add(rowGrid); //on puting it outside it shows both the text in 1 line overwrites I dont know why ?)
}
Grid.SetRow(storeRowGridInBig, 1);
largeGrid.Children.Add(storeRowGridInBig);
};
Grid.SetRow(cmb,0);
Grid.SetColumn(cmb, 1);
largeGrid.Children.Add(cmb);
LayoutRoot.Children.Add(largeGrid);
}
}
}
并且:
<UserControl x:Class="SilverlightApplication6.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="400">
<Grid x:Name="LayoutRoot" Background="White">
</Grid>
</UserControl>
如何解决目前的情况。
答案 0 :(得分:2)
您将获得异常,因为您在行中的父级添加了多次相同的控件:
storeRowGridInBig.Children.Add(rowGrid);
将它放在for循环之外,它应该可以正常工作
但正确的方法是不在代码隐藏
中添加任何控件查看MVVM
设计模式
<强>更新强>
重写了你的方法,所以它应该有效,但它确实不是一个干净的解决方案:
cmb.SelectionChanged += (o, e) =>
{
Grid rowGrid = new Grid();
Grid storeRowGridInBig = new Grid();
for (int i = 0; i < 4; i++)
rowGrid.RowDefinitions.Add(new RowDefinition());
for (int i = 0; i < 4; i++)
{
if (i == 0)
{
TextBlock txt1 = new TextBlock();
txt1.Text = "for 1";
rowGrid.Children.Add(txt1);
Grid.SetRow(txt1, i);
}
else if (i == 1)
{
TextBlock txt1 = new TextBlock();
txt1.Text = "for 2";
rowGrid.Children.Add(txt1);
Grid.SetRow(txt1, i);
}
}
storeRowGridInBig.Children.Add(rowGrid);
Grid.SetRow(storeRowGridInBig, 1);
if (LayoutRoot.Children.Count > 1)
{
LayoutRoot.Children.RemoveAt(LayoutRoot.Children.Count - 1);
}
LayoutRoot.Children.Add(storeRowGridInBig);
};
有几个问题:
rowGrid
Grid.SetRow
而不是rowGrid
txt1
SelectionChanged
时,您在上一次运行中添加的网格未被删除