2 writes to _bpProxies
Microsoft.Maui.Controls (2)
MultiBinding.cs (2)
154 _bpProxies = new BindableProperty[Bindings.Count]; 241 _bpProxies = null;
11 references to _bpProxies
Microsoft.Maui.Controls (11)
MultiBinding.cs (11)
121 for (var i = 0; i < Math.Min(_bpProxies.Length, values.Length); i++) 125 _proxyObject.SetValue(_bpProxies[i], values[i]); 152 if (_bpProxies == null) 161 var bp = _bpProxies[i] = BindableProperty.Create($"mb-proxy{i}", typeof(object), typeof(MultiBinding), null, bindingMode, propertyChanged: OnBindingChanged); 192 var valuearray = new object[_bpProxies.Length]; 193 for (var i = 0; i < _bpProxies.Length; i++) 194 valuearray[i] = _proxyObject.GetValue(_bpProxies[i]); 218 var types = new Type[_bpProxies.Length]; 219 for (var i = 0; i < _bpProxies.Length; i++) 237 if (_bpProxies != null && _proxyObject != null) 238 foreach (var proxybp in _bpProxies)