You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
521 B
24 lines
521 B
@page "/parameter-parent-2"
|
|
|
|
<ParameterChild Title="@title" />
|
|
|
|
<ParameterChild Title="@GetTitle()" />
|
|
|
|
<ParameterChild Title="@DateTime.Now.ToLongDateString()" />
|
|
|
|
<ParameterChild Title="@panelData.Title" />
|
|
|
|
@code {
|
|
private string title = "From Parent field";
|
|
private PanelData panelData = new();
|
|
|
|
private string GetTitle()
|
|
{
|
|
return "From Parent method";
|
|
}
|
|
|
|
private class PanelData
|
|
{
|
|
public string Title { get; set; } = "From Parent object";
|
|
}
|
|
} |