自定义活动(C#/ UiPath)属性中的下拉显示名称

时间:2018-08-16 08:09:36

标签: c# enums uipath custom-activity

我正在UiPath(基于Windows工作流基础)中构建自定义活动。它需要一个文件并将其处理为其他输出。有3种可能的路径(文本-> JSON,JSON-> JSON和JSON-> CSV)。我使用这三个选项做了一个枚举,用作属性面板的下拉菜单,但是我想更改显示名称,因为枚举不允许空格或特殊字符。我尝试使用以下代码,但无法正常工作。任何帮助表示赞赏!

public enum ddEnum
{
    [Display(Name = "Text -> JSON")]
    TextJSON,
    [Display(Name = "JSON -> JSON")]
    JSONJSON,
    [Display(Name = "JSON -> CSV")]
    JSONCSV
}

[Category("Input")]
[RequiredArgument]
[Description("The preferred input and output formats.")]
[DisplayName("Input / Output Formats")]
public ddEnum InputOutput { get; set; }

Here's what it looks like

0 个答案:

没有答案