InkCanvas.Strokes プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
public:
property System::Windows::Ink::StrokeCollection ^ Strokes { System::Windows::Ink::StrokeCollection ^ get(); void set(System::Windows::Ink::StrokeCollection ^ value); };
public System.Windows.Ink.StrokeCollection Strokes { get; set; }
member this.Strokes : System.Windows.Ink.StrokeCollection with get, set
Public Property Strokes As StrokeCollection
プロパティ値
Stroke 内にある InkCanvas オブジェクトのコレクション。
例
次の例では、同じInkCanvasオブジェクトに対して 2 つのStrokeCollectionオブジェクトを使用する方法を示します。 この例では、プレイヤー 1 とプレイヤー 2 は、それぞれが同じ InkCanvasを共有していても、個々の "インクサーフェス" を使用します。 この例では、click イベントがイベント ハンドラー switchPlayersButton_Click
に接続されていることを前提としています。
StrokeCollection player1;
StrokeCollection player2;
void InitializePlayersCanvases()
{
player1 = inkCanvas1.Strokes;
player2 = new StrokeCollection();
}
// Use a different "inking surface" for each player.
void switchPlayersButton_Click(object sender, RoutedEventArgs e)
{
if (StrokeCollection.ReferenceEquals(inkCanvas1.Strokes, player1))
{
inkCanvas1.Strokes = player2;
}
else
{
inkCanvas1.Strokes = player1;
}
}
void inkCanvas1_StrokesReplaced(object sender, InkCanvasStrokesReplacedEventArgs e)
{
if (StrokeCollection.ReferenceEquals(e.NewStrokes, player1))
{
Title = "Player one's turn";
}
else
{
Title = "Player two's turn";
}
}
Private player1 As StrokeCollection
Private player2 As StrokeCollection
Sub InitializePlayersCanvases()
player1 = inkCanvas1.Strokes
player2 = New StrokeCollection()
End Sub
' Use a different "inking surface" for each player.
Private Sub switchPlayersButton_Click(ByVal sender As Object, ByVal e As RoutedEventArgs)
If StrokeCollection.ReferenceEquals(inkCanvas1.Strokes, player1) Then
inkCanvas1.Strokes = player2
Else
inkCanvas1.Strokes = player1
End If
End Sub
Private Sub inkCanvas1_StrokesReplaced(ByVal sender As Object, _
ByVal e As InkCanvasStrokesReplacedEventArgs)
If StrokeCollection.ReferenceEquals(e.NewStrokes, player1) Then
Title = "Player one's turn"
Else
Title = "Player two's turn"
End If
End Sub
次の例は、InkCanvas の Strokes プロパティを別の InkCanvas にバインドする方法を示しています。
<InkCanvas Background="LightGray"
Canvas.Top="0" Canvas.Left="0"
Height="400" Width="200" Name="ic"/>
<!-- Bind the Strokes of the second InkCavas to the first InkCanvas
and mirror the strokes along the Y axis.-->
<InkCanvas Background="LightBlue"
Canvas.Top="0" Canvas.Left="200"
Height="400" Width="200"
Strokes="{Binding ElementName=ic, Path=Strokes}">
<InkCanvas.LayoutTransform>
<ScaleTransform ScaleX="-1" ScaleY="1" />
</InkCanvas.LayoutTransform>
</InkCanvas>
注釈
依存プロパティ情報
識別子フィールド | StrokesProperty |
メタデータのプロパティが次に設定されている true |
なし |