Этот баннер — требование Роскомнадзора для исполнения 152 ФЗ.
«На сайте осуществляется обработка файлов cookie, необходимых для работы сайта, а также для анализа использования сайта и улучшения предоставляемых сервисов с использованием метрической программы Яндекс.Метрика. Продолжая использовать сайт, вы даёте согласие с использованием данных технологий».
Политика конфиденциальности

Новые сообщения [новые:0]
Дайджест
Горячие темы
Избранное [новые:0]
Форумы
Пользователи
Статистика
Статистика нагрузки
Мод. лог
Поиск
|
|
18.03.2003, 11:13
|
|||
|---|---|---|---|
|
|||
Проблема с создоваемым компонентом |
|||
|
#18+
Создается компонент SpeedButton со свойствами ImageList и ImageIndex для связи с компонентом ImageList. На стадии проектирования все работает, а после компиляции на всех SpeedButton отображается один и тот же Image. Просьба помочь!!! unit SpeedButtonImage; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, Buttons, ImgList; type TSpeedButtonImage = class(TSpeedButton) private FImageList:TCustomImageList; FImageIndex:Integer; protected procedure Paint; override; public procedure SetImageIndex(Value:Integer); published property ImageList:TCustomImageList read FImageList write FImageList; property ImageIndex:Integer read FImageIndex write SetImageIndex; end; procedure Register; implementation procedure Register; begin RegisterComponents('Samples', [TSpeedButtonImage]); end; { TSpeedButtonImage } procedure TSpeedButtonImage.Paint; begin inherited; if Assigned(FImageList) then if (FImageIndex in [0..Pred(FImageList.Count)]) then begin if not Enabled then begin FImageList.Draw(Canvas,Round(FImageList.Width/2),Round(Height/2-FImageList.Height/2),FImageIndex,False) end else FImageList.Draw(Canvas,Round(FImageList.Width/2),Round(Height/2-FImageList.Height/2),FImageIndex,True); end; end; procedure TSpeedButtonImage.SetImageIndex(Value: Integer); begin if Assigned(FImageList) then if (Value in [0..Pred(FImageList.Count)]) then begin FImageIndex:=Value; Paint; end; end; end. ... |
|||
|
:
Нравится:
Не нравится:
|
|||
|
|
|

start [/forum/topic.php?fid=58&tablet=1&tid=2118887]: |
0ms |
get settings: |
5ms |
get forum list: |
14ms |
check forum access: |
2ms |
check topic access: |
2ms |
track hit: |
38ms |
get topic data: |
9ms |
get forum data: |
2ms |
get page messages: |
30ms |
get tp. blocked users: |
1ms |
| others: | 215ms |
| total: | 318ms |

| 0 / 0 |
