1

ユーザーが患者の生年月日を入力する場合と入力しない場合がある患者フォームを作成しました。私が使用したコントロールは Date Picker で、PatientDateOfBirth にバインドされていますが、PatientDateOfBirth.HasValue にアクセスしようとすると null が返されます。

財産

public DateTime? PatientDateOfBirth
    {
        get
        {
            if (_patientDateOfBirth.HasValue)
                return _patientDateOfBirth.Value;
            else
                return null;
        }
        set
        {
            _patientDateOfBirth = value;
            OnPropertyChanged("PatientDateOfBirth");
        }
    }

XAML

<DatePicker x:Name="dPPatDOB" Text="{Binding Path=Model.PatientDateOfBirth, UpdateSourceTrigger=PropertyChanged, Mode=TwoWay}" Height="25" Grid.Column="1" Grid.Row="3" Margin="12,11,98,29"/>
4

1 に答える 1