Sdílet prostřednictvím


SystemEvents.PaletteChanged Událost

Definice

Nastane, když uživatel přepne na aplikaci, která používá jinou paletu.

public:
 static event EventHandler ^ PaletteChanged;
public static event EventHandler PaletteChanged;
public static event EventHandler? PaletteChanged;
member this.PaletteChanged : EventHandler 
Public Shared Custom Event PaletteChanged As EventHandler 

Event Type

Výjimky

Oznámení systémových událostí nejsou v aktuálním kontextu podporována. Serverové procesy například nemusí podporovat oznámení globálních systémových událostí.

Pokus o vytvoření vlákna okna systémových událostí nebyl úspěšný.

Příklady

Následující příklad kódu ukazuje, jak monitorovat PaletteChanged událost. Tento příklad kódu je součástí většího příkladu SystemEvents pro třídu.

int main()
{
    // Set the SystemEvents class to receive event notification
    // when a user preference changes, the palette changes, or
    // when display settings change.
    SystemEvents::UserPreferenceChanging += gcnew
        UserPreferenceChangingEventHandler(
        SystemEvents_UserPreferenceChanging);
    SystemEvents::PaletteChanged += gcnew
        EventHandler(SystemEvents_PaletteChanged);
    SystemEvents::DisplaySettingsChanged += gcnew
        EventHandler(SystemEvents_DisplaySettingsChanged);

    // For demonstration purposes, this application sits idle
    // waiting for events.
    Console::WriteLine("This application is waiting for system events.");
    Console::WriteLine("Press <Enter> to terminate this application.");
    Console::ReadLine();
}
static void Main() 
{         
    // Set the SystemEvents class to receive event notification when a user 
    // preference changes, the palette changes, or when display settings change.
    SystemEvents.UserPreferenceChanging += new 
        UserPreferenceChangingEventHandler(SystemEvents_UserPreferenceChanging);
    SystemEvents.PaletteChanged += new 
        EventHandler(SystemEvents_PaletteChanged);
    SystemEvents.DisplaySettingsChanged += new 
        EventHandler(SystemEvents_DisplaySettingsChanged);        

    // For demonstration purposes, this application sits idle waiting for events.
    Console.WriteLine("This application is waiting for system events.");
    Console.WriteLine("Press <Enter> to terminate this application.");
    Console.ReadLine();
}
'Set the SystemEvents class to receive event notification 
'when a user preference changes, the palette changes, or 
'when display settings change.
AddHandler SystemEvents.UserPreferenceChanging, _
AddressOf SystemEvents_UserPreferenceChanging

AddHandler SystemEvents.PaletteChanged, _
AddressOf SystemEvents_PaletteChanged

AddHandler SystemEvents.DisplaySettingsChanged, _
AddressOf SystemEvents_DisplaySettingsChanged

Poznámky

Poznámka

Tato událost je vyvolána pouze v případě, že je spuštěné čerpadlo zpráv. Ve službě systému Windows se tato událost nevyvolá, pokud není použit skrytý formulář nebo pokud není pumpa zpráv spuštěna ručně. Příklad kódu, který ukazuje, jak zpracovávat systémové události pomocí skrytého formuláře ve službě systému Windows, najdete ve SystemEvents třídě .

Upozornění

Vzhledem k tomu, že se jedná o statickou událost, musíte při odstranění aplikace odpojit obslužné rutiny událostí, jinak dojde k nevracení paměti.

Platí pro