top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What are the different Layout controls available in Silverlight?

+1 vote
284 views
What are the different Layout controls available in Silverlight?
posted May 25, 2015 by Sathish Kumar

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote

There are three different types of Layout controls provided by Silverlight:

Canvas - Position child elements absolutely in x, y space.

StackPanel - Position child elements relative to one another in horizontal or vertical stacks.

Grid - Position child elements in rows and columns.

You have to add a layout panel to every XAML page you create. All other UI elements must be added inside one of the layout panels. Each page can have exactly one layout panel control.

answer May 26, 2015 by Jdk
...