Forum Replies Created
-
AuthorPosts
-
SupportKeymaster
Hello Ralph, thanks for using AlphaControls. And thanks for gift, maybe it will be useful for someone.
SupportKeymasterPeople are lazy when haven't a problems <img src="style_emoticons//tongue.gif” style=”vertical-align:middle” emoid=”:P” border=”0″ alt=”tongue.gif” />
SupportKeymasterHello
I can't reproduce a problem <img src="style_emoticons//unsure.gif” style=”vertical-align:middle” emoid=”:???:” border=”0″ alt=”unsure.gif” />
Could you give a little example?
Thanks in advance.April 8, 2009 at 1:44 pm in reply to: problem when scaling a frame using more than one groupbox #38568SupportKeymasterHello and thank you for demo-program.
Problem will be resolved in the nearest release, I think, please wait.SupportKeymasterHello
I will try to research and solve this problem soon, please wait.
SupportKeymasterHello
I will try to research and solve this problem soon, please wait.
SupportKeymasterOk, I understand now, maybe such property will be added soon <img src="style_emoticons//smile.gif” style=”vertical-align:middle” emoid=”:)” border=”0″ alt=”smile.gif” />
SupportKeymasterHello
No, it's not possible with alpha skins at moment, I'm sorry.
SupportKeymasterApril 3, 2009 at 8:45 am in reply to: Неверная отрисовка фона TComboBox (VCL standard), создаваемых в runtime #38547SupportKeymasterСпасибо за пример, скоро этой проблемы не будет
SupportKeymasterПопробовал – не получается. Можно все-таки демку? <img src="style_emoticons//smile.gif” style=”vertical-align:middle” emoid=”:)” border=”0″ alt=”smile.gif” />
SupportKeymasterСкоро буду смотреть )
SupportKeymasterВ след. версии ошибки не будет.
Версия 6.22 еще не вышла, может речь идет о 6.21?SupportKeymasterСпасибо за демку. Можно еще на вторую форму положить SkinProvider, тогда тоже не будет этой проблемы.
SupportKeymasterSupportKeymasterЕсть такое, трудно исправить, надеюсь что решение найдется в ближайшее время <img src="style_emoticons//smile.gif” style=”vertical-align:middle” emoid=”:)” border=”0″ alt=”smile.gif” />
SupportKeymasterСкоро можно будет.
SupportKeymasterПроблема в том, что эти контролы не предназначены для нормальной работы с 32битными иконками (стандартные ведут себя так же). Проще всего будет наверное сделать свою обработку события OnCustomDrawItem. Примерный код для ListView :
CODEprocedure TForm1.sListView1CustomDrawItem(Sender: TCustomListView; Item: TListItem; State: TCustomDrawState; var DefaultDraw: Boolean);
var
R : TRect;
begin
R := Item.DisplayRect(drBounds);
Sender.Canvas.FillRect(R);
R := Item.DisplayRect(drIcon);
PngImageList1.Draw(Sender.Canvas, R.Left, R.Top, Item.ImageIndex, True);
R := Item.DisplayRect(drLabel);
Sender.Canvas.TextOut(R.Left, R.Top, Item.Caption);
DefaultDraw := False;
end;SupportKeymasterМожно демку? Как я ни тестил, не получается такое сделать <img src="style_emoticons//blush.gif” style=”vertical-align:middle” emoid=”:blush:” border=”0″ alt=”blush.gif” />
AuthorPosts