Как получить список скинов (DevExpress skins) и загрузить их (скины) в Combobox
Как получить список скинов (DevExpress skins) и загрузить их (скины) в TcxComboboxProperties
http://www.sql.ru/forum/actualutils.aspx?action=gotomsg&tid=542538&msg=12170122
uses LookAndFeelPainters; ...procedure GetSkins(comboSkins: TcxCombobox);Var PaintersManager : TcxCustomLookAndFeelPainter; i: integer;begin//загружаем список скинов comboSkins.Properties.Items.Clear; comboSkins.Properties.Items.Add('');//пустую строку тоже нужно добавить, чтобы пользоватtль мог отменять выбор скинаfor i := 0 to Pred(cxLookAndFeelPaintersManager.Count) do comboSkins.Properties.Items.Add(cxLookAndFeelPaintersManager.Items[i].LookAndFeelName);end;
Как получить список скинов (DevExpress skins) и загрузить их (скины) в TcxComboboxProperties
http://www.sql.ru/forum/actualutils.aspx?action=gotomsg&tid=542538&msg=12170122
uses LookAndFeelPainters; ...Var PaintersManager : TcxCustomLookAndFeelPainter; i: integer;begin//загружаем список скинов TcxComboBoxProperties(comboSkins.Properties).Items.Clear; TcxComboBoxProperties(comboSkins.Properties).Items.Add('');//пустую строку тоже нужно добавить, чтобы пользоватtль мог отменять выбор скинаfor i := 0 to Pred( cxLookAndFeelPaintersManager.Count ) do TcxComboBoxProperties(comboSkins.Properties).Items.Add(cxLookAndFeelPaintersManager.Items[i].LookAndFeelName);