Implemented interface member:
property
Opacity
Microsoft.Maui.IView.Opacity
3 writes to Opacity
Microsoft.Maui.Controls (3)
RadioButton\RadioButton.cs (1)
497 Opacity = 0,
TitleBar\TitleBar.cs (1)
475 Opacity = 0.7,
ViewExtensions.cs (1)
76 return AnimateTo(view, view.Opacity, opacity, nameof(FadeTo), (v, value) => v.Opacity = value, length, easing);
9 references to Opacity
Microsoft.Maui.Controls (7)
Compatibility\Handlers\TableView\iOS\TableViewRenderer.cs (1)
109 if (Element.Opacity < 1)
RadioButton\RadioButton.cs (1)
451 border.SetBinding(OpacityProperty, static (RadioButton rb) => rb.Opacity, source: RelativeBindingSource.TemplatedParent);
TitleBar\TitleBar.cs (1)
367 static (TitleBar tb) => tb.Opacity,
ViewExtensions.cs (1)
76 return AnimateTo(view, view.Opacity, opacity, nameof(FadeTo), (v, value) => v.Opacity = value, length, easing);
VisualElement\VisualElement.cs (3)
272 /// <summary>Bindable property for <see cref="Opacity"/>.</summary> 273 public static readonly BindableProperty OpacityProperty = BindableProperty.Create(nameof(Opacity), typeof(double), typeof(VisualElement), 1d, coerceValue: (bindable, value) => ((double)value).Clamp(0, 1)); 768 /// The opacity value has no effect unless <see cref="IsVisible"/> is <see langword="true"/>. The effective opacity of an element is the value of <see cref="Opacity"/> multiplied by the opacity of the element's <c>Parent</c>. If a parent has 0.5 opacity, and a child has 0.5 opacity, the child will render with an effective 0.25 opacity.
Microsoft.Maui.Controls.Compatibility (2)
Tizen\Renderers\VisualElementRenderer.cs (2)
591 if (initialize && Element.Opacity == 1d) 594 NativeView.Opacity = (float)Element.Opacity;