// -----------------------------------------------------------------------
//
// Copyright 2014 MIT Licence. See licence.md for more information.
//
// -----------------------------------------------------------------------
namespace Perspex.Styling
{
public class Styles : PerspexList, IStyle
{
public void Attach(IStyleable control)
{
foreach (IStyle style in this)
{
style.Attach(control);
}
}
}
}