Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 C# + WPF 中有一个应用程序,我需要填充一个数据网格。
我尝试使用其属性 ItemsSource 填充 DataGrid。
DataGrid.ItemsSource = <ElementList>;
ElementList 是一个字符串列表。
当我运行它时,它会为列表的每个元素生成一行,但它不显示任何内容。
你的数据有属性吗?字段将不起作用,除非您手动创建列,否则也AutoGenerateColumns需要。true
AutoGenerateColumns
true