Implemented interface member:
property
NativeView
Microsoft.Maui.Controls.Compatibility.Platform.Tizen.IVisualElementRenderer.NativeView
2 writes to NativeView
Microsoft.Maui.Controls.Compatibility (2)
Tizen\Renderers\VisualElementRenderer.cs (2)
298
NativeView
= null;
415
NativeView
= control;
42 references to NativeView
Microsoft.Maui.Controls.Compatibility (42)
Tizen\Renderers\DefaultRenderer.cs (1)
11
if (
NativeView
== null)
Tizen\Renderers\LayoutRenderer.cs (3)
79
NativeView
.Sensitive = false;
85
NativeView
.Sensitive = true;
95
NativeView
.Sensitive = true;
Tizen\Renderers\NavigationPageRenderer.cs (2)
33
NavigationStack Control =>
NativeView
as NavigationStack;
39
if (
NativeView
== null)
Tizen\Renderers\ViewRenderer.cs (1)
30
return (TNativeView)
NativeView
;
Tizen\Renderers\VisualElementRenderer.cs (35)
134
if (null ==
NativeView
)
149
if (
NativeView
is IMeasurable nativeViewMeasurable)
198
SendVisualElementInitialized(newElement,
NativeView
);
240
if (null !=
NativeView
)
294
if (
NativeView
!= null)
296
NativeView
.Unparent();
297
NativeView
.Dispose();
343
(
NativeView
as IBatchable)?.BatchBegin();
345
(
NativeView
as IBatchable)?.BatchCommit();
409
if (
NativeView
!= null)
411
NativeView
.FocusGained -= OnFocused;
412
NativeView
.FocusLost -= OnUnfocused;
417
if (
NativeView
!= null)
419
NativeView
.FocusGained += OnFocused;
420
NativeView
.FocusLost += OnUnfocused;
462
NativeView
.UpdateBounds(Element.Bounds.ToPixel());
556
return
NativeView
.MinimumSize.ToDP();
573
NativeView
.UpdateBackgroundColor(Element.BackgroundColor.ToNative());
594
NativeView
.Opacity = (float)Element.Opacity;
629
if (
NativeView
is IContainable<NView> containerView)
640
if (
NativeView
is IContainable<NView> containerObject)
688
FocusManager.Instance.SetCurrentFocusView(
NativeView
);
699
effect.Control =
NativeView
;
717
if (null !=
NativeView
)
721
NativeView
.Show();
725
NativeView
.Hide();
738
NativeView
.SetEnable(Element.IsEnabled);
749
NativeView
.Sensitive = !Element.InputTransparent;
770
NativeView
.Focusable = (bool)isFocusAllowed;
850
NativeView
.Orientation = totalRotation;
866
NativeView
.ScaleX = (float)scaleX;
867
NativeView
.ScaleY = (float)scaleY;
879
NativeView
.UpdatePosition(new TPoint(pos.X + shiftX, pos.Y + shiftY));
886
NativeView
.PivotPoint = new Position((float)Element.AnchorX, (float)Element.AnchorY, 0);
891
if (null ==
NativeView
)