개발노트

26. [.NET MAUI] xaml에서 컨트롤 맨 앞으로 보내기 본문

앱 개발/.NET MAUI

26. [.NET MAUI] xaml에서 컨트롤 맨 앞으로 보내기

mroh1226 2022. 9. 15. 14:43
반응형

xaml에 작성된 Control들을 맨앞으로, 맨뒤로 자유롭게 우선순위를 둬서 보여지게하고 싶다면 ZIndex를 사용하면된다.

숫자가 클수록 앞에 위치하게되며 모든 컨트롤에서 사용가능하다.

 

 

- 참고링크: https://www.syncfusion.com/blogs/post/handling-overlay-elements-in-net-maui-with-zindex.aspx

 

Handling Overlay Elements in .NET MAUI with ZIndex | Syncfusion Blogs

In the .NET MAUI Preview 12 release, the ZIndex property was introduced to handle overlay elements in the view. Here’s all you need to know about the ZIndex property.

www.syncfusion.com


적용된 모습

2번째로 작성된  skiaLSKLottieView 가 ZIndex ="3"으로 제일 큰 값을 갖기 때문에 가장 앞에 위치,

1번째로 작성된  skiaLSKLottieView 가 ZIndex ="2"로 그 다음, 

StackLayOut 이 ZIndex ="1"으로 가장 작은 값을 갖기 때문에 가장 뒤에 위치한다.

 

반응형
Comments