2017-09-11 16 views
0

WPF/MVVM을 배우기 위해 Yahtzee 게임을 만들고 있습니다. 나는 약간의 진전을 이루었지만 ICommand를 사용하여 임의의 int 값 ("롤링")을 내 오지에주는 방법을 고민하고 있습니다. 그래서 나는이 같은 주사위 클래스가 있습니다ICommand를 사용하여 모델의 속성을 변경하려면 어떻게해야합니까?

public class Die : INotifyPropertyChanged 
    { 
     int _id; 
     int _roll; 
     bool _checked; 
    } 

이러한 속성은 모두 같은 생성자를 가지고있다 :

public bool Checked 
    { 
     get { return _checked; } 
     set { _checked = value; 
      OnPropertyChanged("Checked"); } 
    } 

"_id"는 오지를 추적하는 단지 방법입니다, 심지어 확실하지 그건 필요합니다. "_roll"은 임의의 값입니다.이 값은 바로 옆에있는 질문이며, "_checked"는 플레이어가 다음 던짐을 위해이 값을 유지하고 싶다면 체크 할 수있는 체크 박스입니다.

내 뷰 모델은 다음과 같습니다

public class DiceViewModel : INotifyPropertyChanged 
{ 
    Die _die; 

    public DiceViewModel() 
    { 
     myDices = new ObservableCollection<Die>() 
     { 
      new Die { Id = 1, Roll = 0, Checked = false }, 
      new Die { Id = 2, Roll = 0, Checked = false }, 
      new Die { Id = 3, Roll = 0, Checked = false }, 
      new Die { Id = 4, Roll = 0, Checked = false }, 
      new Die { Id = 5, Roll = 0, Checked = false }, 
     }; 
    } 
} 

명령을 생성에서 내 최고의 시도는 다음과 같이이다 :

public class RollDiceCommand : ICommand 
{ 
    private Action<object> _method; 
    public event EventHandler CanExecuteChanged; 

    public RollDiceCommand(Action<object> method) 
    { 
     _method = method; 
    } 

    public bool CanExecute (object parameter) 
    { 
     if ((bool)parameter == true) 
     { 
      return true; 
     } 
     else 
      return false; 
    } 

    public void Execute(object parameter) 
    { 

    } 
} 

그래서 만드는 방법을 이해 할 수없는 두 가지 방법입니다 각 주사위의 _checked 속성이 false인지 아닌지 확인하고, false 인 경우 현재 주사위를 새로운 숫자로 지정하십시오. 내 "롤 주사위"버튼을 누른 후 5 개의 주사위를 반복해야합니다.

  1. RollDiceCommand를 자체 파일로 만들거나 VM/M에 넣어야합니까?
  2. CanExecute 매개 변수로 _checked 속성을 얻는 방법
  3. 하나의 거푸집의 _roll 값을 임의 화하는 방법은 질문 2에서이 문제도 해결할 것으로 생각됩니다.
+0

나는 당신에게 무엇을 말해야할지 모르겠다. 또는 적어도 충돌없이 컴파일되고 실행됩니다. 편집 : 지금 무슨 뜻인지보고 편집 해 보겠습니다. – Tom

+0

오늘 잠이 깬다 왜 내가 "그 위에"넣었는지 모르겠다 – Tom

답변

0

나는 방법에 당신을 돕기 위해 노력 할게요 내가 그것을 할 방법 :

1) ObservableCollection에 잘 선택이 될 것입니다하지만 당신은 그 컬렉션 정보를 정기적으로해야하는 경우, 왜 속성을 ??? 그런 다음 개인 쓰기에/목록을 만들 수 있습니다 외부에이 명령이 연결 GUI를 사용하는 경우에만 읽을 수

public class DiceViewModel : INotifyPropertyChanged 
    { 
     Die _die; 

     public DiceViewModel() 
     { 
      mMyDices= new ObservableCollection<Die>() 
      { 
       new Die { _id = 1, _roll = 0, _checked = false }, 
       new Die { _id = 2, _roll = 0, _checked = false }, 
       new Die { _id = 3, _roll = 0, _checked = false }, 
       new Die { _id = 4, _roll = 0, _checked = false }, 
       new Die { _id = 5, _roll = 0, _checked = false }, 
      }; 
     } 
    private ObservableCollection<Die> mMyDices; 
    public ObservableCollection<Die> MyDices 
    { 
    public get {retrun mMyDices; } 
    private set { SetProperty (mMyDices, value);  } 
    //This is part from interface IProperty changed 
    } 
} 

2), 다음 네 VM 3) CanExecute 메서드를 구현 클래스에 넣어 될 것입니다, MyDices 목록에 대한 액세스 권한이 있어야합니다. 자산을 얻으려면 부동산을 만들어야합니다.

귀하의 주사위 클래스에는 3 개의 개인 변수가 있습니다. 어떤 만 볼 안쪽, 단지) 1처럼, 그들에게 속성 만들기 위해 : 내가 만든 VM에 대한 기본 클래스를

public abstract class BaseViewModel: INotifyPropertyChanged 
    { 
     /// <summary> 
     ///  Multicast event for property change notifications. 
     /// </summary> 
     public event PropertyChangedEventHandler PropertyChanged; 

     /// <summary> 
     ///  Checks if a property already matches a desired value. Sets the property and 
     ///  notifies listeners only when necessary. 
     /// </summary> 
     /// <typeparam name="T">Type of the property.</typeparam> 
     /// <param name="storage">Reference to a property with both getter and setter.</param> 
     /// <param name="value">Desired value for the property.</param> 
     /// <param name="propertyName"> 
     ///  Name of the property used to notify listeners. This 
     ///  value is optional and can be provided automatically when invoked from compilers that 
     ///  support CallerMemberName. 
     /// </param> 
     /// <returns> 
     ///  True if the value was changed, false if the existing value matched the 
     ///  desired value. 
     /// </returns> 
     protected bool SetProperty<T>(ref T storage, T value, [CallerMemberName] String propertyName = null) { 
      if (Equals(storage, value)) { 
       return false; 
      } 

      storage = value; 
      this.OnPropertyChanged(propertyName); 
      return true; 
     } 

     /// <summary> 
     ///  Notifies listeners that a property value has changed. 
     /// </summary> 
     /// <param name="propertyName"> 
     ///  Name of the property used to notify listeners. This 
     ///  value is optional and can be provided automatically when invoked from compilers 
     ///  that support <see cref="CallerMemberNameAttribute" />. 
     /// </param> 
     protected void OnPropertyChanged([CallerMemberName] string propertyName = null) { 
      PropertyChangedEventHandler eventHandler = this.PropertyChanged; 
      if (eventHandler != null) { 
       eventHandler(this, new PropertyChangedEventArgs(propertyName)); 
      } 
     } 
} 

:

//to outside read-only, but only in Dice class is writable 
public Checked {get; private set;} 

//to outside writable, readable 
public Checked {get; set;} 

UPDATE를.

+0

"SetProperty"가 작동하지 않는 것 같아요. "내 이름 'SetProperty'가 존재하지 않습니다. 현재의 문맥. – Tom

+0

안녕하세요 Tom, 미안 해요. 내 Base 클래스에서 코드를 업데이트하는 것을 잊어 버렸습니다. 이것은 내 VM Property 만 업데이트합니다. –