Implemented interface member:
property
InputTransparent
Microsoft.Maui.IView.InputTransparent
2 writes to InputTransparent
Microsoft.Maui.Controls (2)
RadioButton\RadioButton.cs (2)
487
InputTransparent
= false
498
InputTransparent
= false
11 references to InputTransparent
Microsoft.Maui.Controls (7)
Layout\Layout.cs (2)
368
/// when this layout's <see cref="VisualElement.
InputTransparent
" /> property is <see langword="true" />.
381
if (bindable is Layout layout && layout.
InputTransparent
)
LegacyLayouts\Layout.cs (2)
150
/// when this layout's <see cref="VisualElement.
InputTransparent
" /> property is <see langword="true" />.
753
if (bindable is Layout layout && layout.
InputTransparent
)
VisualElement\VisualElement.cs (3)
31
/// <summary>Bindable property for <see cref="
InputTransparent
"/>.</summary>
33
nameof(
InputTransparent
), typeof(bool), typeof(VisualElement), default(bool),
614
/// <para>Setting <see cref="
InputTransparent
"/> to <see langword="true"/> makes the element invisible to touch and pointer input. The input is passed to the first non-input-transparent element that is visually behind the input transparent element. </para>
Microsoft.Maui.Controls.Compatibility (4)
Tizen\Renderers\LayoutRenderer.cs (2)
60
if (initialize && Element.
InputTransparent
== default(bool))
73
if (Element.
InputTransparent
)
Tizen\Renderers\VisualElementRenderer.cs (2)
746
if (initialize && Element.
InputTransparent
== default(bool))
749
NativeView.Sensitive = !Element.
InputTransparent
;