You can put the Devexpress Skin change option on a visual studio form, it's something like that
Of course you can do it
How to: Populate a Menu and a Ribbon Gallery with Localized Skin Items
How to: Get a List of Available Skins
The first link explains how to list the skin on a ribbon
In the second tour through the enabled skin
foreach(SkinContainer cnt in SkinManager.Default.Skins) {
comboBoxEdit1.Properties.Items.Add(cnt.SkinName);
}
to load a list or combo.
I have already found it, when loading the Skins I must put:
DevExpress.UserSkins.BonusSkins.Register();