問題タブ [eventargs]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票する
1 に答える
1186 参照

c# - EventHandler に制約がない理由?

EventHandler がSystem.EventArgs 型に制約されていないことを偶然に (コンパイルするとは思わなかったものがコンパイルされたときに)わかりました。

インライン ドキュメントは次のとおりです。

これはドキュメントと実装の不一致ですか?

気になったので質問します。それはまったく苦情ではありません。

0 投票する
1 に答える
405 参照

c# - timertickでMouseEventArgsをどのように使用しますか?

うまくいかない どうすればいいですか?

0 投票する
2 に答える
894 参照

c# - FormClosingEventArgs を持つ EventHandler

Form.cs にこの終了フォーム コードがあります。

そして、私の Form.designer.cs のこのコード

ただし、「「label7_Click」のオーバーロードがデリゲート「System.EventHandler」と一致しません」というエラーが表示され続けます

私は何をすべきか?

0 投票する
3 に答える
7606 参照

c# - Sender c# による動的な NumericUpDown から値を取得する

私はかなり厄介な問題に遭遇しました。

私はこれらのグローバル変数を持っています(名前などを保持するため)

その後、データベース内のレコード数に応じて、NumericUpDowns を作成する関数があります。関数は次のようになります。

最後に、numericUpDown がユーザーによって変更されるたびに (numericupdown をクリックするか、数値を変更して) レコードを更新したいと考えています。

しかし、これを実行するたびに同じ問題が発生します..「オブジェクトを System.Windows.Forms.Button 型から System.Windows.Forms.NumericUpDown 型に変換できません」

NumericUpDown に入力された新しい数値に応じて、これを修正してレコードを更新するにはどうすればよいですか? 私はこれを機能させることができません.送信者がうまく機能していないことに関係していると感じています..

助けてくれてありがとう!イェンテ

0 投票する
3 に答える
3978 参照

c# - FormClosingEventArgs を使用した EventHandler - C#

Form.cs にこの終了フォーム コードがあります。

そして、私の Form.designer.cs のこのコード

ただし、エラーが表示され続けます

「'label7_Click' のオーバーロードはデリゲート 'System.EventHandler' と一致しません」

私は何をすべきか?

0 投票する
2 に答える
1415 参照

c# - C# Event Argument passing

Ok, so I have a question regarding the EventArgs that can be passed when an event is triggered. I am designing a small, basic search engine and have a class called Query that contains a method Search. When this method is called, I want to trigger an event which will pass the results to be storred in a variety of cache class instances (SizeBoundedCache and TimeBoundedCache). So I thought the best way to do this would be to use an event.

The delegate is declared like this ->

The rest of the code within the Query class relevant to this question is here (uses Linq) ->

All the cache classes will be notified whenever a search is called and I also need thme to receive the results.

Thanks so much in advance for the help. Also, if there is a more elegant way to do this that I am not thinking of, please chime in. Cheers!