| File: System\Windows\Input\Stylus\Common\RawStylusInputCustomDataList.cs | Web Access |
| Project: src\wpf\src\Microsoft.DotNet.Wpf\src\PresentationCore\PresentationCore.csproj (PresentationCore) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Collections.ObjectModel; namespace System.Windows.Input.StylusPlugIns { /// <summary> /// Collection of RawStylusInputCustomData objects /// </summary> internal class RawStylusInputCustomDataList : Collection<RawStylusInputCustomData> { //------------------------------------------------------ // // Constructors // //------------------------------------------------------ /// <summary> Constructor </summary> internal RawStylusInputCustomDataList() { } } }