作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我换了 用户控件 成为 ReactiveUserControl 现在我无法查看设计 View 。有什么我可以做的让设计师使用 ReactiveUserControl 吗?
最佳答案
当您的控件或窗口直接从泛型类继承时,Visual Studio 设计器会出现问题。这也是 WinForms 的一个非常常见的问题。您可以通过定义位于泛型 ReactiveUserControl
之间的另一个非泛型类来解决此问题。和你的控制:
public partial class MyUserControl : MyUserControlBase
{
public MyUserControl()
{
InitializeComponent();
}
}
public abstract class MyUserControlBase: ReactiveUserControl<MyUserControlViewModel>
{
}
MyUserControlBase
),其类声明连接到上面定义的分部类 (
MyUserControl
):
<myNameSpace:MyUserControlBase
x:Class="MyNameSpace.MyUserControl"
xmlns:myNameSpace="clr-namespace:MyNameSpace"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
关于wpf - 通用 ReactiveUserControl "cannot be edited in Design view",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50219382/
我换了 用户控件 成为 ReactiveUserControl 现在我无法查看设计 View 。有什么我可以做的让设计师使用 ReactiveUserControl 吗? 最佳答案 当您的控件或窗口直
我有使用 C#、WinAppDriver(又名 WAD)和 Selenium 开发大型自动化测试解决方案的经验。这将测试大型 WPF Windows 应用程序。 到目前为止,还不错。 现在您可以想象被
我是一名优秀的程序员,十分优秀!