2.對滾動事件做出響應,在WndProc方法中加入如下處理代碼:
if (Msg.Msg=WM_VSCROLL) and
(Msg.WParamLo=SB_ENDSCROLL) then
begin
//獲得鼠標位置對應的列
ItemIndex:=ItemAtPos(Point,true);
Form1.Edit1.Text:=inttostr(ItemIndex);
inherited;
end
else
inherited;
當程序接收到WM_VSCROLL消息,且WParamLo參數為SB_ENDSCROLL時,表示豎 直滾動條停止滾動,就可以用ItemAtPos方法確定與鼠標位置對應的ItemIndex。 ItemAtPos方法的Point參數是一個TPoint類型的變量,用來保存鼠標的位置。
3.定義方法ListBoxMouseMove,在鼠標移動時,將當前位置保存在Point中:
procedure TForm1.ListBoxMouseMove(Sender:
TObject; Shift: TShiftState; X,Y: Integer);
begin
Point.X:=X;
Point.Y:=Y;
end;
4.在運行期創建和初始化列表框,並指定列表框的MouseMove事件對應上一步 定義的ListBoxMouseMove方法。在主窗體的Create事件中輸入下面的代碼:
begin
Point.X:=0;
Point.Y:=0;
//創建自定義列表框
List:=TMyListBox.Create(Form1);
List.Parent:=Form1;
List.Left:=5;
List.Top:=30;
List.Width:=150;
List.Height:=200;
for i:=0 to 300 do
begin
List.Items.Add(inttostr(i)); //初始化
end;
//指定處理MouseMove事件的方法
List.OnMouseMove := ListBoxMouseMove;
end;