How to troubleshoot the error 'A cycle occurred while laying out the GUI'?

1.1k Views Asked by At

I am exploring MAUI RC on Windows using Visual Studio 2022 17.2 Preview and I keep getting what seems to be an random / inconsistent error:

A cycle occurred while laying out the GUI: Layout cycle detected.  Layout could not complete.

Cycle exception

Here is the XAML from the main XAML page:

<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             x:Class="Sys.GatewaySimulator.Views.MainPage"
             xmlns:templates="clr-namespace:Sys.GatewaySimulator.Templates"
             xmlns:views="clr-namespace:Sys.GatewaySimulator.Views.Components"
             BackgroundColor="{DynamicResource SecondaryColor}">
    <ContentPage.MenuBarItems>
        ..
    </ContentPage.MenuBarItems>
    <Grid>
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="192" />
            <ColumnDefinition Width="50*" />
            <ColumnDefinition Width="50*" />
        </Grid.ColumnDefinitions>
        <Grid.RowDefinitions>
            <RowDefinition Height="80*" />
            <RowDefinition Height="20*" />
        </Grid.RowDefinitions>
        <views:DevicesView
            Grid.Column="0" Grid.Row="0" Grid.RowSpan="2"
            DevicesComponentViewModel="{Binding DevicesComponentViewModel}"
            />
        <views:PropertiesView
            Grid.Column="1" Grid.Row="0" Grid.RowSpan="2" 
            DeviceViewModel="{Binding DevicesComponentViewModel.SelectedDevice}"
            />
        <views:DesiredPropertiesView
            Grid.Column="2" Grid.Row="0" Grid.RowSpan="2" 
            DeviceViewModel="{Binding DevicesComponentViewModel.SelectedDevice}"
            />
    </Grid>
</ContentPage>

I understood from the different pieces I gathered that something could supposedly be wrong with my XAML but I have a hard time to figure it out, especially since the error is not consistent. Sometimes it appears, some other time it does not.

The exception itself does not give much information about the cycle:

enter image description here

enter image description here

The callback is minimal:

Hilo.Sys.GatewaySimulator.dll!Hilo.Sys.GatewaySimulator.WinUI.App.InitializeComponent.AnonymousMethod__1_1(object sender, Microsoft.UI.Xaml.UnhandledExceptionEventArgs e) Line 68 C#

Question

How can I troubleshoot this error to properly fix it? Is there a tool in VS I can use to find the Cycle myself? Is there any logs to activate?

0

There are 0 best solutions below