Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
WPF ウィンドウが開いたら、マウス クリック イベントを処理する準備ができている必要があります。ウィンドウが閉じられるまで、このイベントを処理する必要があります。
ウィンドウで共有動作を持つ単一の関数を作成し、ロードされたハンドラーとボタン クリック ハンドラーの両方からその関数を呼び出すことができます。
お気に入り-
void MainWindow_Loaded(object sender, RoutedEventArgs e) { button1_Click(sender, new RoutedEventArgs()); }