2 instantiations of Image
Microsoft.Maui.Controls (2)
Shell\BaseShellItem.cs (1)
454
var image = new
Image
();
TitleBar\TitleBar.cs (1)
405
var icon = new
Image
()
29 references to Image
Microsoft.Maui.Controls (29)
DragAndDrop\DropGestureRecognizer.cs (1)
137
if (Parent is
Image
image)
Hosting\AppHostBuilderExtensions.cs (1)
75
handlersCollection.AddHandler<
Image
, ImageHandler>();
Image\Image.cs (6)
11
public partial class Image : View, IImageController, IElementConfiguration<
Image
>, IViewController, IImageElement, IImage
22
internal static readonly BindablePropertyKey IsLoadingPropertyKey = BindableProperty.CreateReadOnly(nameof(IsLoading), typeof(bool), typeof(
Image
), default(bool));
30
readonly Lazy<PlatformConfigurationRegistry<
Image
>> _platformConfigurationRegistry;
35
_platformConfigurationRegistry = new Lazy<PlatformConfigurationRegistry<
Image
>>(() => new PlatformConfigurationRegistry<
Image
>(this));
88
public IPlatformElementConfiguration<T,
Image
> On<T>() where T : IConfigPlatform
Layout\FlexLayout.cs (1)
509
if (child is
Image
)
PlatformConfiguration\TizenSpecific\Image.cs (9)
5
using FormsElement = Maui.Controls.
Image
;
11
public static readonly BindableProperty BlendColorProperty = BindableProperty.Create("BlendColor", typeof(Color), typeof(
FormsElement
), null);
14
public static readonly BindableProperty FileProperty = BindableProperty.Create("File", typeof(string), typeof(
FormsElement
), default(string));
29
public static Color GetBlendColor(this IPlatformElementConfiguration<Tizen,
FormsElement
> config)
35
public static IPlatformElementConfiguration<Tizen,
FormsElement
> SetBlendColor(this IPlatformElementConfiguration<Tizen,
FormsElement
> config, Color color)
54
public static string GetFile(this IPlatformElementConfiguration<Tizen,
FormsElement
> config)
60
public static IPlatformElementConfiguration<Tizen,
FormsElement
> SetFile(this IPlatformElementConfiguration<Tizen,
FormsElement
> config, string file)
Shell\BaseShellItem.cs (9)
331
flyoutItemCell.Children.OfType<
Image
>().First()
373
var defaultImageClass = new Style(typeof(
Image
))
376
new Setter { Property =
Image
.VerticalOptionsProperty, Value = LayoutOptions.Center }
454
var
image = new Image();
468
defaultImageClass.Setters.Add(new Setter() { Property =
Image
.HeightRequestProperty, Value = sizeRequest });
469
defaultImageClass.Setters.Add(new Setter() { Property =
Image
.WidthRequestProperty, Value = sizeRequest });
474
defaultImageClass.Setters.Add(new Setter { Property =
Image
.HorizontalOptionsProperty, Value = LayoutOptions.Start });
475
defaultImageClass.Setters.Add(new Setter { Property =
Image
.MarginProperty, Value = new Thickness(12, 0, 12, 0) });
478
defaultImageClass.Setters.Add(new Setter { Property =
Image
.SourceProperty, Value = imageBinding });
TitleBar\TitleBar.cs (2)
405
var
icon = new Image()
418
Image
.SourceProperty,