19 lines
428 B
C#
19 lines
428 B
C#
namespace EgwCoreLib.BlazorTest.Pages
|
|
{
|
|
public partial class TestPdfViewer
|
|
{
|
|
protected string FileSel
|
|
{
|
|
get => fileSel;
|
|
set
|
|
{
|
|
if (fileSel != value)
|
|
{
|
|
fileSel = value;
|
|
StateHasChanged();
|
|
}
|
|
}
|
|
}
|
|
private string fileSel { get; set; } = "File01.pdf";
|
|
}
|
|
} |