26 references to CharacterSpacingProperty
Microsoft.Maui.Controls (26)
Button\Button.cs (3)
52 public static readonly BindableProperty CharacterSpacingProperty = TextElement.CharacterSpacingProperty; 241 get { return (double)GetValue(TextElement.CharacterSpacingProperty); } 242 set { SetValue(TextElement.CharacterSpacingProperty, value); }
ContentConverter.cs (2)
75 if (ShouldSetBinding(content, TextElement.CharacterSpacingProperty)) 77 content.SetBinding(TextElement.CharacterSpacingProperty, static (ITextElement te) => te.CharacterSpacing, source: source);
DatePicker\DatePicker.cs (3)
32 public static readonly BindableProperty CharacterSpacingProperty = TextElement.CharacterSpacingProperty; 98 get { return (double)GetValue(TextElement.CharacterSpacingProperty); } 99 set { SetValue(TextElement.CharacterSpacingProperty, value); }
InputView\InputView.cs (1)
41 public static readonly BindableProperty CharacterSpacingProperty = TextElement.CharacterSpacingProperty;
Label\Label.cs (3)
27 public static readonly BindableProperty CharacterSpacingProperty = TextElement.CharacterSpacingProperty; 168 get { return (double)GetValue(TextElement.CharacterSpacingProperty); } 169 set { SetValue(TextElement.CharacterSpacingProperty, value); }
Picker\Picker.cs (3)
22 public static readonly BindableProperty CharacterSpacingProperty = TextElement.CharacterSpacingProperty; 169 get { return (double)GetValue(TextElement.CharacterSpacingProperty); } 170 set { SetValue(TextElement.CharacterSpacingProperty, value); }
Properties\AssemblyInfo.cs (1)
128[assembly: StyleProperty("letter-spacing", typeof(ITextElement), nameof(TextElement.CharacterSpacingProperty), Inherited = true)]
RadioButton\RadioButton.cs (1)
76 public static readonly BindableProperty CharacterSpacingProperty = TextElement.CharacterSpacingProperty;
Shell\SearchHandler.cs (3)
135 public static readonly BindableProperty CharacterSpacingProperty = TextElement.CharacterSpacingProperty; 208 get { return (double)GetValue(TextElement.CharacterSpacingProperty); } 209 set { SetValue(TextElement.CharacterSpacingProperty, value); }
Span.cs (3)
59 public static readonly BindableProperty CharacterSpacingProperty = TextElement.CharacterSpacingProperty; 64 get { return (double)GetValue(TextElement.CharacterSpacingProperty); } 65 set { SetValue(TextElement.CharacterSpacingProperty, value); }
TimePicker\TimePicker.cs (3)
18 public static readonly BindableProperty CharacterSpacingProperty = TextElement.CharacterSpacingProperty; 66 get { return (double)GetValue(TextElement.CharacterSpacingProperty); } 67 set { SetValue(TextElement.CharacterSpacingProperty, value); }