10 references to PlaceholderElement
Microsoft.Maui.Controls (10)
InputView\InputView.cs (2)
32
public static readonly BindableProperty PlaceholderProperty =
PlaceholderElement
.PlaceholderProperty;
35
public static readonly BindableProperty PlaceholderColorProperty =
PlaceholderElement
.PlaceholderColorProperty;
Properties\AssemblyInfo.cs (2)
145
[assembly: StyleProperty("-maui-placeholder", typeof(IPlaceholderElement), nameof(
PlaceholderElement
.PlaceholderProperty))]
146
[assembly: StyleProperty("-maui-placeholder-color", typeof(IPlaceholderElement), nameof(
PlaceholderElement
.PlaceholderColorProperty))]
Shell\SearchHandler.cs (6)
160
public static readonly BindableProperty PlaceholderProperty =
PlaceholderElement
.PlaceholderProperty;
163
public static readonly BindableProperty PlaceholderColorProperty =
PlaceholderElement
.PlaceholderColorProperty;
248
get => (Color)GetValue(
PlaceholderElement
.PlaceholderColorProperty);
249
set => SetValue(
PlaceholderElement
.PlaceholderColorProperty, value);
255
get => (string)GetValue(
PlaceholderElement
.PlaceholderProperty);
256
set => SetValue(
PlaceholderElement
.PlaceholderProperty, value);