Events
Important Points:
- The list of available classes in MAUI can be seen here;
- The
EventHandlertype is basically a delegate that executes the attached methods whenever relevant; - We cannot use the assignment operator (
=) to add a method to anEventHandler.EventHandlersupports+=and-=operators; - A method which is binded to an EventHandler needs to have the following signature:
void methodName(object sender, EventArgs e);;
Tudo estava claro?
Obrigado pelo seu feedback!
Seção 2. Capítulo 3
Pergunte à IA
Pergunte à IA
Pergunte o que quiser ou experimente uma das perguntas sugeridas para iniciar nosso bate-papo
Suggested prompts:
Pergunte-me perguntas sobre este assunto
Resumir este capítulo
Mostrar exemplos do mundo real
Awesome!
Completion rate improved to 3.7
Events
Deslize para mostrar o menu
Important Points:
- The list of available classes in MAUI can be seen here;
- The
EventHandlertype is basically a delegate that executes the attached methods whenever relevant; - We cannot use the assignment operator (
=) to add a method to anEventHandler.EventHandlersupports+=and-=operators; - A method which is binded to an EventHandler needs to have the following signature:
void methodName(object sender, EventArgs e);;
Tudo estava claro?
Obrigado pelo seu feedback!
Seção 2. Capítulo 3