Sorry, I read this question completely wrongly at first.
Assuming you have a Model like this
class FakeModel
{
public int? IntegerValue { get; set; }
public string StringValue { get; set; }
}
Then the best way to solve this is to implement a ViewModel such as
class FakeViewModel : INotifyPropertyChanged
{
private FakeModel _fakeModel;
public FakeViewModel(FakeModel model)
{
_fakeModel = model;
}
public bool IntChecked
{
get { return _fakeModel.IntegerValue.HasValue; }
set
{
if (value)
IntegerValue = -1; //for example
else
IntegerValue = null; //to reset
OnPropertyChanged("IntChecked");
}
}
public int IntegerValue
{
get { return _fakeModel.IntegerValue.Value; }
set { _fakeModel.IntegerValue.Value = value;
OnPropertyChanged("IntegerValue");
}
}
public bool StringChecked
{
get { return _fakeModel.StringValue.HasValue; }
set
{
if (value)
StringValue = -1; //for example
else
StringValue = null; //to reset
OnPropertyChanged("StringChecked");
}
}
public int StringValue
{
get { return _fakeModel.StringValue.Value; }
set
{
_fakeModel.StringValue.Value = value;
OnPropertyChanged("StringValue");
}
}
protected void OnPropertyChanged(string callerName)
{
var temp = PropertyChanged;
if (temp != null)
temp(this, new PropertyChangedEventArgs(callerName));
}
public event PropertyChangedEventHandler PropertyChanged;
}
This includes a basic implementation of INotifyPropertyChanged, which you could alternatiely inherit from a base class or mvvm library such as Caliburn.Micro MMVMLite or ReactiveUI.
For more info on view models or MVVM, check out Josh Smith on MVVM from MDSN