首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >MonoTouch.Dialog:日期中的ContentSizeForViewInPopover更改

MonoTouch.Dialog:日期中的ContentSizeForViewInPopover更改
EN

Stack Overflow用户
提问于 2011-01-26 20:14:07
回答 1查看 418关注 0票数 0

我有一个由反射创建的对话框,如下所示。当单击日期时,弹出窗口会改变形状,并呈现挤压的日期选择器,请参见下面的内容。

下面是我的课程以供参考。

代码语言:javascript
复制
[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;

}
EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2011-04-07 23:25:42

如果你给我提供一个自包含的测试用例,我可以研究一下调试。我从未在iPad中真正使用过MonoTouch.Dialog ;-)

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/4804430

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档