2 writes to _icon
Microsoft.Maui.Controls (2)
Compatibility\Handlers\NavigationPage\iOS\NavigationRenderer.cs (2)
2015
_icon
= value;
2079
_icon
= null;
11 references to _icon
Microsoft.Maui.Controls (11)
Compatibility\Handlers\NavigationPage\iOS\NavigationRenderer.cs (11)
1966
nfloat IconHeight =>
_icon
?.Frame.Height ?? 0;
1967
nfloat IconWidth =>
_icon
?.Frame.Width ?? 0;
2012
if (
_icon
!= null)
2013
_icon
.RemoveFromSuperview();
2017
if (
_icon
!= null)
2018
AddSubview(
_icon
);
2037
if (
_icon
!= null)
2038
_icon
.Frame = new RectangleF(0, 0, IconWidth, Math.Min(toolbarHeight, IconHeight));
2046
else if (
_icon
!= null && Superview != null)
2048
_icon
.Center = new PointF(Superview.Frame.Width / 2 - Frame.X, Superview.Frame.Height / 2);
2078
_icon
?.Dispose();