WPF webbrowser's LoadCompleted event

后端 未结 3 1559
面向向阳花
面向向阳花 2021-01-21 12:26

When will the WPF webbrowser\'s LoadCompleted event fires? Is this event waits for any ajax calls to complete in the aspx page.

i have a wpf app in which a webbrowser co

3条回答
  •  难免孤独
    2021-01-21 12:50

    If you understand the below page life cycle of .NET web model, you will get the bigger picture.

    1. Page_PreInit
    2. List item
    3. Page_Init
    4. Page_InitComplete
    5. Page_PreLoad
    6. Page_Load
    7. Control Events
    8. Page_LoadComplete
    9. Page_PreRender
    10. SaveViewState
    11. Page_Render
    12. Page_Unload

提交回复
热议问题