7 implementations of ITextAlignmentElement
Microsoft.Maui.Controls (7)
Cells\EntryCell.cs (1)
9
public class EntryCell : Cell,
ITextAlignmentElement
, IEntryCellController, ITextAlignment
Editor\Editor.cs (1)
12
public partial class Editor : InputView, IEditorController,
ITextAlignmentElement
, IElementConfiguration<Editor>, IEditor
Entry\Entry.cs (1)
12
public partial class Entry : InputView,
ITextAlignmentElement
, IEntryController, IElementConfiguration<Entry>, IEntry
Label\Label.cs (1)
15
public partial class Label : View, IFontElement, ITextElement,
ITextAlignmentElement
, ILineHeightElement, IElementConfiguration<Label>, IDecorableTextElement, IPaddingElement, ILabel
Picker\Picker.cs (1)
16
public partial class Picker : View, IFontElement, ITextElement,
ITextAlignmentElement
, IElementConfiguration<Picker>, IPicker
SearchBar\SearchBar.cs (1)
11
public partial class SearchBar : InputView,
ITextAlignmentElement
, ISearchBarController, IElementConfiguration<SearchBar>, ICommandElement, ISearchBar
Shell\SearchHandler.cs (1)
14
public class SearchHandler : BindableObject, ISearchHandlerController, IPlaceholderElement, IFontElement, ITextElement,
ITextAlignmentElement
15 references to ITextAlignmentElement
Microsoft.Maui.Controls (15)
Cells\EntryCell.cs (1)
89
void
ITextAlignmentElement
.OnHorizontalTextAlignmentPropertyChanged(TextAlignment oldValue, TextAlignment newValue)
Entry\Entry.cs (1)
195
void
ITextAlignmentElement
.OnHorizontalTextAlignmentPropertyChanged(TextAlignment oldValue, TextAlignment newValue)
Label\Label.cs (1)
353
void
ITextAlignmentElement
.OnHorizontalTextAlignmentPropertyChanged(TextAlignment oldValue, TextAlignment newValue)
Picker\Picker.cs (1)
425
void
ITextAlignmentElement
.OnHorizontalTextAlignmentPropertyChanged(TextAlignment oldValue, TextAlignment newValue)
Properties\AssemblyInfo.cs (2)
121
[assembly: StyleProperty("text-align", typeof(
ITextAlignmentElement
), nameof(TextAlignmentElement.HorizontalTextAlignmentProperty), Inherited = true)]
125
[assembly: StyleProperty("vertical-align", typeof(
ITextAlignmentElement
), nameof(TextAlignmentElement.VerticalTextAlignmentProperty))]
SearchBar\SearchBar.cs (1)
144
void
ITextAlignmentElement
.OnHorizontalTextAlignmentPropertyChanged(TextAlignment oldValue, TextAlignment newValue)
Shell\SearchHandler.cs (1)
113
void
ITextAlignmentElement
.OnHorizontalTextAlignmentPropertyChanged(TextAlignment oldValue, TextAlignment newValue)
TextAlignmentElement.cs (7)
6
/// <summary>Bindable property for <see cref="
ITextAlignmentElement
.HorizontalTextAlignment"/>.</summary>
8
BindableProperty.Create(nameof(
ITextAlignmentElement
.HorizontalTextAlignment), typeof(TextAlignment), typeof(
ITextAlignmentElement
), TextAlignment.Start,
11
/// <summary>Bindable property for <see cref="
ITextAlignmentElement
.VerticalTextAlignment"/>.</summary>
13
BindableProperty.Create(nameof(
ITextAlignmentElement
.VerticalTextAlignment), typeof(TextAlignment), typeof(
ITextAlignmentElement
), TextAlignment.Center);
17
((
ITextAlignmentElement
)bindable).OnHorizontalTextAlignmentPropertyChanged((TextAlignment)oldValue, (TextAlignment)newValue);