UI_SequentMicrosystems-RPI/Pages/Start.razor

28 lines
380 B
Plaintext

@page "/"
@using UI_SequentMicrosystems.Services
@inject NavigationManager Navigator
@inject RTD8TMService _RTD8TMService
<PageTitle>Welcome</PageTitle>
<h1>TesDevice App V1.0</h1>
@code{
protected override void OnInitialized()
{
//_RTD8TMService.SetAddress("http://10.250.251.131/");
_RTD8TMService.SetAddress(Navigator.BaseUri);
}
}