Share via


Create a skin for controls in your project

You can customize the look of controls 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 a resource dictionary file, and then add that file to other projects. The resource dictionary file 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

  1. Select an object on the artboard that has a property value that you want to reuse in other controls.

  2. In the properties view cee1494c-ef95-4dd4-9fbc-9d02edfa78b7 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 searching for characters in the name of the property.

    a1e4026a-4e48-4f0c-8898-3783121e57fa

    The text that you type will filter the list of properties.

    c286ad76-70a6-41f7-bed6-d6d4ad69e549

    To restore the Properties panel, click Clear 1d1f5548-6c7a-46bd-9d93-591edc576888, next to the Search text box.

  3. Do one of the following:

    • If you want to reuse a Brush, click Advanced options 12e06962-5d8a-480d-a837-e06b84c545bb next to the brush property (such as the Fill or Background property), and then click Convert to New Resource.

    • If you want to reuse a color that is applied to a brush, select the brush if it is a Solid color brush 3a66ec96-47bb-47fc-8876-6b9456feec3a, or select the gradient stop a3c9e482-e99b-4504-8a02-9507487d1791 for the color you want to reuse if the brush is a Gradient brush 91fb0c61-7b3b-4ae7-8a59-760e625e3bd7. Then, click Convert color to resource 6bf68607-add8-4d87-b6f4-100c8f05dd17.

      89203705-cf66-46e0-b153-52a23cd744f7

    • If you want to reuse a numeric or other value type, click the Advanced options button 12e06962-5d8a-480d-a837-e06b84c545bb next to the property, and then click Convert to New Resource.

      3f69215a-f522-4347-88fb-f6b219f5419e

  4. In the dialog box that appears (titled Create <type> Resource), type a meaningful name for your resource, and then click OK.

    The resource is created and listed in the Resources panel.

    97203920-a26b-4bb5-b0ed-9c71ae6973d3

    For information about how to modify a resource after you create it, see Modify a resource.

Apply a resource to another property

You have many ways to apply a resource to a property.

To apply a resource by dragging it from the Resources panel

  1. From the Resources panel, drag a resource onto a control on the artboard.

    Dragging a resource onto a button control

    8290ff37-d8e8-479f-89f3-a04118ab186b

  2. From the menu that appears, select which property of the control you want to apply the resource to.

    Applying a resource to the Background property of the button

    2063f03b-e8ad-46cb-9f12-7898b6bc1f43

To apply a resource by using the Advanced options menu

  1. In the properties view cee1494c-ef95-4dd4-9fbc-9d02edfa78b7 of the Properties panel, locate the property that you want to set to a resource.

  2. Click Advanced options 12e06962-5d8a-480d-a837-e06b84c545bb, point to Local Resource, and then select the resource name from the drop-down list that appears.

To apply a brush resource

  1. In the properties view cee1494c-ef95-4dd4-9fbc-9d02edfa78b7 of the Properties panel, select the brush that you want to set to a resource.

  2. In the Brush resources tab 415db740-5a54-48d2-8678-245ccfa7ee8b, select the name of the resource.

    af28e5e4-4861-45ac-b02d-e65386520ed7

To apply a color resource

  1. In the properties view cee1494c-ef95-4dd4-9fbc-9d02edfa78b7 of the Properties panel, select the brush whose color you want to set to a resource. If the brush is a Gradient brush 91fb0c61-7b3b-4ae7-8a59-760e625e3bd7, select the gradient stop a3c9e482-e99b-4504-8a02-9507487d1791 for the color.

  2. In the Color resources tab, select the name of the resource.

    5cb88f90-c17a-4dad-be87-b6be7d74f410

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 Assets panel and drawing a new control

  1. In the Tools panel, click Assets 0d8b8d29-1af9-418f-8741-be3097d76eab.

  2. In the Styles category of the Assets panel, select the template you created.

  3. On the artboard, use your 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

  1. From the Resources panel, drag a template resource onto a control on the artboard.

  2. From the drop-down menu that appears, select the Style property.

To apply a template by using the Advanced options menu

  1. Select the object to which you want to apply a template.

  2. In the properties view cee1494c-ef95-4dd4-9fbc-9d02edfa78b7 of the Properties panel, locate the Style property.

  3. Next to the Style property, click Advanced options 12e06962-5d8a-480d-a837-e06b84c545bb, 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

  • If you did not define your resources in the App.xaml file when you created them, you can move your resources to the App.xaml file by dragging them in the Resources panel.

    Tip

    If you do not see your resources, you might have to expand the nodes under the document node (typically Page.xaml).

To copy resources to other projects

  1. From the Projects panel, double-click the App.xaml file to open it on the artboard.

  2. The App.xaml file cannot be viewed in Design view, so select the XAML tab on the right side of the artboard.

  3. Resources are defined between <Application.Resources> tags.

    <Application.Resources>
    </Application.Resources>
    

    Between 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>
    
  4. Highlight the XAML that represents the resources that you want to move to another project, and then press Ctrl+C to copy them.

  5. Open the other project in 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.

  6. Make sure that no key names are duplicated in any preexisting resources.

  7. 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="https://schemas.microsoft.com/winfx/2006/xaml/presentation"

    xmlns:x="https://schemas.microsoft.com/winfx/2006/xaml"

    x:Class="ProjectName.App" ...

You can watch how to create a control skin for a button and a check box in the "How Do I?" video tutorials on the Expression Community website.

See Also

Concepts

Styling tips for common Silverlight controls

Styling tips for WPF Simple Styles