Forum Replies Created
-
AuthorPosts
-
Support
KeymasterHello Ralph, thanks for using AlphaControls. And thanks for gift, maybe it will be useful for someone.
Support
KeymasterPeople are lazy when haven't a problems <img src="style_emoticons//tongue.gif” style=”vertical-align:middle” emoid=”:P” border=”0″ alt=”tongue.gif” />
Support
KeymasterHello
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 #38568Support
KeymasterHello and thank you for demo-program.
Problem will be resolved in the nearest release, I think, please wait.Support
KeymasterHello
I will try to research and solve this problem soon, please wait.
Support
KeymasterHello
I will try to research and solve this problem soon, please wait.
Support
KeymasterOk, 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” />
Support
KeymasterHello
No, it's not possible with alpha skins at moment, I'm sorry.
Support
KeymasterApril 3, 2009 at 8:45 am in reply to: Неверная отрисовка фона TComboBox (VCL standard), создаваемых в runtime #38547Support
KeymasterСпасибо за пример, скоро этой проблемы не будет
Support
KeymasterПопробовал – не получается. Можно все-таки демку? <img src="style_emoticons//smile.gif” style=”vertical-align:middle” emoid=”:)” border=”0″ alt=”smile.gif” />
Support
KeymasterСкоро буду смотреть )
Support
KeymasterВ след. версии ошибки не будет.
Версия 6.22 еще не вышла, может речь идет о 6.21?Support
KeymasterСпасибо за демку. Можно еще на вторую форму положить SkinProvider, тогда тоже не будет этой проблемы.
Support
KeymasterSupport
KeymasterЕсть такое, трудно исправить, надеюсь что решение найдется в ближайшее время <img src="style_emoticons//smile.gif” style=”vertical-align:middle” emoid=”:)” border=”0″ alt=”smile.gif” />
Support
KeymasterСкоро можно будет.
Support
KeymasterПроблема в том, что эти контролы не предназначены для нормальной работы с 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;Support
KeymasterМожно демку? Как я ни тестил, не получается такое сделать <img src="style_emoticons//blush.gif” style=”vertical-align:middle” emoid=”:blush:” border=”0″ alt=”blush.gif” />
AuthorPosts