gpt4 book ai didi

javascript - 在 Windows 窗体中使用 javascript 的桌面通知

转载 作者:数据小太阳 更新时间:2023-10-29 04:51:02 26 4
gpt4 key购买 nike

我是新手,我正在创建一个简单的应用程序,我在其中单击一个按钮,桌面上应该会显示一条通知。我在 windows form c#

中执行此操作

错误是“NullReferenceException 未处理

我在 form1 中有一个按钮 Notify。我试过这个:

form1.cs

     public Form1()
{
InitializeComponent();
this.Load += new EventHandler(Form1_Load);
webBrowser1.DocumentCompleted += new WebBrowserDocumentCompletedEventHandler(webBrowser1_DocumentCompleted);
webBrowser1.ScriptErrorsSuppressed = true;
}

private void btnNotify_Click(object sender, EventArgs e)
{
webBrowser1.Document.InvokeScript("notifyMe");
}

private void Form1_Load(object sender, EventArgs e)
{
string CurrentDirectory = Directory.GetCurrentDirectory();
webBrowser1.Navigate(Path.Combine(CurrentDirectory,"HTMLPage1.html"));
}

private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
{
webBrowser1.ObjectForScripting = this;

HTMLPage1.html 的代码:

<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title></title>
<script language="javascript" type="text/javascript">
document.addEventListener('DOMContentLoaded', function () {
if (Notification.permission !== "granted")
Notification.requestPermission();
});

function notifyMe() {
if (!Notification) {
alert('Desktop notifications not available in your browser. Try Chromium.');
return;
}

if (Notification.permission !== "granted")
Notification.requestPermission();
else {
var notification = new Notification('Notification title', {
icon: 'http://cdn.sstatic.net/stackexchange/img/logos/so/so-icon.png',
body: "Hey there! You've been notified!",
});

notification.onclick = function () {
window.open("http://stackoverflow.com/a/13328397/1269037");
};

}

}
</script>
</head>
<body>

</body>
</html>

即使我只是将 alert("Hi") 放在 notifyMe() 函数中,也没有别的。仍然显示相同的错误。

ErrorMsg

最佳答案

我试过你的代码..你应该使用

document.attachEvent('DOMContentLoaded', function () {..

代替

document.addEventListener("..

从这里起...在这里阅读更多信息 https://stackoverflow.com/a/1695383/4155741

您还应该删除 .. body: "Hey there! You've been notified!", 末尾的那个逗号,因为它会阻止脚本被编译。

关于javascript - 在 Windows 窗体中使用 javascript 的桌面通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30950659/

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