を作成し、私は窓のポップアップをトリガーすることになっている次のコードを持っていますが、私は2つのエラーをデバッグするかどうかはわかりません?:C#のWindowsフォーム - C#のコーディングに新たなので、通知ポップアップに
private void button1_Click(object sender, EventArgs e)
{
PopupNotifier popup = new PopupNotifier();
popup.TitleText = "FoxLearn";
popup.ContentText = "Thank you for watching this video !";
popup.Popup();//Show
}
Error :CS0246 The type or namespace name 'PopupNotifier' could not be found (are you missing a using directive or an assembly reference)
どうすれば解決できますか?
PopupNotifierは[Tulpepプロジェクト](https://github.com/Tulpep/Notification-Popup-Window/blob/master/Tulpep.NotificationWindow/PopupNotifier.cs)です。あなたは 'Tulpep.NotificationWindow;を使用してファイルの上部にどこかに追加しましたか?私はあなたがナゲット経由でそれをインストールしたと仮定しています。 –