【发布时间】:2011-03-01 14:28:58
【问题描述】:
如何为表单上的所有绑定调用 UpdateSource?
【问题讨论】:
如何为表单上的所有绑定调用 UpdateSource?
【问题讨论】:
前段时间我为这个任务写了一堆助手。
public static void UpdateAllBindingSources(this DependencyObject obj)
{
foreach (var binding in obj.GetAllBindings())
binding.UpdateSource();
}
public static IEnumerable<BindingExpression> GetAllBindings(this DependencyObject obj)
{
var stack = new Stack<DependencyObject>();
stack.Push(obj);
while (stack.Count > 0)
{
var cur = stack.Pop();
var lve = cur.GetLocalValueEnumerator();
while (lve.MoveNext())
if (BindingOperations.IsDataBound(cur, lve.Current.Property))
yield return lve.Current.Value as BindingExpression;
int count = VisualTreeHelper.GetChildrenCount(cur);
for (int i = 0; i < count; ++i)
{
var child = VisualTreeHelper.GetChild(cur, i);
if (child is FrameworkElement)
stack.Push(child);
}
}
}
那你就打个电话
this.UpdateAllBindingSources();从你的窗口,你就完成了。
【讨论】: