ListItemParagraph.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Framework / MS / Internal / PtsHost / ListItemParagraph.cs / 1 / ListItemParagraph.cs

                            //---------------------------------------------------------------------------- 
//
// Copyright (C) Microsoft Corporation.  All rights reserved.
//
// File: ListItemParagraph.cs 
//
// Description: ListItemParagraph represents a single list item. 
// 
// History:
//  06/01/2004 : grzegorz - moving from Avalon branch. 
//
//---------------------------------------------------------------------------

using System; 
using System.Windows;
using System.Windows.Documents; 
using MS.Internal.Text; 

namespace MS.Internal.PtsHost 
{

    /// 
    /// ListItemParagraph represents a single list item. 
    /// 
    internal sealed class ListItemParagraph : ContainerParagraph 
    { 
        /// 
        /// Constructor 
        /// 
        /// 
        /// Element associated with paragraph.
        ///  
        /// 
        /// Content's structural cache 
        ///  
        internal ListItemParagraph(DependencyObject element, StructuralCache structuralCache)
            : base(element, structuralCache) 
        {
        }
    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
//---------------------------------------------------------------------------- 
//
// Copyright (C) Microsoft Corporation.  All rights reserved.
//
// File: ListItemParagraph.cs 
//
// Description: ListItemParagraph represents a single list item. 
// 
// History:
//  06/01/2004 : grzegorz - moving from Avalon branch. 
//
//---------------------------------------------------------------------------

using System; 
using System.Windows;
using System.Windows.Documents; 
using MS.Internal.Text; 

namespace MS.Internal.PtsHost 
{

    /// 
    /// ListItemParagraph represents a single list item. 
    /// 
    internal sealed class ListItemParagraph : ContainerParagraph 
    { 
        /// 
        /// Constructor 
        /// 
        /// 
        /// Element associated with paragraph.
        ///  
        /// 
        /// Content's structural cache 
        ///  
        internal ListItemParagraph(DependencyObject element, StructuralCache structuralCache)
            : base(element, structuralCache) 
        {
        }
    }
} 

// 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