/// <summary>
/// Behavior base class that handles a safe unsubscribe and clean up because the default
/// behavior class does not always call <see cref="Behavior.OnDetaching"/>.
/// <para />
/// This class also adds some specific features such as <see cref="ValidateRequiredProperties"/>
/// which is automatically called when the behavior is attached.
/// </summary>
/// <typeparam name="T">The dependency object this behavior should attach to.</typeparam>
public abstract class BehaviorBase<T> : Behavior<T> where T : FrameworkElement
{
private bool _isClean = true;
#endregion
#region Constructor & destructor
#endregion
#region Properties