本文整理汇总了C#中System.App.AddField方法的典型用法代码示例。如果您正苦于以下问题:C# App.AddField方法的具体用法?C# App.AddField怎么用?C# App.AddField使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.App
的用法示例。
在下文中一共展示了App.AddField方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: AddFields
private static void AddFields(App app, XmlNode manifest)
{
// add fields to the app
XmlNodeList nodeList = manifest.SelectNodes("fields/field");
if (nodeList != null)
{
foreach (XmlNode n in nodeList)
{
string name = n.Attributes["name"].Value;
FieldType fType = FieldType.String;
if (n.Attributes["type"] != null)
{
if (!Enum.TryParse<FieldType>(n.Attributes["type"].Value, true, out fType))
{
fType = FieldType.String;
}
}
bool required = false;
if (n.Attributes["required"] != null)
{
if (!Boolean.TryParse(n.Attributes["required"].Value, out required))
{
required = false;
}
}
bool collection = false;
if (n.Attributes["collection"] != null)
{
if (!Boolean.TryParse(n.Attributes["collection"].Value, out collection))
{
collection = false;
}
}
Field field = new Field();
field.Name = name;
field.FieldType = fType;
field.IsRequired = required;
field.IsCollection = collection;
app.AddField(field);
}
}
}