InterviewSolution
| 1. |
What Is The Parent Xaml Tag Of Silverlight Page? |
|
Answer» UserControl is the PARENT xaml tag of the Silverlight page. All other tags are placed under UserControl tag. <UserControl x:Class="SilverlightApplication2.MainPage" <GRID x:Name="LayoutRoot" Background="White"> UserControl is the parent xaml tag of the Silverlight page. All other tags are placed under UserControl tag. <UserControl x:Class="SilverlightApplication2.MainPage" <Grid x:Name="LayoutRoot" Background="White"> |
|