我正在读一本关于 XAML 的书。而且我无法弄清楚“其通用对应物”在以下上下文中的含义。在学习计算机语言时,“通用”一词总是让我感到困惑。
列表是实现 IList 接口或其通用对应物的任何集合。例如,以下 XAML 将两个项目添加到 ListBox 控件,其 Items 属性是实现 IList 的 ItemCollection:
<ListBox xmlns=”http://schemas.microsoft.com/winfx/2006/xaml/presentation”>
<ListBox.Items>
<ListBoxItem Content=”Item 1”/>
<ListBoxItem Content=”Item 2”/>
</ListBox.Items>
</ListBox>