StrokeCollection コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
StrokeCollection クラスの新しいインスタンスを初期化します。
オーバーロード
StrokeCollection() |
StrokeCollection クラスの新しいインスタンスを初期化します。 |
StrokeCollection(IEnumerable<Stroke>) |
指定したストロークを格納する、StrokeCollection クラスの新しいインスタンスを初期化します。 |
StrokeCollection(Stream) |
指定した ISF (Ink Serialized Format) の StrokeCollection から Stream を初期化します。 |
StrokeCollection()
StrokeCollection クラスの新しいインスタンスを初期化します。
public:
StrokeCollection();
public StrokeCollection ();
Public Sub New ()
適用対象
StrokeCollection(IEnumerable<Stroke>)
指定したストロークを格納する、StrokeCollection クラスの新しいインスタンスを初期化します。
public:
StrokeCollection(System::Collections::Generic::IEnumerable<System::Windows::Ink::Stroke ^> ^ strokes);
public StrokeCollection (System.Collections.Generic.IEnumerable<System.Windows.Ink.Stroke> strokes);
new System.Windows.Ink.StrokeCollection : seq<System.Windows.Ink.Stroke> -> System.Windows.Ink.StrokeCollection
Public Sub New (strokes As IEnumerable(Of Stroke))
パラメーター
- strokes
- IEnumerable<Stroke>
StrokeCollection に追加するストローク。
適用対象
StrokeCollection(Stream)
指定した ISF (Ink Serialized Format) の StrokeCollection から Stream を初期化します。
public:
StrokeCollection(System::IO::Stream ^ stream);
public StrokeCollection (System.IO.Stream stream);
new System.Windows.Ink.StrokeCollection : System.IO.Stream -> System.Windows.Ink.StrokeCollection
Public Sub New (stream As Stream)
パラメーター
- stream
- Stream
インク データを格納するストリーム。
例
次の例では、 を保存して読み込む方法を StrokeCollection示します。 この例では、 と呼ばれる inkCanvas1
があることをInkCanvas前提としています。
private void SaveStrokes_Click(object sender, RoutedEventArgs e)
{
FileStream fs = null;
try
{
fs = new FileStream(inkFileName, FileMode.Create);
inkCanvas1.Strokes.Save(fs);
}
finally
{
if (fs != null)
{
fs.Close();
}
}
}
Private Sub SaveStrokes_Click(ByVal sender As Object, ByVal e As RoutedEventArgs)
Dim fs As FileStream = Nothing
Try
fs = New FileStream(inkFileName, FileMode.Create)
inkCanvas1.Strokes.Save(fs)
Finally
If Not fs Is Nothing Then
fs.Close()
End If
End Try
End Sub
private void LoadStrokes_Click(object sender, RoutedEventArgs e)
{
FileStream fs = null;
if (!File.Exists(inkFileName))
{
MessageBox.Show("The file you requested does not exist." +
" Save the StrokeCollection before loading it.");
return;
}
try
{
fs = new FileStream(inkFileName,
FileMode.Open, FileAccess.Read);
StrokeCollection strokes = new StrokeCollection(fs);
inkCanvas1.Strokes = strokes;
}
finally
{
if (fs != null)
{
fs.Close();
}
}
}
Private Sub LoadStrokes_Click(ByVal sender As Object, ByVal e As RoutedEventArgs)
Dim fs As FileStream = Nothing
If Not File.Exists(inkFileName) Then
MessageBox.Show("The file you requested does not exist." & _
" Save the StrokeCollection before loading it.")
Return
End If
Try
fs = New FileStream(inkFileName, _
FileMode.Open, FileAccess.Read)
Dim strokes As StrokeCollection = New StrokeCollection(fs)
inkCanvas1.Strokes = strokes
Finally
If Not fs Is Nothing Then
fs.Close()
End If
End Try
End Sub
適用対象
.NET