WPF 中的可锁定表面

发布于 2024-12-06 19:49:13 字数 117 浏览 1 评论 0原文

我想要一个 WPF 中的自定义控件,其外观类似于 HTML,我们用于在屏幕中央显示图像,整个屏幕锁定,并且仅显示图像。

我不想显示图像,我想在本节中显示用户控件。

有人可以对此提出建议吗?

I want a custom Control in WPF which have a appearance similar to HTML, we use for showing Images in the centre of the screen with the whole screen locked and only image is showing.

I dont want to show images, I want to show UserControls within this section.

Can someone give suggestions of this?

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

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

发布评论

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

评论(2

乖乖 2024-12-13 19:49:13

在窗口中,将所有控件放在一个网格中,并将边框控件(包含图像)作为网格中的最后一个项目(这意味着它将显示在其他项目的顶部)。通过绑定或代码切换其可见性。根据需要调整样式。

<Window>
    <Grid>

        <!-- window controls go here --->

        <Border Visibility="..." Background="#80000000"> <!-- EDITED -->

            <!-- overlaid image (and/or other controls) goes here --->
            <Image 
                Source="..." 
                Width="..."
                Height="..."
                HorizontalAlignment="Center" 
                VerticalAlignment="Center" />

        </Border>

    <Grid>
</Window>

In your Window, put all your controls in a single Grid, with a Border control (that contains your image) as the last item in the Grid (which means it will display on top of the other items). Toggle its Visibility via binding or code. Adjust styles as required.

<Window>
    <Grid>

        <!-- window controls go here --->

        <Border Visibility="..." Background="#80000000"> <!-- EDITED -->

            <!-- overlaid image (and/or other controls) goes here --->
            <Image 
                Source="..." 
                Width="..."
                Height="..."
                HorizontalAlignment="Center" 
                VerticalAlignment="Center" />

        </Border>

    <Grid>
</Window>
套路撩心 2024-12-13 19:49:13

在 Windows 应用程序中,这通常是使用模式对话框来实现的,即创建一个普通的 WPF 窗口并使用 ShowDialog

In Windows applications this is generally achieved using a modal dialog, i.e. you create a normal WPF window and show it using ShowDialog.

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