0
아래와 같이 반사 생성 대화 상자가 있습니다. 날짜를 클릭하면 popover가 모양이 바뀌고 날짜 피커가 찌그러 뜨려 렌더링됩니다 (아래 참조).MonoTouch.Dialog : Date의 ContentSizeForViewInPopover 변경 사항
내 수업은 아래 참조 용입니다.
[Preserve(AllMembers = true)]
public class EventEntity
{
[Section("Date of Measurement", "")]
[Indexed]
[Date]
public DateTime Date ;
[Section("Measurement Details", "")]
[Caption("Height")]
[Entry(Placeholder= "Centimeters",KeyboardType = UIKeyboardType.PhonePad)]
public string HeightCM ;
[Caption("Weight")]
[Entry(Placeholder= "Kilograms",KeyboardType = UIKeyboardType.PhonePad)]
public string WeightKG ;
[Caption("Head Circumference")]
[Entry(Placeholder = "Centimeters", KeyboardType = UIKeyboardType.PhonePad)]
public string HeadCircumferenceCM;
[Skip]
public int ChildFK ;
[Skip]
[PrimaryKey, AutoIncrement]
public int PK;
}