WPF 缺少 System.Windows.Interactivity:現代解決方案
許多 WPF 開發人員面臨缺少 System.Windows.Interactivity 函式庫的挑戰。雖然先前建議使用 Expression Blend,但有更最新、更強大的解決方案。
遷移到 Microsoft.Xaml.Behaviors.Wpf
Microsoft 開源了 XAML 行為庫,為舊版 System.Windows.Interactivity 提供了更好的替代方案。 這種方法消除了對 Expression Blend 的需求。 官方遷移指南可以在這裡找到:
https://www.php.cn/link/65d141290a7de8a5c5ad8c972e8e6eff
遷移過程涉及以下簡單步驟:
Microsoft.Xaml.Behaviors.Wpf
NuGet 套件。 xmlns
聲明替換為 "http://schemas.microsoft.com/xaml/behaviors"
。 using
和 "Microsoft.Xaml.Interactivity"
的 "Microsoft.Xaml.Interactions"
語句替換為 "Microsoft.Xaml.Behaviors"
.透過執行以下步驟,您可以使用現代且受支援的 XAML 行為庫將先前的 System.Windows.Interactivity 庫的功能無縫整合到您的 WPF 專案中。
以上是如何替換WPF專案中的System.Windows.Interactivity?的詳細內容。更多資訊請關注PHP中文網其他相關文章!