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.
我想知道是否可以将 XAML 与 Window Form 或反向结合使用。我也想知道一个学习如何与他们一起工作的好地方。
例如,我想创建一个 XAML 窗口,我想在该窗口上添加一个带有用 C# 编写的事件操作的按钮。
是的,这是可能的(两种方式)
WPF 中的 WinForms
WinForms 中的 WPF
在这两种情况下,您都添加了一个特殊控件,该控件充当其他环境的主机。
WindowsFormsHost允许您在 WPF 页面上托管 Windows 窗体控件。