Xamarin.Forms android里面的TableView无法正常工作

时间:2018-01-16 13:01:54

标签: xamarin.forms

我在tableView中有一个简单的条目。

第一次按下该条目时,会出现键盘但焦点消失。 点击键盘什么都不做。 只有当再次按下条目时,键盘才会在条目

中写入字母

对我来说,EntryCell不够好,当我用EntryCell替换Entry时它也没有用?

        TableView tableView = new TableView();
        tableView.Intent = TableIntent.Form;
        tableView.BackgroundColor = Color.Blue;
        tableView.HasUnevenRows = true;
        tableView.Root = new TableRoot()
        {
            new TableSection()
            {
                new ViewCell() { View = new Entry() { WidthRequest = 100, BackgroundColor = Color.Red} }
            }
        };

0 个答案:

没有答案