在C#中创建下拉列表

时间:2016-09-19 14:16:01

标签: c# drop-down-menu

我是编程新手,我想知道如何在c#中创建Pass / Fail下拉列表。任何帮助将不胜感激

class Program
{
    static void Main(string[] args)
    {
        Match match;
        string pattern = @"\s*#\sfeatures+.+|\s*#\scalabash+.+";
        string replacement = " Step #... ";
        string result;


        // Read input file
        StreamReader inFile = new StreamReader(@"C:\Users\Desktop\file.txt");
        string input = inFile.ReadToEnd();
        inFile.Close();

        // matching pattern
        match = Regex.Match(input, pattern, RegexOptions.Multiline);
        while (match.Success)
        {
            // Console.WriteLine("'{0}'character found: {1} ", match.Value, match.Index);
            match = match.NextMatch();
        }

        // replace
        result = Regex.Replace(input, pattern, replacement);
        // Console.WriteLine(result);
        File.WriteAllText(@"C:\Users\Desktop\file.txt", result);      

1 个答案:

答案 0 :(得分:0)

您必须创建Windows窗体应用程序。

在VS中:

档案>新>产品> Windows窗体应用程序

将ComboBox控件拖放到表单上:

工具箱>所有Windows窗体> ComboBox

右键单击组合框>编辑项目

将您的商品添加到列表中并完成