相关疑难解决方法(0)

如何在xamarin.forms中将左右填充设置为条目单元格

我已经在IOS和android的xamarin表单中使用了自定义渲染的入口单元格.如何为输入单元格设置左右填充.

我在PCl中的自定义输入单元格:

<local:MyEntryCell Placeholder="Placeholder" PlaceholderColor="Grey" TextColor="Black"/>

MyEntryCell is the custom name of my entry cell.
Run Code Online (Sandbox Code Playgroud)

在我的PCL中,我有:

public class MyEntryCell:Entry
{

}
Run Code Online (Sandbox Code Playgroud)

在IOS中:

namespace CustomEntry.IOS
{
   public class MyEntryCellRenderer:EntryRenderer
    {
         // override onElementChanged
    }
}
Run Code Online (Sandbox Code Playgroud)

在Android中:

namespace CustomEntry.Droid
    {
       public class MyEntryCellRenderer:EntryRenderer
        {
             // override onElementChanged
        }
    }
Run Code Online (Sandbox Code Playgroud)

custom-renderer xamarin.forms

5
推荐指数
1
解决办法
8350
查看次数

标签 统计

custom-renderer ×1

xamarin.forms ×1