如何在该代码中创建 "Binding" class?

How to create the "Binding" class in that code?

我需要将 EntityCollection 绑定到我的 data-grid,我找到了解决方案 here

Binding binding = new Binding();
binding.Source = colecao;
binding.Mode = BindingMode.OneWay;
dataGrid1.SetBinding(DataGrid.ItemsSourceProperty, binding);

但是我不确定 Binding class 是什么以及我需要导入什么库来创建它。

As per MSDN Binding Class

绑定 Class 提供对绑定定义的高级访问,它连接绑定目标对象(通常是 WPF 元素)和任何数据源(例如,数据库、 XML 文件,或任何包含数据的对象)。

Namespace: System.Windows.Data
Assembly: PresentationFramework (in PresentationFramework.dll)

Here's one good example of it