Control.BackgroundImageLayoutChanged イベント

定義

BackgroundImageLayout プロパティが変更されたときに発生します。

public:
 event EventHandler ^ BackgroundImageLayoutChanged;
public event EventHandler BackgroundImageLayoutChanged;
public event EventHandler? BackgroundImageLayoutChanged;
member this.BackgroundImageLayoutChanged : EventHandler 
Public Custom Event BackgroundImageLayoutChanged As EventHandler 

イベントの種類

次のコード例では、このメンバーの使用方法を示します。 この例では、イベント ハンドラーがイベントの BackgroundImageLayoutChanged 発生を報告します。 このレポートは、イベントが発生したタイミングを知るのに役立ち、デバッグに役立ちます。 複数のイベントまたは頻繁に発生するイベントを報告するには、 を Console.WriteLine に置き換えるかMessageBox.Show、複数行TextBoxにメッセージを追加することを検討してください。

コード例を実行するには、 や ComboBoxなどButton、 からControl継承する型のインスタンスを含むプロジェクトに貼り付けます。 次に、インスタンス Control1 に名前を付け、イベント ハンドラーがイベントに BackgroundImageLayoutChanged 関連付けられていることを確認します。

private void Control1_BackgroundImageLayoutChanged(Object sender, EventArgs e) {

   MessageBox.Show("You are in the Control.BackgroundImageLayoutChanged event.");
}
Private Sub Control1_BackgroundImageLayoutChanged(sender as Object, e as EventArgs) _ 
     Handles Control1.BackgroundImageLayoutChanged

   MessageBox.Show("You are in the Control.BackgroundImageLayoutChanged event.")

End Sub

注釈

このイベントは、プロパティが BackgroundImageLayout プログラムによって、またはユーザーの操作によって変更された場合に発生します。

イベントの処理の詳細については、「処理とイベントの発生」を参照してください。

適用対象

こちらもご覧ください