|
// 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.
/*++
Abstract:
This file contains the definition and implementation
for the XpsColorContext class. This class inherits from
XpsResource and controls colorContext specific aspects of
a resource added to a fixed page.
--*/
using System;
using System.IO.Packaging;
using System.Windows.Media;
namespace System.Windows.Xps.Packaging
{
/// <summary>
///
/// </summary>
public class XpsColorContext : XpsResource
{
#region Constructors
internal
XpsColorContext(
XpsManager xpsManager,
INode parent,
PackagePart part
)
: base(xpsManager, parent, part)
{
}
#endregion Constructors
}
}
|