다음을 통해 공유


Windows 기본 이미지 디렉터리

이 .NET 다중 플랫폼 앱 UI(.NET MAUI) Windows 플랫폼별은 이미지 자산이 로드될 프로젝트의 디렉터리를 정의합니다. 이미지 자산이 포함된 프로젝트 디렉터리를 나타내는 값으로 string 설정 Application.ImageDirectory 하여 XAML에서 사용합니다.

<Application xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             xmlns:windows="clr-namespace:Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific;assembly=Microsoft.Maui.Controls"
             ...
             windows:Application.ImageDirectory="Assets">
    ...
</Application>

또는 흐름 API를 사용하여 C#에서 사용할 수 있습니다.

using Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific;
...
Application.Current.On<Microsoft.Maui.Controls.PlatformConfiguration.Windows>().SetImageDirectory("Assets");

이 메서드는 Application.On<Microsoft.Maui.Controls.PlatformConfiguration.Windows> 이 플랫폼별이 Windows만 실행되도록 지정합니다. Application.SetImageDirectory 네임스페이 Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific 스의 메서드는 이미지를 로드할 프로젝트 디렉터리를 지정하는 데 사용됩니다. 또한 이 메서드를 GetImageDirectory 사용하여 앱 이미지 자산이 포함된 프로젝트 디렉터리를 나타내는 메서드를 반환 string 할 수 있습니다.

그 결과 앱에 사용되는 모든 이미지가 지정된 프로젝트 디렉터리에서 로드됩니다.