namespace EgwCoreLib.BlazorTest.Pages { public partial class TestPdfViewer { protected string FileSel { get => fileSel; set { if (fileSel != value) { fileSel = value; StateHasChanged(); } } } protected string HeightSel { get => heightSel; set { if (heightSel != value) { heightSel = value; StateHasChanged(); } } } private string fileSel { get; set; } = "File01.pdf"; private string heightSel { get; set; } = "400px"; } }