// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// Defines the MenuItemExtensions type.
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.AttachedProperties
{
using System.Collections.Generic;
using System.Windows;
using System.Windows.Controls;
///
/// The menu item extensions.
///
public class MenuItemExtensions : DependencyObject
{
#region Constants and Fields
///
/// The group name property.
///
public static readonly DependencyProperty GroupNameProperty = DependencyProperty.RegisterAttached(
"GroupName",
typeof(string),
typeof(MenuItemExtensions),
new PropertyMetadata(string.Empty, OnGroupNameChanged));
///
/// The element to group names.
///
public static Dictionary