Stylus.DirectlyOver 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得在手寫筆正下方的項目。
public:
static property System::Windows::IInputElement ^ DirectlyOver { System::Windows::IInputElement ^ get(); };
public static System.Windows.IInputElement DirectlyOver { get; }
static member DirectlyOver : System.Windows.IInputElement
Public Shared ReadOnly Property DirectlyOver As IInputElement
屬性值
在手寫筆正下方的 IInputElement。
範例
下列範例示範如何判斷手寫筆位於哪個元素上。 這個範例假設有呼叫 TextBoxtextBox1
的 ,而且 StylusInAirMove 事件已連接到事件處理程式。
void Window1_StylusInAirMove(object sender, StylusEventArgs e)
{
textbox1.AppendText(Stylus.DirectlyOver.ToString() + "\n");
}
Private Sub Window1_StylusInAirMove(ByVal sender As Object, ByVal e As StylusEventArgs) _
Handles Me.StylusInAirMove
Dim element As Object
element = CType(Stylus.DirectlyOver, Object)
textbox1.AppendText(element.ToString() & vbLf)
End Sub