TPanel と TAdvPanel (TMS コンポーネント) の左クリックにも問題があります。設定するDragMode = dmAutomatic
と、左クリックが機能しません。右クリックが機能します。
procedure TMain_Form.Panel_Item_01MouseDown(Sender: TObject; Button: TMouseButton; Shift: TShiftState; X, Y: Integer);
begin
if Button = mbLeft then
begin
{ whatever I type here nothing happen, even showmessage wont popup - no effect}
end;
if Button = mbRight then
begin
{ here code works fine }
end;
end;
私には簡単に思えますが...この問題を解決し、左ボタンのクリックで手順を呼び出す方法が見つかりません。みんな、何か考えはありますか?