UserLookAndFeel.Default.SetSkinStyle 包含哪些皮肤

//有下面这些主题可以选择(具体可以看dev的Demon里) //"|DevExpress Style|Caramel|Money Twins|DevExpress Dark Style|            //iMaginary|Lilian|Black|Blue|Office 2010 Blue|Office 2010 Black|Office 2010 Silver|            //Office 2007 Blue|Office 2007 Black|Officmetre 2007 Silver|Office 2007 Green|Office 2007 Pink|            //Seven|Seven Classic|Darkroom|McSkin|Sharp|Sharp Plus|Foggy|Dark Side|Xmas (Blue)|            //Springtime|Summer|Pumpkin|Valentine|Stardust|Coffee|Glass Oceans|High Contrast|Liquid Sky|London Liquid Sky|The Asphalt World|Blueprint|"
时间: 2024-10-19 04:16:08

UserLookAndFeel.Default.SetSkinStyle 包含哪些皮肤的相关文章

DevExpress 窗体换肤

本文参考引用:http://www.cnblogs.com/dreamflycc/archive/2012/09/14/2685308.html 注意,如果控件已汉化,与上面参考的略有不同 1.添加引用: 2.在ribbonPageGroup下新建个ribbonGalleryBarItem,并添加GalleryItemClick 事件:ribbonGalleryBarItem1_GalleryItemClick:    3.在应用程序的主入口里添加: static class Program {

Devexpress -换皮肤

一.在项目下新建RibbonForm  命名为:useSkin 二.添加引用DevExpress.OfficeSkins      DevExpress.UserSkins.BonusSkins 三.将ribbonPage1的Text属性设置为:皮肤 ribbonPageGroup1的Text属性设置为:更换皮肤 在ribbonPageGroup1下新建个ribbonGalleryBarItem1,将其Caption的属性设置为:请选择您喜欢的皮肤,并添GalleryItemClick    事

使用xml文件保存DevExpress皮肤选择

上篇随笔中写了如何使用DevExpress的皮肤控件,选择一个皮肤之后,如果不保存在本地,下次打开程序还需要重新选择,选择皮肤也就没有意义了,于是想到使用xml文件方式保存皮肤,代码如下: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text;

C#------EntityFramework实体加载数据库

一.SQLServer数据库创建表Company,包含ID,CName,IsEnabled三列 二.(1)VS新建一个DXApplication工程,名为CompanyManageSystem (2)在工程下,右键点击“引用” -> "管理NuGet程序包" -> "浏览" -> 找到"EntityFramework" -> 点击“安装” (3)新建一个类PSContext.cs namespace CompanyMana

Dev技巧

1.TextEditor(barEditItem) 取文本 string editValue = barEditItem1.EditValue.ToString(); // 错误,返回 null string editValue = ((DevExpress.XtraEditors.TextEdit)barEditItem).EditValue.ToString(); // 精确, 返回文本框内容 DevExpress 使用技巧 2.ComboBoxEdit(barEditItem) 添加 It

使用DevExpress实现界面换肤功能

最近要用到devExpress,一句话,很好很强大,比起vs自带的winform界面,种类和花样要多了不少,然而,强力的功能带来了庞大的信息量,所以我打算通过一些小模块来和大家一起对它进行探讨和研究. 今天先研究一下他的换肤功能.在控件中,其默认提供了18中风格让我们选择,如下图: 下面就看看怎么实现让界面切换到选中风格的功能.先建立一个项目,引入一个button和一个grid如下图: 由于在devExpress.skins.skinManager.Default.Skins中只有13中皮肤所以

DEV常用设置

1.TextEditor(barEditItem)取文本 string editValue = barEditItem1.EditValue.ToString(); //错误,返回null string editValue = ((DevExpress.XtraEditors.TextEdit)barEditItem).EditValue.ToString(); //正确,返回文本框内容 2.ComboBoxEdit(barEditItem)添加Item string item = "combo

DevExpress z

1.TextEditor(barEditItem)取文本 string editValue = barEditItem1.EditValue.ToString();    //错误,返回null string editValue = ((DevExpress.XtraEditors.TextEdit)barEditItem).EditValue.ToString();    //精确,返回文本框内容 DevExpress使用技巧2.ComboBoxEdit(barEditItem)添加Item

DevExpress 控件使用技巧

DevExpress是非常主流的.NET控件,眼下全世界和中国都用非常多用户使用,只是因为是英文版,初次接触的同学可能会认为困难.这里就总结DevExpress常见的10个使用技巧. 1.TextEditor(barEditItem)取文本  string editValue = barEditItem1.EditValue.ToString();    //错误,返回null string editValue = ((DevExpress.XtraEditors.TextEdit)barEdi