# Skin Files

{% hint style="info" %}
Applies only to PPJ WinForms.
{% endhint %}

The included skin files are available in the /Skins folder in the PPJ Framework installation. We provide skins for Office2007, Aero, Mac OSX and Vista. Each skin has several color scheme variations.

**Additional skins can be downloaded from our web sites in the customers' support area in the resources section.**

The three Office 2007 skins (blue, silver and black) are embedded in the PPJ Framework because we need them to synchronize the forms skinning with the Ribbon Bar visual styles.

![clip 0009](https://iceteagroup.com/docs/media/clip0009.png)![clip 0010](https://iceteagroup.com/docs/media/clip0010.png)![clip 0011](https://iceteagroup.com/docs/media/clip0011.png)

In addition to the skins provided, you can use any of the thousands of .msstyles files freely available on the internet and can also create your own.

Starting from PPJ 2014, Office 2010 (blue) skin was added.

{% hint style="info" %}
The .msstyles format is Windows standard styles files format. With Visual Styles you can import any skin from any product that generates Windows standard skins.
{% endhint %}

By default, when skinning is turned on, the skinning engine will use the built-in Office 2007 (Blue) skin. You can change the skin by calling:

```csharp
SalApplication.LoadSkinFile(filePath);
```

To load the built-in Office 2007 styles you can simply use:

```csharp
SalApplication.LoadSkinResource("Office2007Blue");
```

When using *SalApplication.LoadSkin*() methods the skinner is automatically enabled. There is no need to also use SalApplication.SkinApplication = true.

## Import Windows XP Styles

You can import and convert most .msstyles files into .vssf files by using the *ShowStyleImportDialog* method directly on the *VisualStyler* object. See Visual Styler help for details on how to use this call.

<div align="left"><figure><img src="https://iceteagroup.com/docs/media/embim19.png" alt=""><figcaption></figcaption></figure></div>

Using the import dialog (shown in the image above) allows you to easily import and preview msstyles files as well as VisualStyler skins into your applications skins directory and resources.
