File: System\Windows\Input\Stylus\Common\RawStylusInputCustomDataList.cs
Web Access
Project: src\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.
// See the LICENSE file in the project root for more information.
 
 
using System;
using System.Windows;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Windows.Threading;
 
using SR=MS.Internal.PresentationCore.SR;
 
namespace System.Windows.Input.StylusPlugIns
{
    /// <summary>
    /// Collection of RawStylusInputCustomData objects
    /// </summary>
    internal class RawStylusInputCustomDataList : Collection<RawStylusInputCustomData>
    {
        //------------------------------------------------------
        //
        //  Constructors
        //
        //------------------------------------------------------
        
        /// <summary> Constructor </summary>
        internal RawStylusInputCustomDataList()
        {
        }
    }
}