Главная страница
Top.Mail.Ru    Яндекс.Метрика
Текущий архив: 2006.03.19;
Скачать: CL | DM;

Вниз

Смена цвета кнопки при наведении курсора...   Найти похожие ветки 

 
VitV ©   (2006-02-27 14:13) [0]

Не подскажете как сменять рисунок кнопки(SpeedButton)при наведении на неё курсора.


 
Ega23 ©   (2006-02-27 14:22) [1]

Я бы в Application.OnIdle проверял позицию курсора, и если он над кнопкой, то ...


 
Dmitrij_K   (2006-02-27 14:24) [2]

Вот компонент
OnMouseEnter - наведение курсора
OnMouseLeave - курсор ушел (пить пиво Ж))

unit ExtSpeedButton;

interface

uses
 Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
 StdCtrls, Buttons;

type
 TExtSpeedButton = class(TSpeedButton)
 private
   { Private declarations }
   FOnMouseLeave: TNotifyEvent;
   FOnMouseEnter: TNotifyEvent;
   procedure CMMouseEnter(var Message: TMessage); message CM_MOUSEENTER;
   procedure CMMouseLeave(var Message: TMessage); message CM_MOUSELEAVE;
 protected
   { Protected declarations }
 public
   { Public declarations }
 published
   { Published declarations }
   property OnMouseLeave: TNotifyEvent read FOnMouseLeave write FOnMouseLeave;
   property OnMouseEnter: TNotifyEvent read FOnMouseEnter write FOnMouseEnter;
 end;

procedure Register;

implementation

procedure Register;
begin
 RegisterComponents("ExtControl", [TExtSpeedButton]);
end;

{ TExtSpeedButton }

procedure TExtSpeedButton.CMMouseEnter(var Message: TMessage);
begin
 if Assigned(FOnMouseEnter) then
   FOnMouseEnter(Self);
end;

procedure TExtSpeedButton.CMMouseLeave(var Message: TMessage);
begin
 if Assigned(FOnMouseLeave) then
   FOnMouseLeave(Self);
end;

end.



 
КаПиБаРа ©   (2006-02-27 14:26) [3]

http://www.yandex.ru/yandsearch?text=CM_MouseEnter&stype=www


 
VitV ©   (2006-02-27 18:21) [4]

Большое спасибо за помощь.



Страницы: 1 вся ветка

Текущий архив: 2006.03.19;
Скачать: CL | DM;

Наверх




Память: 0.47 MB
Время: 0.045 c
3-1138617950
AMD Andron64
2006-01-30 13:45
2006.03.19
Установка FireBird с программой


15-1140631011
DSKalugin
2006-02-22 20:56
2006.03.19
Microsoft Internet Explorer вне закона, как обычно


3-1138268810
VitV
2006-01-26 12:46
2006.03.19
Access+Interbase


8-1128869883
Zur
2005-10-09 18:58
2006.03.19
TImage


2-1141472697
Saveliy
2006-03-04 14:44
2006.03.19
Где можно найти статейки про компоненты Tcpclient и Tcpserver ?