- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在将 VB.NET PRISM 模块转换为 C#。这是一个非常简单的事情,目前在 VB.NET 中工作。它显示绑定(bind)到 ViewModel 的字符串值。
View 的 XAML(我将其切换为硬编码文本以强制其显示,通常它是一个数据绑定(bind)控件):
<UserControl x:Class="StatusBarAlarmsView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
MinWidth="150">
<Grid>
<TextBlock Text="Garrison" VerticalAlignment="Center"/>
</Grid>
</UserControl>
regionManager.RegisterViewWithRegion(RegionNames.statusBarRegion,
Function() container.Resolve(Of iSBAlarmsPresenter).view)
this.regionManager.RegisterViewWithRegion(RegionNames.statusBarRegion,
() => new StatusBarAlarmsView());
// One
var statusbarRegion = regionManager.Regions[RegionNames.statusBarRegion];
var test = new StatusBarAlarmsView();
test.ViewModel = new AlarmViewModel(this.logger, this.eventAggregator, null,
this.container);
statusbarRegion.Add(test);
// Two
this.regionManager.RegisterViewWithRegion(RegionNames.statusBarRegion,
() => container.Resolve<iSBAlarmsPresenter>().View);
<Grid Name="StatusBarGrid" Grid.Row="3" Height="30">
<e:Interaction.Behaviors>
<behaviors:GridHeightModifyOnFontChangeBehavior FontSize="{DynamicResource AppFontSize}"/>
</e:Interaction.Behaviors>
<DockPanel >
<WrapPanel DockPanel.Dock="Right" cal:RegionManager.RegionName="{x:Static inf:RegionNames.statusBarRightRegion}" Orientation="Horizontal" Background="{DynamicResource ControlBackgroundBrush}" />
<StatusBar DockPanel.Dock="Left" cal:RegionManager.RegionName="{x:Static inf:RegionNames.statusBarRegion}" />
</DockPanel>
</Grid>
最佳答案
是在 StatusBarAlarmsView 的构造函数中调用 InitializeComponent 方法吗?
添加 View 时的一个常见错误(特别是如果您需要修改这些 View 的构造函数)是忘记调用 InitializeComponent 方法。这个方法“告诉” View 创建和渲染它的内部组件。如果它没有被调用,你通常会发现你的 View 看起来是空的,因为它的组件从未被创建。
关于.net - 在 C# 模块中向 RegionManager 添加 View 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21268727/
我有一个自定义控件,它派生自用户控件。 public class CustomControl : ContentControl { public static readonly Depende
我有 Silverlight 4 应用程序和 PRISM 4,我正在使用 MEF。 我的 Shell 定义了一个加载模块的主要区域,我希望模块有自己的 RegionManager,因此它们定义的区域位
我正在 Prism 中编写应用程序。我有一个用户控件,包含两个 控制。这两个都有分配给他们的区域。用户控件托管在 Window 中。使用 ShowDialog() 显示. 我正在使用 View 发现将
我将 prism5 与 regionManager 一起使用。以下是我如何注册我的观点以及我如何尝试导航。 _container.RegisterType("MyView"); 这就是我的导航方式 _
我在使用方法时遇到问题 this.regionManager.RegisterViewWithRegion("TextRegion", typeof(TextView)); 如果我以某种方法在 Boo
我正在将 VB.NET PRISM 模块转换为 C#。这是一个非常简单的事情,目前在 VB.NET 中工作。它显示绑定(bind)到 ViewModel 的字符串值。 View 的 XAML(我将其切
我为 DevExpress 功能区编写了一个自定义区域适配器。 public class dxDocumentGroupRegionAdapter : RegionAdapterBase {
我正在开发一个 Prism 应用程序,它包含一个包含多个子区域的 TabControl。因此,我根据 Brian Lagunas 在他的 PluralSight 类(class)中描述的模式实现了自定
我正在使用 Prism用于在我的 WPF MVVM 应用程序中导航。我的观点如下。 // MyView is the data type of the view I want to register
我是一名优秀的程序员,十分优秀!