PWA Fundvelo der Caritas.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930
  1. @page "/counter"
  2. @inject NavigationManager NavigationManager
  3. <h1>Counter</h1>
  4. <p>Current count: @currentCount</p>
  5. <MatList>
  6. <MatListItem>
  7. <MatButton Raised="true" @onclick="IncrementCount">Click me!</MatButton>
  8. </MatListItem>
  9. <MatListItem>
  10. <MatButton Raised="true" @onclick="ShowCaritasWebpage">Erfahre mehr!</MatButton>
  11. </MatListItem>
  12. </MatList>
  13. @code {
  14. private int currentCount = 0;
  15. private void IncrementCount() {
  16. currentCount++;
  17. }
  18. private void ShowCaritasWebpage() {
  19. NavigationManager.NavigateTo("http://www.caritas.ch");
  20. }
  21. }