All the controls missing in WPF. Over 1 million downloads.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
765 B

// (c) Copyright Microsoft Corporation.
// This source is subject to the Microsoft Public License (Ms-PL).
// Please see http://go.microsoft.com/fwlink/?LinkID=131993 for details.
// All other rights reserved.
using System.Collections.ObjectModel;
namespace System.Windows.Controls.DataVisualization
{
/// <summary>
/// Represents a collection of ResourceDictionary objects.
/// </summary>
/// <QualityBand>Preview</QualityBand>
public partial class ResourceDictionaryCollection : Collection<ResourceDictionary>
{
/// <summary>
/// Initializes a new instance of the ResourceDictionaryCollection class.
/// </summary>
public ResourceDictionaryCollection()
{
}
}
}