| File: PlatformConfiguration\WindowsSpecific\Application.cs | Web Access |
| Project: src\src\Controls\src\Core\Controls.Core.csproj (Microsoft.Maui.Controls) |
#nullable disable namespace Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific { using Microsoft.Extensions.DependencyInjection; using FormsElement = Maui.Controls.Application; /// <include file="../../../../docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/Application.xml" path="Type[@FullName='Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application']/Docs/*" /> public static class Application { /// <summary>Bindable property for attached property <c>ImageDirectory</c>.</summary> public static readonly BindableProperty ImageDirectoryProperty = BindableProperty.Create("ImageDirectory", typeof(string), typeof(FormsElement), string.Empty, propertyChanged: OnImageDirectoryChanged); /// <include file="../../../../docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/Application.xml" path="//Member[@MemberName='SetImageDirectory'][1]/Docs/*" /> public static void SetImageDirectory(BindableObject element, string value) { element.SetValue(ImageDirectoryProperty, value); } /// <include file="../../../../docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/Application.xml" path="//Member[@MemberName='GetImageDirectory'][2]/Docs/*" /> public static string GetImageDirectory(this IPlatformElementConfiguration<Windows, FormsElement> config) { return (string)config.Element.GetValue(ImageDirectoryProperty); } /// <include file="../../../../docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/Application.xml" path="//Member[@MemberName='GetImageDirectory'][1]/Docs/*" /> public static string GetImageDirectory(BindableObject element) { return (string)element.GetValue(ImageDirectoryProperty); } /// <include file="../../../../docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/Application.xml" path="//Member[@MemberName='SetImageDirectory'][2]/Docs/*" /> public static IPlatformElementConfiguration<Windows, FormsElement> SetImageDirectory( this IPlatformElementConfiguration<Windows, FormsElement> config, string value) { config.Element.SetValue(ImageDirectoryProperty, value); return config; } static void OnImageDirectoryChanged(BindableObject bindable, object oldValue, object newValue) { // TODO: somehow pass this onto Core } } }