You can customize the look of system controls in Microsoft Silverlight 2 by using static resources to define templates that are applied to the controls. For example, you could create a template for a button that used images instead of rectangles to construct the appearance of the button.
To create a common look among different control templates or among different user controls, you can convert individual properties to static resources and then apply them to templates and user controls. For example, you could convert the border color of a button template to a resource and then apply that color resource to the border property of a check box template or a custom user control.
To reuse your templates and resources in other projects, you can move the resources into the App.xaml file, and then paste them into the App.xaml file of other projects. By moving your resources to the App.xaml file, it becomes a repository for the skin of your application.

To create a template of a control

To create a user control

To convert a property to a static resource
-
Select an object on the artboard that has a property value that you want to reuse in other controls.
-
In the properties
view of the Properties panel, locate the property that you want to reuse.
Tip: |
|---|
|
You can use the Search text box in the Properties panel to quickly locate a property by characters in the property name.
The text that you enter will filter the list of properties.
To restore the Properties panel, click the Clear button next to the Search text box.
|
-
Do one of the following:
-
In the dialog box that appears (titled Create <type> Resource), enter a meaningful name for your resource, and then click OK.
The resource is created and listed in the Resources panel.
For information about how to modify a resource after you create it, see Modify a resource.

To apply a resource to another property
You have many ways to apply a resources to a property.
To apply a resource by dragging it from the Resources panel
-
From the Resources panel, drag a resource onto a control on the artboard.
Dragging a font family resource onto a check box control
-
From the drop-down menu that appears, select which property of the control you want to apply the resource to.
Applying a font family resource to the FontFamily property of the check box
To apply a resource by using the Advanced property options menu
-
In the properties
view of the Properties panel, locate the property that you want to set to a resource.
-
Click the Advanced property options
button, point to Local Resource, and then select the resource name from the drop-down list that appears.
To apply a brush resource
-
In the properties
view of the Properties panel, select the brush that you want to set to a resource.
-
In the Brush resources
tab, select the name of the resource.
To apply a color resource

To apply a template to another control of the same type
You have many ways to apply templates to controls.
To apply a template by selecting it in the Asset Library and drawing a new control
-
From the Toolbox, open the Asset Library
.
-
In the Local Styles tab of the Asset Library, select the template you created.
-
On the artboard, use your mouse pointer to draw a bounding box.
A new control is drawn that matches the selected template, and the template is automatically applied.
To apply a template by dragging it from the Resources panel
-
From the Resources panel, drag a template resource onto a control on the artboard.
-
From the drop-down menu that appears, select the Style property.
To apply a template by using the Advanced property options menu
-
Select the object to which you want to apply a template.
-
In the properties
view of the Properties panel, locate the Style property.
-
Next to the Style property, click the Advanced property options
button, point to Local Resource, and then select the name of the template from the drop-down list that appears.

To move resources to the App.xaml file

To copy resources to other projects
-
From the Projects panel, double-click the App.xaml file to open it on the artboard.
-
The App.xaml file cannot be viewed in Design view, so select the XAML tab on the right side of the artboard.
-
Resources are defined between <Application.Resources> tags.
<Application.Resources>
</Application.Resources>
Within these tags, property resources are defined in tags that represent the type of property they are. The Key attribute represents the name that you gave to the resource.
<FontFamily x:Key="ApplicationFont">Segoe UI</FontFamily>
<LinearGradientBrush x:Key="BorderBrush" EndPoint="0.5,1" StartPoint="0.5,0">
<GradientStop Color="#FF000000"/>
<GradientStop Color="#FFC64545" Offset="1"/>
</LinearGradientBrush>
Templates are defined between <Style> tags. The Key attribute represents the name that you gave to the template.
<Style x:Key="ImageButton" TargetType="Button">
<Setter Property="Background" Value="#FF1F3B53"/>
<Setter Property="Template">
...
</Setter>
</Style>
-
Highlight the XAML that represents the resources that you want to move to another project and then press CTRL+C to copy them.
-
Open the other project in Expression Blend, open the App.xaml file on the artboard in XAML view, insert the pointer right after the <Application.Resources> tag, and then press CTRL+V to paste the resources.
-
Make sure no key names are duplicated in any preexisting resources.
-
Build your project (CTRL+SHIFT+B) to make sure that the new resources were copied correctly.
Tip: |
|---|
|
Alternatively, you could copy the complete App.xaml file into a new project and then just change the name in the x:Class attribute to the name of the new project.
<Application
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="ProjectName.App"
...
|
Next steps