ContentTemplate 不适用于 DXWindow?

发布于 2024-10-21 10:44:24 字数 1070 浏览 0 评论 0原文

我想在我的窗口中使用 ContentTemplate 属性。首先,我尝试使用标准 Window 类:

<Window.ContentTemplate>
    <DataTemplate>
        <DockPanel LastChildFill="true">
            <TextBlock DockPanel.Dock="Top">Hello world</TextBlock>
            <ContentPresenter Content="{Binding}" />
        </DockPanel>
    </DataTemplate>
</Window.ContentTemplate>
<Button>TestButton</Button>

这按照我想要的方式工作:

在此处输入图像描述

现在尝试执行相同的操作DXWindow 的事情(我正在使用 DevExpress 10.2.4 版本):

<dx:DXWindow.ContentTemplate>
    <DataTemplate>
        <DockPanel LastChildFill="true">
            <TextBlock DockPanel.Dock="Top">Hello world</TextBlock>
            <ContentPresenter Content="{Binding}" />
        </DockPanel>
    </DataTemplate>
</dx:DXWindow.ContentTemplate>
<Button>TestButton</Button>

但这不起作用,看起来这个属性被忽略

是否可以修复此行为?

谢谢。

I want to use a ContentTemplate property with my window. First I tried it with standard Window class:

<Window.ContentTemplate>
    <DataTemplate>
        <DockPanel LastChildFill="true">
            <TextBlock DockPanel.Dock="Top">Hello world</TextBlock>
            <ContentPresenter Content="{Binding}" />
        </DockPanel>
    </DataTemplate>
</Window.ContentTemplate>
<Button>TestButton</Button>

This works the way I want:

enter image description here

Now try to do the same thing with DXWindow (I'm using DevExpress 10.2.4 version):

<dx:DXWindow.ContentTemplate>
    <DataTemplate>
        <DockPanel LastChildFill="true">
            <TextBlock DockPanel.Dock="Top">Hello world</TextBlock>
            <ContentPresenter Content="{Binding}" />
        </DockPanel>
    </DataTemplate>
</dx:DXWindow.ContentTemplate>
<Button>TestButton</Button>

But this does not work, looks like this property is ignored

enter image description here

Is it possible to fix this behavior?

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不必你懂 2024-10-28 10:44:24

我看到此 xaml 存在问题(在最新版本 (10.2.5) 中失败并出现错误):

带有 ContentPresenter 的 DXWindow.ContentTemplate 引发异常

我们将来会修复此问题。

您能否解释一下为什么您使用 ContentTemplate 并且不想将这两个控件直接添加到 DXWindow。

I see the problem with this xaml (it fails with error in the latest version (10.2.5)):

The DXWindow.ContentTemplate with the ContentPresenter raises exception

We will fix this issue in the future.

Could you please explain why you are using ContentTemplate and do not want to add both controls directly to DXWindow.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文