Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions src/Microsoft.Xaml.Behaviors/TriggerCollection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,17 @@
namespace Microsoft.Xaml.Behaviors
{
using System.Windows;
using System.ComponentModel;

///<summary>
/// Represents a collection of triggers with a shared AssociatedObject and provides change notifications to its contents when that AssociatedObject changes.
/// </summary>
/// <remarks>Sealed, because this should not be inherited outside this assembly.</remarks>
public sealed class TriggerCollection : AttachableCollection<TriggerBase>
{
/// <summary>
/// Initializes a new instance of the <see cref="TriggerCollection"/> class.
/// </summary>
/// <remarks>Internal, because this should not be inherited outside this assembly.</remarks>
internal TriggerCollection()
public TriggerCollection()
{
}

Expand Down