在 Silverlight 3 中使用 Blend 控制继承
我想为我的一些用户控件创建一个自定义基类。 在 VS2008 中执行此操作很好,并且按预期进行编译,但是当我在 Blend 3 中编辑控件时,blabla.g.vb 中的基类始终更改回 System.Windows.Controls.UserControl。
我如何强制 Blend 保留指定的基类?
问候 克里斯托夫
i would like to create a custom base class for some of my UserControls.
Doing this in VS2008 is fine and compiles as expected, but when i edit the control in Blend 3 the base class in the blabla.g.vb is always changed back to System.Windows.Controls.UserControl.
How can i force Blend to keep the assigned base class?
regards
Christoph
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你能展示一下你的XAML吗?
我怀疑情况是您的 XAML 是这样的:
当它应该是这样的:
.g.vb 文件是从 XAML 生成的,因此它不是您应该直接编辑的文件。
Can you show your XAML?
I suspect the case is your XAML is like this:
When it should be something like:
The .g.vb file is generated from the XAML so it's not a file you should edit directly.