Colors, Gradients, and Opacity

All of the user interface (UI) elements in Visual Studio 2010 are created in Windows Presentation Foundation (WPF). Therefore, when you create tool windows or other UI elements, you can apply colors, gradients, and opacity by setting the appropriate attributes on those elements. You can set these to specific values by using the Properties window, or you can query the integrated development environment (IDE) for system values. We recommend that you use system values when you want your extensions to resemble the rest of the IDE.

Windows Forms UI and native-code UI are still supported for backward compatibility. For information about how to set colors and gradients in non-WPF extensions, see the Visual Studio 2008 documentation.

Setting Colors, Gradients, and Opacity

You can set change the appearance of most XAML elements by setting their Background, Foreground, Opacity, or other visual attributes. These attributes correspond to properties that take a System.Windows.Media.Brush as a value.

To set background colors, gradients, and opacity in a tool window

  1. Open MyControl.xaml.

  2. In the XAML pane, in the top level UserControl element, type background=.

    IntelliSense displays a list of colors for the BackGround attribute.

    Select a color from the list.

  3. In the Properties window, expand the Brushes node, and then click Background.

    The Properties window displays a color picker. Above the color picker is a row of icons that represent brushes.

  4. Use the sliders to pick a color.

    The XAML immediately updates to show the new background color.

  5. Click the Gradient Brush icon.

    The color picker changes to a gradient picker.

  6. Use the sliders to pick a gradient.

    The XAML immediately updates to show the new background gradient.

  7. Click the Image Brush icon.

    The gradient picker changes to an image selection tool.

  8. Select an image and set its stretch and tile parameters.

    The XAML immediately updates to show the new background image.

  9. Click the Null Brush icon.

    The background in the designer returns to neutral, and the BackGround attribute is set to "{x:Null}".

Querying System Values

You can query system values by using the Microsoft.VisualStudio.Shell.VsBrushes class properties, which refer to brushes that are set in other parts of Visual Studio.

To set colors, gradients, and opacity by querying system values

  1. Select a XAML element.

  2. In the element definition, set one of the visual attributes of the element to a property of the VsBrushes class, as shown in the following example.

    <TextBlock Margin="10" HorizontalAlignment="Center" Foreground="{DynamicResource {x:Static vsfx:VsBrushes.ToolWindowTextKey}}">This is a toolwindow with WPF content</TextBlock>
    

    Using the DynamicResource extension enables the value to change as required, for example, when a user changes the settings. You must use the x:Static extension because the VsBrushes class is not part of the default WPF namespace.

See Also

Concepts

Painting with Solid Colors and Gradients Overview

Other Resources

User Interfaces

Tool Windows