Skip to content

Commit

Permalink
Update Entry.cs (#11250)
Browse files Browse the repository at this point in the history
Co-authored-by: Gerald Versluis <gerald.versluis@microsoft.com>
  • Loading branch information
github-actions[bot] and jfversluis authored Nov 10, 2022
1 parent 6c15e16 commit 2b4e0be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Controls/src/Core/Entry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,9 @@ public partial class Entry : InputView, IFontElement, ITextAlignmentElement, IEn
public static readonly BindableProperty SelectionLengthProperty = BindableProperty.Create(nameof(SelectionLength), typeof(int), typeof(Entry), 0, validateValue: (b, v) => (int)v >= 0);

/// <summary>
/// Backing store for the <see cref="SelectionLength"/> property.
/// Backing store for the <see cref="ClearButtonVisibility"/> property.
/// </summary>
public static readonly BindableProperty ClearButtonVisibilityProperty = BindableProperty.Create(nameof(SelectionLength), typeof(ClearButtonVisibility), typeof(Entry), ClearButtonVisibility.Never);
public static readonly BindableProperty ClearButtonVisibilityProperty = BindableProperty.Create(nameof(ClearButtonVisibility), typeof(ClearButtonVisibility), typeof(Entry), ClearButtonVisibility.Never);

readonly Lazy<PlatformConfigurationRegistry<Entry>> _platformConfigurationRegistry;

Expand Down

0 comments on commit 2b4e0be

Please sign in to comment.