我可以从Account中检索任何文本字段值,并将值设置为Contact中的文本字段。但是当我尝试在选项集字段中使用相同的代码时得到invalid type
。
在这种情况下,parentcustomerid
是Contact
中的查找字段,用于查找Account
。 new_GroupofAccount
是Account
中的选项集架构名称,而new_groupofaccountcontact
是Contact
中的选项集字段名称。如果parentcustomerid
有价值,我想要实现的目标,我希望Account
中设置的选项值反映在new_groupofaccountcontact
的{{1}}中。两个选项集字段都使用相同的全局选项设置值。
这是我的js代码:
contact

非常感谢任何帮助。提前谢谢。
答案 0 :(得分:0)
基本上代码是正确的,只需要从OData查询中传递TextAlignment
选项集检索,如protected override void OnLayout(bool changed, int left, int top, int right, int bottom)
{
_labelTextView = new TextView(Context)
{
Background = ContextCompat.GetDrawable(Context,
Resource.Drawable.blue_circle),
Text = "N/A",
Gravity = GravityFlags.Center,
TextAlignment = TextAlignment.Center,
};
_labelTextView.Left = left;
_labelTextView.Top = top + 20;
_labelTextView.Bottom = bottom - 50;
_labelTextView.Right = right;
base.OnLayout(changed, left, top, right, bottom);
}
。
希望将来有人会受益。