StylusPoint.Explicit(StylusPoint to Point) 運算子
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將指定的 StylusPoint 轉型為 Point。
public:
static explicit operator System::Windows::Point(System::Windows::Input::StylusPoint stylusPoint);
public static explicit operator System.Windows.Point (System.Windows.Input.StylusPoint stylusPoint);
static member op_Explicit : System.Windows.Input.StylusPoint -> System.Windows.Point
Public Shared Narrowing Operator CType (stylusPoint As StylusPoint) As Point
參數
- stylusPoint
- StylusPoint
要轉型為 StylusPoint 的 Point。
傳回
Point,包含與 stylusPoint
相同的 (x, y) 座標。
備註
下列範例示範如何將 轉換成 StylusPointPoint 物件,以在每個筆劃的開頭繪製圓形。 本範例假設有名為 InkCanvasinkcanvas1
的物件,而且 StylusDown 事件已連線至範例中的事件處理程式。
:::code language="csharp" source="~/snippets/csharp/System.Windows.Input/StylusDevice/GetStylusPoints/Window1.xaml.cs" id="Snippet13":::
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_Wpf/PacketSpy/VisualBasic/Window1.xaml.vb" id="Snippet13":::