Вы можете создать прикрепленное свойство , прослушать его изменения и изменить коллекцию InputBindings
соответствующего окна.
Пример:
// Snippet warning: This may be bad code, do not copy.
public static class AttachedProperties
{
public static readonly DependencyProperty InputBindingsSourceProperty =
DependencyProperty.RegisterAttached
(
"InputBindingsSource",
typeof(IEnumerable),
typeof(AttachedProperties),
new UIPropertyMetadata(null, InputBindingsSource_Changed)
);
public static IEnumerable GetInputBindingsSource(DependencyObject obj)
{
return (IEnumerable)obj.GetValue(InputBindingsSourceProperty);
}
public static void SetInputBindingsSource(DependencyObject obj, IEnumerable value)
{
obj.SetValue(InputBindingsSourceProperty, value);
}
private static void InputBindingsSource_Changed(DependencyObject obj, DependencyPropertyChangedEventArgs e)
{
var uiElement = obj as UIElement;
if (uiElement == null)
throw new Exception(String.Format("Object of type '{0}' does not support InputBindings", obj.GetType()));
uiElement.InputBindings.Clear();
if (e.NewValue == null)
return;
var bindings = (IEnumerable)e.NewValue;
foreach (var binding in bindings.Cast<InputBinding>())
uiElement.InputBindings.Add(binding);
}
}
Это может быть использовано на любом UIElement
:
<TextBox ext:AttachedProperties.InputBindingsSource="{Binding InputBindingsList}" />
Если вы хотите, чтобы он был очень необычным, вы можете проверить INotifyCollectionChanged
и обновить InputBindings
, если коллекция изменится, но вам нужно будет отписаться от старой коллекции и так далее, чтобы вы нужно быть более осторожным с этим.