如何在WPF中创建自定义窗口用户控件?

时间:2011-12-20 11:14:46

标签: wpf user-controls custom-controls

如何使用用户控件创建自定义窗口,或者有没有办法做到这一点?,我想创建一个自定义窗口,这将是所有窗口的常见窗口。

谢谢, @nagaraju。

1 个答案:

答案 0 :(得分:0)

试试这个创建你的基类说BaseClassView并从Window类继承然后继承你的“Wpf窗口为

<view:BaseClassView x:Class="MyProject.Views.AddressView" <!- here AddressView inhetrits the BaseClassView -->
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:view="clr-namespace:namespace of BaseClassView ">

</view:BaseClassView>

public partial class AddressView /*Do not inherit this class with Window rather inherit BaseClassView (base class with Window class)*/
{

}

希望这会有所帮助