Behavior.OnLoseCapture(Glyph, EventArgs) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
裝飾項視窗在其遺失滑鼠捕捉 (Mouse Capture) 時呼叫。
public:
virtual void OnLoseCapture(System::Windows::Forms::Design::Behavior::Glyph ^ g, EventArgs ^ e);
public virtual void OnLoseCapture (System.Windows.Forms.Design.Behavior.Glyph g, EventArgs e);
public virtual void OnLoseCapture (System.Windows.Forms.Design.Behavior.Glyph? g, EventArgs e);
abstract member OnLoseCapture : System.Windows.Forms.Design.Behavior.Glyph * EventArgs -> unit
override this.OnLoseCapture : System.Windows.Forms.Design.Behavior.Glyph * EventArgs -> unit
Public Overridable Sub OnLoseCapture (g As Glyph, e As EventArgs)
參數
備註
行為可以透過行為服務要求滑鼠擷取,方法是使用 PushCaptureBehavior 方法將本身推送至行為堆棧。 如果這樣做,則會在擷取遺失時透過 OnLoseCapture 方法收到通知。 一般而言,行為目前會從堆疊中移除本身。 發生下列其中一個動作時,擷取會遺失:
其他人要求擷取。
推送另一個行為。
已移除此行為。
在這些情況下, OnLoseCapture 將會在行為上呼叫 。