Silverlight - 防止 OOB

发布于 2024-09-27 16:48:58 字数 57 浏览 1 评论 0原文

我想停用我的应用程序中的右键单击,该右键单击提供了在桌面上安装应用程序的选项。我该如何做这样的事情?

I would like to deactivate the right click in my app that offers the option to install the app on the desktop. How do I do such thing?

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

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

发布评论

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

评论(2

勿挽旧人 2024-10-04 16:48:58

右键单击 Visual Studio 中的项目并选择属性。那里有一个复选框“启用浏览器运行”选项。

Right click on the project in Visual Studio and select properties. There is a check-box "enable running out of browser" option there.

2024-10-04 16:48:58

对于旧版本的 SilverLight,这是一种来自 silverlight 论坛:

<div id="silverlightObjDiv">
    <!-- silverlight object here -->
</div>
<script>
document.getElementById('silverlightObjDiv').oncontextmenu = disableRightClick;
function disableRightClick(e) {
    if (!e) e = window.event;
    if (e.preventDefault) {
        e.preventDefault();
    } else {
        e.returnValue = false;
    }
}
</script>

如果您使用的是最新版本,您可以从项目的属性中禁用此行为。

Here's a hackish way to do it for older versions of SilverLight from a silverlight forum:

<div id="silverlightObjDiv">
    <!-- silverlight object here -->
</div>
<script>
document.getElementById('silverlightObjDiv').oncontextmenu = disableRightClick;
function disableRightClick(e) {
    if (!e) e = window.event;
    if (e.preventDefault) {
        e.preventDefault();
    } else {
        e.returnValue = false;
    }
}
</script>

If you are using a recent version, you can disable this behavior from the properties of your project.

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