This commit is contained in:
James Clancey 2022-01-20 16:20:03 -09:00
Родитель 1486e3addf
Коммит 560d81f094
2 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -34,6 +34,8 @@ namespace Comet
protected Action<View> PerformNavigate { get; set; }
IToolbar INavigationView.Toolbar => null;
protected override void OnHandlerChange()
{
if (_views.Count == 0 && Content != null)

Просмотреть файл

@ -782,7 +782,7 @@ namespace Comet
IShadow IView.Shadow => this.GetEnvironment<Graphics.Shadow>(EnvironmentKeys.View.Shadow);
//int IView.ZIndex => this.GetEnvironment<int?>(nameof(IView.ZIndex)) ?? 0;
int IView.ZIndex => this.GetEnvironment<int?>(nameof(IView.ZIndex)) ?? 0;
Size IView.Arrange(Rectangle bounds)
{