C#将通用列表绑定到文本框WinForms?

时间:2009-07-03 08:51:47

标签: c# data-binding list textbox

我有一个返回类型字符串列表的方法。我想将列表中的每个项目绑定到文本框,所以基本上它看起来像一个列表框,除了它可以编辑,因为它实际上是一个文本框!

关于如何做到这一点的任何想法!?

CODE:

public List<string> GetAgentsDetails(string writeDir)
    {
        List<string> agentInfoList = new List<string>();

        XElement doc = XElement.Load(writeDir);

        var getDetails =
            (from n in doc.Elements("Agent")
             select n.Element("Name").Value + "," + n.Element("EmailAddress").Value);
        foreach (var info in getDetails)
        {
            agentInfoList.Add(info);
        }
        return agentInfoList;

    }

1 个答案:

答案 0 :(得分:2)

从头到尾:

MyTextBox.Lines = GetAgentsDetails(writeDir).ToArray();

当然,你的TextBox应该是多行的。