2009-10-28 3 views

답변

14

BindingOperations.ClearBinding() 메소드 실버 라이트 3에 존재하지 않는이 ClearValue()를 호출 내부.

public static void ClearBinding(DependencyObject target, DependencyProperty dp) 
{ 
    if (target == null) 
    { 
     throw new ArgumentNullException("target"); 
    } 
    if (dp == null) 
    { 
     throw new ArgumentNullException("dp"); 
    } 
    if (IsDataBound(target, dp)) 
    { 
     target.ClearValue(dp); 
    } 
} 

via Reflector.

관련 문제