2 writes to _icon
Microsoft.Maui.Controls (2)
Compatibility\Handlers\NavigationPage\iOS\NavigationRenderer.cs (2)
1978
_icon
= value;
2042
_icon
= null;
11 references to _icon
Microsoft.Maui.Controls (11)
Compatibility\Handlers\NavigationPage\iOS\NavigationRenderer.cs (11)
1929
nfloat IconHeight =>
_icon
?.Frame.Height ?? 0;
1930
nfloat IconWidth =>
_icon
?.Frame.Width ?? 0;
1975
if (
_icon
!= null)
1976
_icon
.RemoveFromSuperview();
1980
if (
_icon
!= null)
1981
AddSubview(
_icon
);
2000
if (
_icon
!= null)
2001
_icon
.Frame = new RectangleF(0, 0, IconWidth, Math.Min(toolbarHeight, IconHeight));
2009
else if (
_icon
!= null && Superview != null)
2011
_icon
.Center = new PointF(Superview.Frame.Width / 2 - Frame.X, Superview.Frame.Height / 2);
2041
_icon
?.Dispose();