public class ComboBoxService {
public static readonly DependencyProperty ForceOpenProperty =
DependencyProperty.RegisterAttached("ForceOpen", typeof(bool), typeof(ComboBoxService),
new PropertyMetadata(OnForceOpenChanged));
public static bool GetForceOpen(DependencyObject d) {
return (bool)d.GetValue(ForceOpenProperty);
}