0

我正在开发一个包含多个项目的 .NET 4 项目。主要项目是列表框中的 Windows 应用程序。在相同的解决方案中,我有一个类库项目。

在我的 Windows 窗体后面的代码中,我调用了我的类库中的一个函数。

我可以将我的列表框控件从我的项目传递到同一解决方案中的另一个项目并添加项目吗?

谢谢你

4

1 回答 1

0

确实可以。

但首先在您的类库中添加对 System.Windows.Controls 的引用。然后你可以在你的一个类上有一个公共方法

public void DoSomethingToMyListBox(ListBox list)
{
   list.Clear(); //or whatever
}

然而。我会请你考虑一下你想用这个列表框做什么,以及为什么你需要将它传递给另一个模块——一般来说,这是你设计中存在缺陷的标志。

例如,如果您想传入它,因为您想用一些来自数据库的项目填充它,并且您想将主 Forms 项目与数据库访问隔离(一件好事),那么您应该拥有您的类库返回data,您应该改用 Windows 窗体 DataBinding 组件。

例如

//on your Form's code
public Form1()
{
   var myThing =new MyClass(); //whatever the class in the class library is called
   var theData = MyClass.GetData(); //GetData returns List<something>
   MyListBox.DataSource=theData;
//if "something" is a class, use the two lines below
 //if something is just a list of strings for example, you don't need to bother
   MyListBox.DisplayMember="name of property on something to display in the list";
   MyListBox.ValueMember="name of property on something to use as list index";

}

当然我不知道这是否是你想要做的:)

于 2013-09-20T15:23:20.717 回答