gpt4 book ai didi

c# - 交互 - IInteractionRequestAware 属性未填充

转载 作者:太空宇宙 更新时间:2023-11-03 10:21:49 24 4
gpt4 key购买 nike

我试图在它自己的模块中创建一个自定义弹出窗口,这导致我遇到以下情况(PopupWindowAction 内的 ContentControl):

<i:Interaction.Triggers>
<prism:InteractionRequestTrigger SourceObject="{Binding Path=MyRequest, Mode=OneWay}">
<prism:PopupWindowAction IsModal="True" CenterOverAssociatedObject="True">
<prism:PopupWindowAction.WindowContent>
<ContentControl prism:RegionManager.RegionName="{x:Static inf:RegionNames.MyRegion}"/>
</prism:PopupWindowAction.WindowContent>
</prism:PopupWindowAction>
</prism:InteractionRequestTrigger>
</i:Interaction.Triggers>

View 很好地加载到弹出窗口中,但是 IInteractionRequestAware 属性(NotificationFinishInteraction)在 View 和 View 上都为 null型号。

这是设置这些属性的 Prism 源代码:

    /// <summary>
/// Checks if the WindowContent or its DataContext implements <see cref="IInteractionRequestAware"/>.
/// If so, it sets the corresponding value.
/// Also, if WindowContent does not have a RegionManager attached, it creates a new scoped RegionManager for it.
/// </summary>
/// <param name="notification">The notification to be set as a DataContext in the HostWindow.</param>
/// <param name="wrapperWindow">The HostWindow</param>
protected virtual void PrepareContentForWindow(INotification notification, Window wrapperWindow)
{
if (this.WindowContent == null)
{
return;
}

// We set the WindowContent as the content of the window.
wrapperWindow.Content = this.WindowContent;

Action<IInteractionRequestAware> setNotificationAndClose = (iira) =>
{
iira.Notification = notification;
iira.FinishInteraction = () => wrapperWindow.Close();
};

MvvmHelpers.ViewAndViewModelAction(this.WindowContent, setNotificationAndClose);
}

这是否意味着正在检查 ContentControl 对象以查看它是否实现了 IInteractionRequestAware 而不是我的 View 或 View 模型?

是否可以使用区域管理器指定一个自定义弹出 View ,所有注入(inject)都在发生,并且仍然设置了 IInteractionRequestAware 属性?

最佳答案

您有两个选择;创建一个实现适当接口(interface)的自定义 ContentControl。或者,改为创建和使用对话服务。我实际上建议改用对话框服务,因为您想要更动态的弹出行为。 PluralSight 类(class)“Prism 问题与解决方案:显示多个 Shell”中介绍了对话服务。

关于c# - 交互 - IInteractionRequestAware 属性未填充,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33223198/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com