[]
In the last step, you created a Silverlight project containing C1HeaderedContentControl. In this step, you will customize C1HeaderedContentControl by setting a few of its properties and adding content to its content panel.
Complete the following steps:
Select the C1HeaderedContentControl and navigate to the Properties window to set the following properties::
The XAML will appear similar to the following:
<c1:C1HeaderedContentControl Header="Map of the World" BorderBrush="#FF198315"
HeaderForeground="#FF198315"
BorderThickness="4, 4, 4, 4" HeaderFontFamily="Arial" HeaderFontSize="15" HorizontalHeaderAlignment="Left">
<c1:C1HeaderedContentControl.Content>
<c1:C1Maps x:Name="c1Maps1" Height="200" Width="300"></c1:C1Maps>
</c1:C1HeaderedContentControl.Content>
</c1:C1HeaderedContentControl>
Double click on C1Maps to add it to the content area.
In this step, you customized C1HeaderedContentControl. In the next step, you’ll run the project and see the results of the quick start.