Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
Du führst diesen Code aus.Trivalik hat gesagt.:Und wie soll ich mir das vorstellen wie das Funktionieren soll? Wenn ich jetzt ein Mausklick auf den Start Button machen möchte.
btnStart_Click( new object(), new System.EventArgs() );
Werd mal genauer bitte, ich versteh nicht was Du machen willst.Trivalik hat gesagt.:ein Automatischen ablauf machen kann von eingabe über Tastatur und Maus
MSDN Article submitted By: Kaustav Neogy hat gesagt.:hook is a point in the system message-handling mechanism where an application can install a subroutine to monitor the message traffic in the system and process certain types of messages before they reach the target window procedure. While the .NET framework library has wrapped a significant portion of the Win32 API, there are numerous areas where we have to resort to P/Invoke to get at the functionality we need. Hooks are one of those areas. One likely reason for this is that hooks are pretty low-level things, which most programs rarely need. Another is that they are intimately tied to the message based nature of the Windows API itself. They would likely not be portable to any other operating system. Windows hooks are implemented using callback functions.
Microsoft hat gesagt.:A hook is a point in the system message-handling mechanism where an application can install a subroutine to monitor the message traffic in the system and process certain types of messages before they reach the target window procedure.