在设计时使用抽象基类渲染用户控件
我正在开发一个项目,该项目具有多个继承自抽象基类(本身基于 UserControl)的 WPF 用户控件。这些控件在运行时渲染得很好,但它们不会在设计器中渲染。
我认为发生这种情况是因为设计器尝试创建 xaml 根元素的实例(在本例中是我的基类),但它无法创建实例,因为它是抽象的。
根据记录,我知道在 WPF 中使用这种类型的控制层次结构存在“模式和实践”类型的问题,但目前无法重构整个项目。
我的问题是这样的:我知道有用于设置 DataContext、DesignWidth 等的设计时属性。我想知道的是,您能否提供一个“设计时”实例或类型作为控件在运行时提供的替代品加载到设计器中了吗?
I'm working on a project that has several WPF User Controls that inherit from an abstract base class (itself based on UserControl). These controls render just fine at runtime, but they don't render in the designer.
I gather that this happens because the designer attempts to create an instance of the xaml root element, in this case my base class, but it can't create an instance because it is abstract.
For the record, I know that there are "patterns & practices" type issues with having this type of control hierarchy in WPF, but refactoring the entire project is not an option currently.
My question is this: I know that there are design time attributes for setting the DataContext, DesignWidth, etc. What I'm wondering is, can you give a "design time" instance or type to be provided as a replacement when the control is loaded in the designer?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在设计时 Visual Studio 将尝试创建新的 YourUserControl 实例
使用无参数构造函数。
如果您无法像这样立即创建用户控件,则
设计器将无法呈现。
如果 YourUserControl 需要任何参数。最流行的技巧是在 MVVM 模式中创建像这样的专用构造函数,
一些 UserControl.DataContext 是需要一些参数的用户定义类型
XAML
您必须为设计时环境定义无参数构造函数。
in design time Visual Studio will try to create new Instant of YourUserControl
with parameterless constructor.
if you can't create usercontrol instant like this
the designer will fail to render.
if YourUserControl required any parameter. the most popular trick is to create dedicate constructor like this
in MVVM pattern some UserControl.DataContext is user-defined Type that required some params
XAML
You must define parameterless constructor for design-time environment.