Close/minimize/maximize moved to left size

Dani_S 4,501 Reputation points
2024-01-16T15:38:55.2366667+00:00

Hi, I moved to vs 17.8.4 .NET 8 and close/minimize/maximize of maui app moved to left size is by desin ?User's image

Developer technologies | .NET | .NET MAUI
{count} votes

Accepted answer
  1. Yonglun Liu (Shanghai Wicresoft Co,.Ltd.) 50,126 Reputation points Microsoft External Staff
    2024-01-18T02:56:24.4566667+00:00

    Hello,

    MAUI officially provides a way to set LTR or RTL.

    Please refer to the following documentation and code snippets.

    // override the method of the page
    protected override void OnHandlerChanged()
    {
        base.OnHandlerChanged();
    
        Window.FlowDirection = FlowDirection.LeftToRight;
    }
    

    Best Regards,

    Alec Liu.


    If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.