gpt4 book ai didi

C# 表面 2 数据源

转载 作者:行者123 更新时间:2023-11-30 21:08:04 29 4
gpt4 key购买 nike

我在 Visual C# -> surface -> v2.0 -> MS visual C# 2010 express 中的 Surface Application (WPF) 模板中工作。

我正在尝试获取表面表 (Samsung SUR40) 上的输入并将它们解析为 JSON 数组。

我想将每个输入作为一个项目添加到列表框中,包括一个项目 ID,以便稍后在输入移动时找到它们。

I found this example并得到如下错误:

C:\Users\User\documents\visual studio 2010\Projects\SurfaceInputs\SurfaceInputs\SurfaceWindow1.xaml.cs(209,25): error CS1061: 'System.Windows.Controls.ListBox' does not contain a definition for 'DataSource' and no extension method 'DataSource' accepting a first argument of type 'System.Windows.Controls.ListBox' could be found (are you missing a using directive or an assembly reference?)

DisplayMember 和 ValueMember 出现同样的错误。

在失败的示例之后,我尝试了这段代码,它给了我同样的错误:

List<string> list = new List<string>();
list.Add("Hello World");
myListBox.DataSource = list;

我是 C# 的新手,不知道自己做错了什么。谁能帮帮我?

最佳答案

试试 myListBox.ItemsSource = list

参见 MSDN对于文档。

关于C# 表面 2 数据源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9904948/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com