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.
我正在使用ListView包含 aGridView来绑定数据。我想在数据绑定期间但在向 UI 显示完整数据之前对每一行做一些工作。
ListView
GridView
这通常在 asp.net 中按OnRowDataBound事件完成。
OnRowDataBound
有没有OnRowDataBound我可以在 WPF 中使用的事件。如果是这样,我该如何使用它?是否有任何替代方案。
您可以做的是首先通过 ValueConverter 作为中间步骤。它发生在数据绑定过程中,在源和 UIElement 之间。
在您的 GridView 和 GridViewColumn 中,您可以在其中定义源路径,只需添加一个与您要绑定的数据类型匹配的 ValueConverter,以及返回 Type..
然后在你的 valueConverter 的代码中,做你的更改。