以下は私にNULLを返していますが、その理由は何ですか?
MultiBinding collectionRange = new MultiBinding();
collectionRange.Bindings.Add(new Binding("CurrentPosition") { Source = View });
collectionRange.Bindings.Add(new Binding("Count") { Source = View });
collectionRange.StringFormat = "{0} of {1}";
tbFooter.SetBinding(TextBlock.TextProperty, collectionRange);
var x = tbFooter.GetBindingExpression(TextBlock.TextProperty);
MultiBinding は問題ありません。プロパティは有効であり、UI でレンダリングされます。バインディング式を取得できないようです (x は常に NULL です)。
この方法の使い方は間違っていますか?