Forum Replies Created
-
AuthorPosts
-
Насколько я понимаю, используется OnAdvancedHeaderDraw для отрисовки. В определение Flags для вывода текста можно добавить что-то вроде:
Code:var
…
CaptionAlignment: string;
begin
…
CaptionAlignment := GetEnumProp(PaintInfo.Column, 'CaptionAlignment');
if CaptionAlignment = 'taLeftJustify' then
Flags := Flags + DT_LEFT
else if CaptionAlignment = 'taRightJustify' then
Flags := Flags + DT_RIGHT
else if CaptionAlignment = 'taCenter' then
Flags := Flags + DT_CENTERHave you selected style csOwnerDrawFixed or csOwnerDrawVariable? I am using TsComboBox in some projects and with almost all 10.* AC versions and don't have this problem.
TsHintManager is deprecated in 10.x version. You can see it in changelog:
Quote:24.02.2015 AlphaControls v10.00 Beta released…
* Removed TsHintManager deprecated component
Cannot try 9.20 now, but with last 10.05 beta your code works fine for me. In both TListView and TsListView groups are showing with enabled/disabled skins. Maybe you can try it?
In 10.03 version issue is solved.
Upgraded to 9.20 today, problem still exists. In XE5 can't open “Action List editor” in designtime if TsAlphaImageList is assigned to ActionList.Images.
Seems like problem is in PNGComponents inside AlphaSkins. Here the same problem is solved by updating components.
-
AuthorPosts