> For the complete documentation index, see [llms.txt](https://docs.iceteagroup.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.iceteagroup.com/general/framework/skins-and-themes/skin-files.md).

# 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.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.iceteagroup.com/general/framework/skins-and-themes/skin-files.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
