Back to Main Load Limitations Page

Frame Content Property Limitation


Setting the content of a Frame directly within the <Frame> tags fails to design.

For example:
		    <Frame>
		        Hello
		    </Frame>
	

or

		    <Frame>
		        <Button/>
		    </Frame>
	

Putting the content in <Frame.Content> tags works around this problem.

		    <Frame>
		        <Frame.Content>
		        Hello
		        </Frame.Content>
		    </Frame>
	

Back to Main Load Limitations Page
Microsoft Communities