26 references to CharacterSpacingProperty
Microsoft.Maui.Controls (26)
Button\Button.cs (3)
54 public static readonly BindableProperty CharacterSpacingProperty = TextElement.CharacterSpacingProperty; 243 get { return (double)GetValue(TextElement.CharacterSpacingProperty); } 244 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)
34 public static readonly BindableProperty CharacterSpacingProperty = TextElement.CharacterSpacingProperty; 100 get { return (double)GetValue(TextElement.CharacterSpacingProperty); } 101 set { SetValue(TextElement.CharacterSpacingProperty, value); }
InputView\InputView.cs (1)
44 public static readonly BindableProperty CharacterSpacingProperty = TextElement.CharacterSpacingProperty;
Label\Label.cs (3)
30 public static readonly BindableProperty CharacterSpacingProperty = TextElement.CharacterSpacingProperty; 171 get { return (double)GetValue(TextElement.CharacterSpacingProperty); } 172 set { SetValue(TextElement.CharacterSpacingProperty, value); }
Picker\Picker.cs (3)
25 public static readonly BindableProperty CharacterSpacingProperty = TextElement.CharacterSpacingProperty; 172 get { return (double)GetValue(TextElement.CharacterSpacingProperty); } 173 set { SetValue(TextElement.CharacterSpacingProperty, value); }
Properties\AssemblyInfo.cs (1)
131[assembly: StyleProperty("letter-spacing", typeof(ITextElement), nameof(TextElement.CharacterSpacingProperty), Inherited = true)]
RadioButton\RadioButton.cs (1)
79 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)
20 public static readonly BindableProperty CharacterSpacingProperty = TextElement.CharacterSpacingProperty; 68 get { return (double)GetValue(TextElement.CharacterSpacingProperty); } 69 set { SetValue(TextElement.CharacterSpacingProperty, value); }