Xamarin.forms SwitchCell文本显示不完整

时间:2016-03-31 10:10:50

标签: c# xamarin xamarin.forms portable-class-library

我是 Xamarin.Forms 的新手。有没有办法显示所有文字SwitchCell?长文被截断了。

NewsLetterSwitchCell = new SwitchCell
{
    Text="abcdefghijklmnopqrstvwxyz123456789aabbccdeeffgghhjjkkllmmmnnooppqqrrsssrtg",                                        
};
NewsLetterSwitchCell.OnChanged += switcher_Toggled;
TableView tb = new TableView();
tb.Root = new TableRoot() {
    new TableSection("Enter Optional Information (* Required Fields)") {
        NewsLetterSwitchCell                
    }
};
Content = new StackLayout
{
    Children = { tb }
};

此图片显示了我的手机的结果。它只包含第一个字母。

enter image description here

1 个答案:

答案 0 :(得分:1)

您需要为此目的编写自己的自定义渲染器。 以下链接可以帮助您。 Forum link for custom switch