StylusButtonCollection.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Input / Stylus / StylusButtonCollection.cs / 1 / StylusButtonCollection.cs

                            //  
//    Copyright (C) Microsoft Corporation.  All rights reserved.
// 

using System; 
using System.Windows;
using System.Collections; 
using System.Collections.Generic; 
using System.Collections.ObjectModel;
using System.Windows.Media; 

using MS.Utility;
using MS.Internal;
using SR = MS.Internal.PresentationCore.SR; 
using SRID = MS.Internal.PresentationCore.SRID;
 
namespace System.Windows.Input 
{
    ///////////////////////////////////////////////////////////////////////// 
    /// 
    ///		Collection of the stylus devices that are available on the tablet.
    /// 
    public class StylusButtonCollection : ReadOnlyCollection 
    {
        ///////////////////////////////////////////////////////////////////// 
 
        internal StylusButtonCollection(StylusButton[] buttons)
            : base(new List(buttons)) 
        {
        }

        ///  
        /// Returns the first StylusButton in the collection with a Guid property
        /// that matches the specified guid.  Returns null if no matching StylusButton is found 
        ///  
        /// guid
        public StylusButton GetStylusButtonByGuid(Guid guid) 
        {
            for (int x = 0; x < this.Count; x++)
            {
                if (this[x].Guid == guid) 
                {
                    return this[x]; 
                } 
            }
            return null; 
        }
    }
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK