2011-01-26 6 views
0

아래와 같이 반사 생성 대화 상자가 있습니다. 날짜를 클릭하면 popover가 모양이 바뀌고 날짜 피커가 찌그러 뜨려 렌더링됩니다 (아래 참조).MonoTouch.Dialog : Date의 ContentSizeForViewInPopover 변경 사항

내 수업은 아래 참조 용입니다. enter image description here

[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; 

} 

답변

0

당신은 자체에 포함 된 테스트 케이스로 날을 제공하는 경우

enter image description here

, 나는 그 디버깅에 볼 수 있었다. iPad에서 MonoTouch.Dialog를 사용한 적이 없습니다.

관련 문제