Доработка строки состояния

This commit is contained in:
FrigaT
2026-04-22 14:48:50 +03:00
parent 0f9dd1a8d8
commit d17ed30175
2 changed files with 212 additions and 73 deletions

View File

@@ -7,21 +7,9 @@
protected override void OnParametersSet()
{
bool isChanged = false;
if (ContextualActionBarService.Content != ChildContent)
{
ContextualActionBarService.Content = ChildContent;
isChanged = true;
}
if (ContextualActionBarService.Bottom != Bottom)
{
ContextualActionBarService.Bottom = Bottom;
isChanged = true;
}
if (isChanged) ContextualActionBarService.ChangeParameters();
ContextualActionBarService.Content = ChildContent;
ContextualActionBarService.Bottom = Bottom;
ContextualActionBarService.ChangeParameters();
}
public void Dispose()