Can I apply Devexpress Skin to a Visual Studio form, C #?

1

You can put the Devexpress Skin change option on a visual studio form, it's something like that

    
asked by avargasma 03.04.2016 в 03:50
source

2 answers

1

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.

    
answered by 04.04.2016 в 05:45
1

I have already found it, when loading the Skins I must put:

DevExpress.UserSkins.BonusSkins.Register();
    
answered by 04.04.2016 в 21:21