mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-17 18:14:22 +00:00
19 lines
341 B
Plaintext
19 lines
341 B
Plaintext
@namespace Oqtane.Themes.Controls
|
|
@inherits ContainerBase
|
|
|
|
@title
|
|
|
|
@code {
|
|
string title = "";
|
|
|
|
protected override Task OnParametersSetAsync()
|
|
{
|
|
title = ModuleState.Title;
|
|
if (PageState.Control == "Settings")
|
|
{
|
|
title = PageState.Control;
|
|
}
|
|
return Task.CompletedTask;
|
|
}
|
|
}
|