Given the class:
public Class UploadTask
{
public double UploadProgress {get; set;}
public bool PbarIsVisible {get;set;}
....
Inside a RadzenListBox template i can bind a RadzenProgressBar value to the progress field with:
@bind-Value="(context as UploadTask).UploadProgress"
But, how can i bind the PbarIsVisible field to the visibility of the RadzenProgressBar?
Thanks!