@code{ [Parameter] public string Title{ get; set; } = ""; [Parameter] public DirObj[]? Children{ get; set; } [Parameter] public string PartialPath{ get; set; } = ""; public string collapseStyle = "none"; void OpenCollapseable() { if (collapseStyle == "block") { collapseStyle = "none"; } else { collapseStyle = "block"; } } void Download(string Path) { Nav.NavigateTo( "api/product/download?Product=" + PartialPath + Path, true ); } }