6 interfaces inheriting from ITextStyle
Microsoft.Maui (6)
Core\IDatePicker.cs (1)
8
public interface IDatePicker : IView,
ITextStyle
Core\IEditor.cs (1)
6
public interface IEditor : IView, ITextInput,
ITextStyle
, ITextAlignment
Core\IPicker.cs (1)
10
public interface IPicker : IView,
ITextStyle
, ITextAlignment, IItemDelegate<string>
Core\IRadioButton.cs (1)
6
public interface IRadioButton : IView,
ITextStyle
, IContentView, IButtonStroke
Core\IText.cs (1)
6
public interface IText :
ITextStyle
Core\ITimePicker.cs (1)
8
public interface ITimePicker : IView,
ITextStyle
41 references to ITextStyle
Microsoft.Maui (24)
Handlers\Button\ButtonHandler.cs (3)
30
[nameof(
ITextStyle
.CharacterSpacing)] = MapCharacterSpacing,
31
[nameof(
ITextStyle
.Font)] = MapFont,
32
[nameof(
ITextStyle
.TextColor)] = MapTextColor,
Handlers\Button\ButtonHandler.Standard.cs (3)
13
public static void MapTextColor(IButtonHandler handler,
ITextStyle
button) { }
14
public static void MapCharacterSpacing(IButtonHandler handler,
ITextStyle
button) { }
15
public static void MapFont(IButtonHandler handler,
ITextStyle
button) { }
Handlers\DatePicker\DatePickerHandler.cs (3)
108
/// Maps the abstract <see cref="
ITextStyle
.CharacterSpacing"/> property to the platform-specific implementations.
115
/// Maps the abstract <see cref="
ITextStyle
.Font"/> property to the platform-specific implementations.
122
/// Maps the abstract <see cref="
ITextStyle
.TextColor"/> property to the platform-specific implementations.
Handlers\Label\LabelHandler.cs (3)
31
[nameof(
ITextStyle
.CharacterSpacing)] = MapCharacterSpacing,
32
[nameof(
ITextStyle
.Font)] = MapFont,
38
[nameof(
ITextStyle
.TextColor)] = MapTextColor,
Handlers\RadioButton\RadioButtonHandler.cs (3)
23
[nameof(
ITextStyle
.CharacterSpacing)] = MapCharacterSpacing,
24
[nameof(
ITextStyle
.Font)] = MapFont,
25
[nameof(
ITextStyle
.TextColor)] = MapTextColor,
Handlers\RadioButton\RadioButtonHandler.Standard.cs (3)
12
public static void MapTextColor(IRadioButtonHandler handler,
ITextStyle
textStyle) { }
13
public static void MapCharacterSpacing(IRadioButtonHandler handler,
ITextStyle
textStyle) { }
14
public static void MapFont(IRadioButtonHandler handler,
ITextStyle
textStyle) { }
Handlers\SwipeItemMenuItem\SwipeItemMenuItemHandler.cs (3)
25
[nameof(
ITextStyle
.TextColor)] = MapTextColor,
26
[nameof(
ITextStyle
.CharacterSpacing)] = MapCharacterSpacing,
27
[nameof(
ITextStyle
.Font)] = MapFont,
Handlers\SwipeItemMenuItem\SwipeItemMenuItemHandler.Standard.cs (3)
14
public static void MapTextColor(ISwipeItemMenuItemHandler handler,
ITextStyle
view) { }
16
public static void MapCharacterSpacing(ISwipeItemMenuItemHandler handler,
ITextStyle
view) { }
18
public static void MapFont(ISwipeItemMenuItemHandler handler,
ITextStyle
view) { }
Microsoft.Maui.Controls (17)
Button\Button.cs (2)
400
Handler?.UpdateValue(nameof(
ITextStyle
.Font));
505
Font
ITextStyle
.Font => this.ToFont();
DatePicker\DatePicker.cs (2)
147
Handler?.UpdateValue(nameof(
ITextStyle
.Font));
229
Font
ITextStyle
.Font => this.ToFont();
InputView\InputView.cs (2)
251
Handler?.UpdateValue(nameof(
ITextStyle
.Font));
255
Font
ITextStyle
.Font => this.ToFont();
Label\Label.cs (2)
259
Handler?.UpdateValue(nameof(
ITextStyle
.Font));
415
Font
ITextStyle
.Font => this.ToFont();
Menu\MenuItem.cs (3)
154
Color
ITextStyle
.TextColor => null;
156
Font
ITextStyle
.Font => Font.Default;
158
double
ITextStyle
.CharacterSpacing => 0;
Picker\Picker.cs (2)
128
Handler?.UpdateValue(nameof(
ITextStyle
.Font));
430
Font
ITextStyle
.Font => this.ToFont();
RadioButton\RadioButton.cs (2)
258
Handler?.UpdateValue(nameof(
ITextStyle
.Font));
644
Font
ITextStyle
.Font => this.ToFont();
TimePicker\TimePicker.cs (2)
134
Handler?.UpdateValue(nameof(
ITextStyle
.Font));
156
Font
ITextStyle
.Font => this.ToFont();