3 overrides of GetSourceItem
PresentationFramework (3)
src\Framework\System\Windows\Data\BindingExpression.cs (1)
1182internal override object GetSourceItem(object newValue)
src\Framework\System\Windows\Data\MultiBindingExpression.cs (1)
950internal override object GetSourceItem(object newValue)
src\Framework\System\Windows\Data\PriorityBindingExpression.cs (1)
474internal override object GetSourceItem(object newValue)
4 references to GetSourceItem
PresentationFramework (4)
src\Framework\System\Windows\Controls\ItemsControl.cs (1)
205ic.Items.SetItemsSource(newValue, (object x)=>beb.GetSourceItem(x) );
src\Framework\System\Windows\Data\CollectionViewSource.cs (1)
955return (beb != null) ? beb.GetSourceItem(x) : null;
src\Framework\System\Windows\Data\MultiBindingExpression.cs (1)
965return MutableBindingExpressions[i].GetSourceItem(newValue);
src\Framework\System\Windows\Data\PriorityBindingExpression.cs (1)
479return bindExpr.GetSourceItem(newValue);