Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
180
The property 'System.Windows.Controls.Panel.Children' is set more than once.
posted

Hi,

I am a new Silverlight developer and I am trying something simple such as including

a xamWebOutlookBar in a silverlight control and getting and error The property 'System.Windows.Controls.Panel.Children'  is set more than once.

I am using 10.1 version. The  xaml given below

Could anyone please help me with what I am missing here?

Thanks

Anand

 

<UserControl 
   x:Class="Infragistics.Samples.Silverlight.Browser.LOB.Samples.OutlookBar.CreatingXamOutlookBar" 
   xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
   xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
   xmlns:igOB="clr-namespace:Infragistics.Silverlight.Controls;assembly=Infragistics.Silverlight.XamWebOutlookBar.v10.1"> 

        <Grid>
            <Grid.ColumnDefinitions>
                <ColumnDefinition Width="Auto">
                </ColumnDefinition>
                <ColumnDefinition>
                </ColumnDefinition>
            </Grid.ColumnDefinitions>
            <!--#BEGIN SNIPPET#-->
        <igOB:XamWebOutlookBar Name="xamWebOutlookBar1">

        </igOB:XamWebOutlookBar>         <!--#END SNIPPET#-->         </Grid> </UserControl>