問題タブ [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.
c# - EventHandler に制約がない理由?
EventHandler がSystem.EventArgs 型に制約されていないことを偶然に (コンパイルするとは思わなかったものがコンパイルされたときに)わかりました。
インライン ドキュメントは次のとおりです。
これはドキュメントと実装の不一致ですか?
気になったので質問します。それはまったく苦情ではありません。
c# - timertickでMouseEventArgsをどのように使用しますか?
うまくいかない どうすればいいですか?
c# - FormClosingEventArgs を持つ EventHandler
Form.cs にこの終了フォーム コードがあります。
そして、私の Form.designer.cs のこのコード
ただし、「「label7_Click」のオーバーロードがデリゲート「System.EventHandler」と一致しません」というエラーが表示され続けます
私は何をすべきか?
c# - Sender c# による動的な NumericUpDown から値を取得する
私はかなり厄介な問題に遭遇しました。
私はこれらのグローバル変数を持っています(名前などを保持するため)
その後、データベース内のレコード数に応じて、NumericUpDowns を作成する関数があります。関数は次のようになります。
最後に、numericUpDown がユーザーによって変更されるたびに (numericupdown をクリックするか、数値を変更して) レコードを更新したいと考えています。
しかし、これを実行するたびに同じ問題が発生します..「オブジェクトを System.Windows.Forms.Button 型から System.Windows.Forms.NumericUpDown 型に変換できません」
NumericUpDown に入力された新しい数値に応じて、これを修正してレコードを更新するにはどうすればよいですか? 私はこれを機能させることができません.送信者がうまく機能していないことに関係していると感じています..
助けてくれてありがとう!イェンテ
c# - FormClosingEventArgs を使用した EventHandler - C#
Form.cs にこの終了フォーム コードがあります。
そして、私の Form.designer.cs のこのコード
ただし、エラーが表示され続けます
「'label7_Click' のオーバーロードはデリゲート 'System.EventHandler' と一致しません」
私は何をすべきか?
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!