11 references to OpacityProperty
Microsoft.Maui.Controls (10)
Compatibility\Handlers\iOS\VisualElementRenderer.cs (1)
61 e.PropertyName == VisualElement.OpacityProperty.PropertyName ||
Properties\AssemblyInfo.cs (1)
114[assembly: StyleProperty("opacity", typeof(VisualElement), nameof(VisualElement.OpacityProperty))]
RadioButton\RadioButton.cs (3)
451 border.SetBinding(OpacityProperty, static (RadioButton rb) => rb.Opacity, source: RelativeBindingSource.TemplatedParent); 588 checkedVisualState.Setters.Add(new Setter() { Property = OpacityProperty, TargetName = CheckedIndicator, Value = 1 }); 613 uncheckedVisualState.Setters.Add(new Setter() { Property = OpacityProperty, TargetName = CheckedIndicator, Value = 0 });
TitleBar\TitleBar.cs (3)
366 OpacityProperty, 442 Property = Label.OpacityProperty, 451 Property = Label.OpacityProperty,
VisualElement\VisualElement.cs (2)
773 get { return (double)GetValue(OpacityProperty); } 774 set { SetValue(OpacityProperty, value); }
Microsoft.Maui.Controls.Compatibility (1)
Tizen\Renderers\VisualElementRenderer.cs (1)
42 RegisterPropertyHandler(VisualElement.OpacityProperty, UpdateOpacity);