diff --git a/DotNet/ASP.NET/Blazor.md b/DotNet/ASP.NET/Blazor.md index 218e6db..f228c8a 100644 --- a/DotNet/ASP.NET/Blazor.md +++ b/DotNet/ASP.NET/Blazor.md @@ -331,6 +331,50 @@ public class StateContainer } ``` +## Data Binding & Events + +```cs +
+ + // prevent default action + // prevent default action if CONDITION is true + + + // stop event propagation if CONDITION is true + +
+ +@code { + private ElementReference elementReference; + + public string Property { get; set; } + + public EventCallback