I am simply trying to bind two controls as command parameters and pass them into my command as an object[].
object[]
XAML:
This'll do it:
public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture) { return values.ToArray(); }
Take a look at this question for the explanation.