1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| namespace TProduct.WinFrmUI.DataBase.设置
| {
| public partial class UserSkinSelectControl : DevExpress.XtraEditors.XtraUserControl
| {
| public UserSkinSelectControl()
| {
| InitializeComponent();
| skinPaletteDropDownButtonItem3.Caption = "窗体风格";
| }
|
| private void barbarBtnReset_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
| {
| DevExpress.LookAndFeel.UserLookAndFeel.Default.SetSkinStyle(TProduct.UserSetting.Setting.Skin.ThemeStyle, TProduct.UserSetting.Setting.Skin.Style);
| }
| }
| }
|
|