Shape.MouseWheel イベント
マウス ホイールを移動し、図形にフォーカスがある場合に発生します。
名前空間: Microsoft.VisualBasic.PowerPacks
アセンブリ: Microsoft.VisualBasic.PowerPacks.Vs (Microsoft.VisualBasic.PowerPacks.Vs.dll 内)
構文
'宣言
<BrowsableAttribute(True)> _
Public Event MouseWheel As MouseEventHandler
[BrowsableAttribute(true)]
public event MouseEventHandler MouseWheel
[BrowsableAttribute(true)]
public:
event MouseEventHandler^ MouseWheel {
void add (MouseEventHandler^ value);
void remove (MouseEventHandler^ value);
}
[<BrowsableAttribute(true)>]
member MouseWheel : IEvent<MouseEventHandler,
MouseEventArgs>
JScript では、イベントは使用できません。
解説
MouseWheel のイベントを処理する場合、マウス ホイールに関連付けられ (UI) ているユーザー インターフェイスの標準に準拠する必要があります。Delta プロパティ値は、マウス ホイールの移動量を示します。UI は、累積デルタがプラスまたはマイナス 120 のときにスクロールする必要があります。UI は、到達するすべてのデルタ値について MouseWheelScrollLines プロパティによって返される論理行の数をスクロールする必要があります。または 120 より小さい単位のインクリメント使用して滑らかにスクロールできます。ただし、比率は上がっている、ホイールの移動の 120 匹のデルタ単位ごとにスクロールされます。つまり、行の MouseWheelScrollLines 維持する必要があります。
マウス イベントは次の順序で発生します。
MouseHover / MouseDown / MouseWheel
イベントの処理方法の詳細については、「イベントの利用」を参照してください。
例
次の例に RectangleShape のコントロールをスクロールするために MouseWheel のイベントを使用する方法を示します。この例では、フォームの RectangleShape1 という名前の RectangleShape のコントロールがあることが必要です。
Private Sub RectangleShape1_MouseWheel(
ByVal sender As Object,
ByVal e As System.Windows.Forms.MouseEventArgs
) Handles RectangleShape1.MouseWheel
' Move the shape vertically to correspond to the scrolling of the
' mouse wheel.
Dim scale As Integer = e.Delta *
SystemInformation.MouseWheelScrollLines / 120
RectangleShape1.Top = RectangleShape1.Top - scale
End Sub
private void rectangleShape1_MouseWheel(object sender,
System.Windows.Forms.MouseEventArgs e)
{
// Move the shape vertically to correspond to the scrolling of the
// mouse wheel.
int scale = e.Delta * SystemInformation.MouseWheelScrollLines / 120;
rectangleShape1.Top = rectangleShape1.Top - scale;
}
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。
参照
関連項目
Microsoft.VisualBasic.PowerPacks 名前空間
その他の技術情報
方法 : LineShape コントロールを使用して線を描画する (Visual Studio)
方法 : OvalShape コントロールおよび RectangleShape コントロールを使用して図形を描画する (Visual Studio)