Silverlight のコードからコンボボックスに 1 ~ 10 の値を事前設定する必要があり、選択した値はデフォルトで 3 にする必要があります。私はどのように行いますか?
private int _Rounds=3;
[RequiredField]
[MultipleChoice]
public int Rounds
{
get { return this._Rounds; }
set
{
if (this._Rounds != value)
{
this.ValidateProperty("Rounds", value);
this._Rounds = value;
this.RaisePropertyChanged("Rounds");
}
}
}