Back to Main Load Limitations Page

Creating a Binding using Element Syntax Does not Load


If you specify a Binding using element syntax instead of markup extension syntax (using {}), the designer will fail to load. The following XAML, for example, will fail to load:

		      [<TextBlock] x:Name="userName" FontSize="12" Foreground="Red" >
		        [<TextBlock.Text>]
		          <Binding XPath="@Name" />
		        [</TextBlock.Text>]
		      [</TextBlock>]
	

but the following will:

		      [<TextBlock] x:Name="userName" FontSize="12" Foreground="Red" Text="{Binding XPath=@Name}"/>
	

Back to Main Load Limitations Page
Microsoft Communities