19 lines
367 B
C#
19 lines
367 B
C#
namespace Lux.UI.Components.Compo.Common
|
|
{
|
|
public partial class CmpHeader
|
|
{
|
|
[Parameter]
|
|
public string CurrLang { get; set; } = null!;
|
|
|
|
|
|
|
|
[Parameter]
|
|
public EventCallback<string> EC_LangSelected { get; set; }
|
|
|
|
private Task SaveLang()
|
|
{
|
|
return EC_LangSelected.InvokeAsync(CurrLang);
|
|
}
|
|
|
|
}
|
|
} |