2011-11-16 2 views
0

해결하려는 문제는 상당히 똑바로, 나는 Microsoft.Phone.Controls을 사용하고 있는데 ToggleSwitch의 두 속성에 바인딩하려고합니다. 내 MainPageViewModelToggleSwitch의 상태를 캡처하고 '켜기/끄기'에서 '거리/시간'으로 콘텐츠를 변경할 수 있습니다.두 개 이상의 컨트롤 속성에 Caliburn (마이크로)을 사용하여 바인딩

내가하고있는 일이 효과가 없다는 것은 문서 (RTFM ...)에서 알지 못하는 규칙과 관련이 있습니다. 이 작동하지 않습니다

using System; 
using System.Windows.Data; 
using System.Collections.Generic; 
using Caliburn.Micro; 
using Microsoft.Phone.Controls; 

public class AppBootstrapper : PhoneBootstrapper 
{ 
    PhoneContainer container; 

    protected override void Configure() 
    { 
     container = new PhoneContainer(RootFrame); 

     container.RegisterPhoneServices(); 
     container.PerRequest<MainPageViewModel>(); 

     AddCustomConventions(); 
    } 

    private static void AddCustomConventions() 
    { 
     ConventionManager.AddElementConvention<ToggleSwitch>(ToggleSwitch.IsCheckedProperty, "IsChecked", "Click") 
      .ApplyBinding = (viewModelType, path, property, element, convention) => 
      { 
       //Default binding to "IsChecked" property 
       if (!ConventionManager.SetBinding(viewModelType, path + ".IsChecked", property, element, convention)) 
        return false; 

       if (!ConventionManager.HasBinding(element, ToggleSwitch.ContentProperty)) 
       { 
        var binding = new Binding(path + ".Content"); 

        BindingOperations.SetBinding(element, ToggleSwitch.ContentProperty, binding); 
       } 

       return true; 
      }; 
    } 
} 

ToggleSwitch는 XAML Name=FixedDistance있다

bool fixedDistance = true; 
    public bool FixedDistance 
    { 
     get 
     { 
      return fixedDistance; 
     } 
     set 
     { 
      fixedDistance = value; 
      NotifyOfPropertyChange(() => FixedDistance); 

      if (fixedDistance) 
      { 
       FixedDistanceContent = "Distance"; 
      } 
      else 
      { 
       FixedDistanceContent = "Time"; 
      } 
     } 
    } 

    string fixedDistanceContent; 

    public string FixedDistanceContent 
    { 
     get 
     { 
      return fixedDistanceContent; 
     } 
     set 
     { 
      fixedDistanceContent = value; 
      NotifyOfPropertyChange(() => FixedDistanceContent); 
     } 
    } 

.

은 내가 FixedDistance 속성에 바인딩 할 순진 (명확하게 잘못)를 ToggleSwitch.IsChecked를 기대 해요, 그리고 ToggleSwitch.ContentFixedDistanceContent에 바인딩 할 수 있습니다.

감사합니다.

답변

1

그것은 다음과 같습니다

 ConventionManager.AddElementConvention<ToggleSwitch>(
      ToggleSwitch.IsCheckedProperty, 
      "IsChecked", 
      "Click"); 
      .ApplyBinding = (viewModelType, path, property, element, convention) => 
     { 
      if (!ConventionManager.SetBinding(viewModelType, path, property, element, convention)) 
       return false; 

      if (ConventionManager.HasBinding(element, ToggleSwitch.ContentProperty)) return true; 

      var binding = new Binding(path + "Content") { Mode = BindingMode.TwoWay }; 
      BindingOperations.SetBinding(element, ToggleSwitch.ContentProperty, binding); 

      return true; 
     }; 

트릭을 수행합니다.