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.
有很多文章描述了如何在 WPF 中创建自定义形状的窗口,但没有一篇(至少我找不到)描述了如何构建一个可重用的窗口,例如在其他窗口中继承它。
我试图从我的自定义窗口创建一个 ControlTemplate。问题在于关闭按钮和 MoveDrag() 方法。
如果我将事件连接到 ControlTemplate 中的其他控件之一,它们的 Parent 属性为空,因此我无法拖动或关闭窗口。
有谁知道如何创建可重用的自定义窗口模板或其他东西?
不幸的是,WPF 中没有视觉继承之类的东西。(没有更具体的 xaml 继承)
对于您的特定问题,您可以创建一个 CustomForm 作为模板(中间有一个大的空容器),而不是继承,然后将所有其他表单创建为填充该容器的用户控件。
以下将返回包含控件的窗口对象:
Window.GetWindow(myControl)