hola como andan, soy bastante nuevo en silverlight y hay algunas cositas que me están matando a ver si me pueden dar una mano
Tengo un userControl llamado "SC".
quiero que con un boton se vayan agregando controles SC a la pagina
algo asi es lo que tengo hecho pero no me funciona:
Código:
xmlns:local="clr-namespace:SilverlightApplication2"
<Grid x:Name="juanito" Background="White">
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
<Grid Grid.Row="0" x:Name="sarasa" Background="White">
<Button Click="Button_Click" Content="agregar"/>
</Grid>
<Grid x:Name="canvas" Grid.Row="1" Background="White">
</Grid>
</Grid>
</UserControl>
este es el del userControl:
Código:
<UserControl x:Class="SilverlightApplication2.SC"
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="100" d:DesignWidth="400">
<Grid x:Name="LayoutRoot" Background="White"
HorizontalAlignment="Center">
<StackPanel Orientation="Horizontal">
<TextBox Width="200" Height="30" />
<Button Content="Push Me" Width="100" Height="50"/>
</StackPanel>
</Grid>
</UserControl>
y en el code behind:
Código:
private void Button_Click(object sender, RoutedEventArgs e)
{
SC nuevo = new SC();
this.canvas.Children.Add(nuevo);
}
eso lo encontré en internet por ahi pero en esta linea: this.canvas.Children.Add(nuevo);
Children estaba con "s" (Childrens). Puede ser por eso? no me encuentra el metodo Childrens
Solo me agrega una vez el user conrtol, cuando le doy clic otra vez al boton ya no pasa mas nada, alguien sabe por qué puede ser???
Espero que me puedan ayudar
Muchas Gracias