Skip to content

Commit 5387b70

Browse files
committed
Make some internals public
1 parent 15185a6 commit 5387b70

11 files changed

+231
-46
lines changed
+17-8
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,18 @@
1-
#nullable disable
2-
namespace Microsoft.Maui.Controls
1+
namespace Microsoft.Maui.Controls;
2+
3+
/// <summary>
4+
/// Defines properties for elements that can have rounded corners.
5+
/// </summary>
6+
/// <remarks>
7+
/// This interface is implemented by UI elements that support corner radius customization,
8+
/// allowing for consistent styling of corners across different controls.
9+
/// </remarks>
10+
public interface ICornerElement
311
{
4-
interface ICornerElement
5-
{
6-
//note to implementor: implement this property publicly
7-
CornerRadius CornerRadius { get; }
8-
}
9-
}
12+
/// <summary>
13+
/// Gets the radius for the corners of the element.
14+
/// </summary>
15+
/// <value>A <see cref="CornerRadius"/> value that specifies the radius for each corner of the element. The default value depends on the implementing control.</value>
16+
/// <remarks>Implementors should implement this property publicly.</remarks>
17+
CornerRadius CornerRadius { get; }
18+
}
+22-10
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,25 @@
1-
#nullable disable
2-
using System.ComponentModel;
1+
namespace Microsoft.Maui.Controls;
32

4-
namespace Microsoft.Maui.Controls.Internals
3+
/// <summary>
4+
/// Defines properties and methods for elements that support line height customization.
5+
/// </summary>
6+
/// <remarks>
7+
/// This interface is implemented by UI elements that need to control the spacing between lines of text,
8+
/// providing consistent line height behavior across different text-based controls.
9+
/// </remarks>
10+
public interface ILineHeightElement
511
{
6-
[EditorBrowsable(EditorBrowsableState.Never)]
7-
interface ILineHeightElement
8-
{
9-
double LineHeight { get; }
12+
/// <summary>
13+
/// Gets the line height for text displayed by this element.
14+
/// </summary>
15+
/// <value>A multiplier that determines the spacing between lines of text. A value of 1.0 represents standard line height.</value>
16+
double LineHeight { get; }
1017

11-
void OnLineHeightChanged(double oldValue, double newValue);
12-
}
13-
}
18+
/// <summary>
19+
/// Called when the <see cref="LineHeight"/> property changes.
20+
/// </summary>
21+
/// <param name="oldValue">The old value of the property.</param>
22+
/// <param name="newValue">The new value of the property.</param>
23+
/// <remarks>Implementors should implement this method explicitly.</remarks>
24+
void OnLineHeightChanged(double oldValue, double newValue);
25+
}
+30-11
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,33 @@
1-
#nullable disable
2-
namespace Microsoft.Maui.Controls
1+
namespace Microsoft.Maui.Controls;
2+
3+
/// <summary>
4+
/// Defines properties and methods for elements that support text alignment.
5+
/// </summary>
6+
/// <remarks>
7+
/// This interface is implemented by UI elements that need to control the horizontal and vertical
8+
/// alignment of displayed text.
9+
/// </remarks>
10+
public interface ITextAlignmentElement
311
{
4-
interface ITextAlignmentElement
5-
{
6-
//note to implementor: implement the properties publicly
7-
TextAlignment HorizontalTextAlignment { get; }
12+
/// <summary>
13+
/// Gets the horizontal alignment of the text.
14+
/// </summary>
15+
/// <value>A <see cref="TextAlignment"/> value that specifies how the text is horizontally aligned. The default value depends on the implementing control.</value>
16+
/// <remarks>Implementors should implement this property publicly.</remarks>
17+
TextAlignment HorizontalTextAlignment { get; }
818

9-
TextAlignment VerticalTextAlignment { get; }
19+
/// <summary>
20+
/// Gets the vertical alignment of the text.
21+
/// </summary>
22+
/// <value>A <see cref="TextAlignment"/> value that specifies how the text is vertically aligned. The default value depends on the implementing control.</value>
23+
/// <remarks>Implementors should implement this property publicly.</remarks>
24+
TextAlignment VerticalTextAlignment { get; }
1025

11-
//note to implementor: but implement the methods explicitly
12-
void OnHorizontalTextAlignmentPropertyChanged(TextAlignment oldValue, TextAlignment newValue);
13-
}
14-
}
26+
/// <summary>
27+
/// Called when the <see cref="HorizontalTextAlignment"/> property changes.
28+
/// </summary>
29+
/// <param name="oldValue">The old value of the property.</param>
30+
/// <param name="newValue">The new value of the property.</param>
31+
/// <remarks>Implementors should implement this method explicitly.</remarks>
32+
void OnHorizontalTextAlignmentPropertyChanged(TextAlignment oldValue, TextAlignment newValue);
33+
}

src/Controls/src/Core/ITextElement.cs

+54-17
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,64 @@
11
#nullable disable
2-
using System;
3-
using Microsoft.Maui.Controls.Internals;
42
using Microsoft.Maui.Graphics;
53

6-
namespace Microsoft.Maui.Controls
4+
namespace Microsoft.Maui.Controls;
5+
6+
/// <summary>
7+
/// Defines properties and methods for elements that display text.
8+
/// </summary>
9+
/// <remarks>
10+
/// This interface is implemented by UI elements that can display text and allows consistent
11+
/// text styling and formatting across different controls.
12+
/// </remarks>
13+
public interface ITextElement
714
{
8-
interface ITextElement
9-
{
10-
//note to implementor: implement this property publicly
11-
Color TextColor { get; }
15+
/// <summary>
16+
/// Gets the color of the text.
17+
/// </summary>
18+
/// <value>The <see cref="Color"/> of the text. The default value depends on the implementing control.</value>
19+
/// <remarks>Implementors should implement this property publicly.</remarks>
20+
Color TextColor { get; }
1221

13-
//note to implementor: but implement this method explicitly
14-
void OnTextColorPropertyChanged(Color oldValue, Color newValue);
22+
/// <summary>
23+
/// Called when the <see cref="TextColor"/> property changes.
24+
/// </summary>
25+
/// <param name="oldValue">The old value of the property.</param>
26+
/// <param name="newValue">The new value of the property.</param>
27+
/// <remarks>Implementors should implement this method explicitly.</remarks>
28+
void OnTextColorPropertyChanged(Color oldValue, Color newValue);
1529

16-
double CharacterSpacing { get; }
30+
/// <summary>
31+
/// Gets the character spacing.
32+
/// </summary>
33+
/// <value>The spacing between characters in the text, in device-independent units. The default is 0.</value>
34+
double CharacterSpacing { get; }
1735

18-
//note to implementor: but implement these methods explicitly
19-
void OnCharacterSpacingPropertyChanged(double oldValue, double newValue);
36+
/// <summary>
37+
/// Called when the <see cref="CharacterSpacing"/> property changes.
38+
/// </summary>
39+
/// <param name="oldValue">The old value of the property.</param>
40+
/// <param name="newValue">The new value of the property.</param>
41+
/// <remarks>Implementors should implement this method explicitly.</remarks>
42+
void OnCharacterSpacingPropertyChanged(double oldValue, double newValue);
2043

21-
TextTransform TextTransform { get; set; }
44+
/// <summary>
45+
/// Gets or sets the text transformation.
46+
/// </summary>
47+
/// <value>A <see cref="TextTransform"/> value that indicates how the text is transformed. The default is <see cref="TextTransform.None"/>.</value>
48+
TextTransform TextTransform { get; set; }
2249

23-
void OnTextTransformChanged(TextTransform oldValue, TextTransform newValue);
50+
/// <summary>
51+
/// Called when the <see cref="TextTransform"/> property changes.
52+
/// </summary>
53+
/// <param name="oldValue">The old value of the property.</param>
54+
/// <param name="newValue">The new value of the property.</param>
55+
void OnTextTransformChanged(TextTransform oldValue, TextTransform newValue);
2456

25-
string UpdateFormsText(string original, TextTransform transform);
26-
}
27-
}
57+
/// <summary>
58+
/// Updates the text according to the specified transformation.
59+
/// </summary>
60+
/// <param name="original">The original text to transform.</param>
61+
/// <param name="transform">The transformation to apply.</param>
62+
/// <returns>The transformed text.</returns>
63+
string UpdateFormsText(string original, TextTransform transform);
64+
}

src/Controls/src/Core/PublicAPI/net-android/PublicAPI.Unshipped.txt

+15
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,22 @@
1111
*REMOVED*~Microsoft.Maui.Controls.NavigableElement.StyleClass.set -> void
1212
Microsoft.Maui.Controls.HybridWebView.InvokeJavaScriptAsync(string! methodName, object?[]? paramValues = null, System.Text.Json.Serialization.Metadata.JsonTypeInfo?[]? paramJsonTypeInfos = null) -> System.Threading.Tasks.Task!
1313
Microsoft.Maui.Controls.HybridWebView.SetInvokeJavaScriptTarget<T>(T! target) -> void
14+
Microsoft.Maui.Controls.ICornerElement
15+
Microsoft.Maui.Controls.ICornerElement.CornerRadius.get -> Microsoft.Maui.CornerRadius
16+
Microsoft.Maui.Controls.ILineHeightElement
17+
Microsoft.Maui.Controls.ILineHeightElement.LineHeight.get -> double
18+
Microsoft.Maui.Controls.ILineHeightElement.OnLineHeightChanged(double oldValue, double newValue) -> void
1419
Microsoft.Maui.Controls.Internals.TextTransformUtilities
20+
Microsoft.Maui.Controls.ITextAlignmentElement
21+
Microsoft.Maui.Controls.ITextAlignmentElement.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment
22+
Microsoft.Maui.Controls.ITextAlignmentElement.OnHorizontalTextAlignmentPropertyChanged(Microsoft.Maui.TextAlignment oldValue, Microsoft.Maui.TextAlignment newValue) -> void
23+
Microsoft.Maui.Controls.ITextAlignmentElement.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment
24+
Microsoft.Maui.Controls.ITextElement
25+
Microsoft.Maui.Controls.ITextElement.CharacterSpacing.get -> double
26+
Microsoft.Maui.Controls.ITextElement.OnCharacterSpacingPropertyChanged(double oldValue, double newValue) -> void
27+
Microsoft.Maui.Controls.ITextElement.OnTextTransformChanged(Microsoft.Maui.TextTransform oldValue, Microsoft.Maui.TextTransform newValue) -> void
28+
Microsoft.Maui.Controls.ITextElement.TextTransform.get -> Microsoft.Maui.TextTransform
29+
Microsoft.Maui.Controls.ITextElement.TextTransform.set -> void
1530
Microsoft.Maui.Controls.ShadowTypeConverter
1631
Microsoft.Maui.Controls.ShadowTypeConverter.ShadowTypeConverter() -> void
1732
Microsoft.Maui.Controls.StyleableElement.Style.get -> Microsoft.Maui.Controls.Style?

src/Controls/src/Core/PublicAPI/net-ios/PublicAPI.Unshipped.txt

+15
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,21 @@ static Microsoft.Maui.Controls.ViewExtensions.TranslateToAsync(this Microsoft.Ma
9393
*REMOVED*~Microsoft.Maui.Controls.NavigableElement.StyleClass.set -> void
9494
Microsoft.Maui.Controls.HybridWebView.InvokeJavaScriptAsync(string! methodName, object?[]? paramValues = null, System.Text.Json.Serialization.Metadata.JsonTypeInfo?[]? paramJsonTypeInfos = null) -> System.Threading.Tasks.Task!
9595
Microsoft.Maui.Controls.HybridWebView.SetInvokeJavaScriptTarget<T>(T! target) -> void
96+
Microsoft.Maui.Controls.ICornerElement
97+
Microsoft.Maui.Controls.ICornerElement.CornerRadius.get -> Microsoft.Maui.CornerRadius
98+
Microsoft.Maui.Controls.ILineHeightElement
99+
Microsoft.Maui.Controls.ILineHeightElement.LineHeight.get -> double
100+
Microsoft.Maui.Controls.ILineHeightElement.OnLineHeightChanged(double oldValue, double newValue) -> void
101+
Microsoft.Maui.Controls.ITextAlignmentElement
102+
Microsoft.Maui.Controls.ITextAlignmentElement.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment
103+
Microsoft.Maui.Controls.ITextAlignmentElement.OnHorizontalTextAlignmentPropertyChanged(Microsoft.Maui.TextAlignment oldValue, Microsoft.Maui.TextAlignment newValue) -> void
104+
Microsoft.Maui.Controls.ITextAlignmentElement.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment
105+
Microsoft.Maui.Controls.ITextElement
106+
Microsoft.Maui.Controls.ITextElement.CharacterSpacing.get -> double
107+
Microsoft.Maui.Controls.ITextElement.OnCharacterSpacingPropertyChanged(double oldValue, double newValue) -> void
108+
Microsoft.Maui.Controls.ITextElement.OnTextTransformChanged(Microsoft.Maui.TextTransform oldValue, Microsoft.Maui.TextTransform newValue) -> void
109+
Microsoft.Maui.Controls.ITextElement.TextTransform.get -> Microsoft.Maui.TextTransform
110+
Microsoft.Maui.Controls.ITextElement.TextTransform.set -> void
96111
~Microsoft.Maui.Controls.ResourceDictionary.SetAndCreateSource<T>(System.Uri value) -> void
97112
~Microsoft.Maui.Controls.WebViewProcessTerminatedEventArgs.PlatformArgs.get -> Microsoft.Maui.Controls.PlatformWebViewProcessTerminatedEventArgs
98113
~Microsoft.Maui.Controls.Xaml.IXamlTypeResolver.Resolve(string qualifiedTypeName, System.IServiceProvider serviceProvider = null, bool expandToExtension = true) -> System.Type

src/Controls/src/Core/PublicAPI/net-maccatalyst/PublicAPI.Unshipped.txt

+15
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,21 @@ static Microsoft.Maui.Controls.ViewExtensions.TranslateToAsync(this Microsoft.Ma
9393
*REMOVED*~Microsoft.Maui.Controls.NavigableElement.StyleClass.set -> void
9494
Microsoft.Maui.Controls.HybridWebView.InvokeJavaScriptAsync(string! methodName, object?[]? paramValues = null, System.Text.Json.Serialization.Metadata.JsonTypeInfo?[]? paramJsonTypeInfos = null) -> System.Threading.Tasks.Task!
9595
Microsoft.Maui.Controls.HybridWebView.SetInvokeJavaScriptTarget<T>(T! target) -> void
96+
Microsoft.Maui.Controls.ICornerElement
97+
Microsoft.Maui.Controls.ICornerElement.CornerRadius.get -> Microsoft.Maui.CornerRadius
98+
Microsoft.Maui.Controls.ILineHeightElement
99+
Microsoft.Maui.Controls.ILineHeightElement.LineHeight.get -> double
100+
Microsoft.Maui.Controls.ILineHeightElement.OnLineHeightChanged(double oldValue, double newValue) -> void
101+
Microsoft.Maui.Controls.ITextAlignmentElement
102+
Microsoft.Maui.Controls.ITextAlignmentElement.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment
103+
Microsoft.Maui.Controls.ITextAlignmentElement.OnHorizontalTextAlignmentPropertyChanged(Microsoft.Maui.TextAlignment oldValue, Microsoft.Maui.TextAlignment newValue) -> void
104+
Microsoft.Maui.Controls.ITextAlignmentElement.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment
105+
Microsoft.Maui.Controls.ITextElement
106+
Microsoft.Maui.Controls.ITextElement.CharacterSpacing.get -> double
107+
Microsoft.Maui.Controls.ITextElement.OnCharacterSpacingPropertyChanged(double oldValue, double newValue) -> void
108+
Microsoft.Maui.Controls.ITextElement.OnTextTransformChanged(Microsoft.Maui.TextTransform oldValue, Microsoft.Maui.TextTransform newValue) -> void
109+
Microsoft.Maui.Controls.ITextElement.TextTransform.get -> Microsoft.Maui.TextTransform
110+
Microsoft.Maui.Controls.ITextElement.TextTransform.set -> void
96111
~Microsoft.Maui.Controls.ResourceDictionary.SetAndCreateSource<T>(System.Uri value) -> void
97112
~Microsoft.Maui.Controls.Internals.TypedBindingBase.UpdateSourceEventName.set -> void
98113
~Microsoft.Maui.Controls.Xaml.IXamlTypeResolver.Resolve(string qualifiedTypeName, System.IServiceProvider serviceProvider = null, bool expandToExtension = true) -> System.Type

src/Controls/src/Core/PublicAPI/net-tizen/PublicAPI.Unshipped.txt

+15
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,22 @@
1111
*REMOVED*~Microsoft.Maui.Controls.NavigableElement.StyleClass.set -> void
1212
Microsoft.Maui.Controls.HybridWebView.InvokeJavaScriptAsync(string! methodName, object?[]? paramValues = null, System.Text.Json.Serialization.Metadata.JsonTypeInfo?[]? paramJsonTypeInfos = null) -> System.Threading.Tasks.Task!
1313
Microsoft.Maui.Controls.HybridWebView.SetInvokeJavaScriptTarget<T>(T! target) -> void
14+
Microsoft.Maui.Controls.ICornerElement
15+
Microsoft.Maui.Controls.ICornerElement.CornerRadius.get -> Microsoft.Maui.CornerRadius
16+
Microsoft.Maui.Controls.ILineHeightElement
17+
Microsoft.Maui.Controls.ILineHeightElement.LineHeight.get -> double
18+
Microsoft.Maui.Controls.ILineHeightElement.OnLineHeightChanged(double oldValue, double newValue) -> void
1419
Microsoft.Maui.Controls.Internals.TextTransformUtilities
20+
Microsoft.Maui.Controls.ITextAlignmentElement
21+
Microsoft.Maui.Controls.ITextAlignmentElement.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment
22+
Microsoft.Maui.Controls.ITextAlignmentElement.OnHorizontalTextAlignmentPropertyChanged(Microsoft.Maui.TextAlignment oldValue, Microsoft.Maui.TextAlignment newValue) -> void
23+
Microsoft.Maui.Controls.ITextAlignmentElement.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment
24+
Microsoft.Maui.Controls.ITextElement
25+
Microsoft.Maui.Controls.ITextElement.CharacterSpacing.get -> double
26+
Microsoft.Maui.Controls.ITextElement.OnCharacterSpacingPropertyChanged(double oldValue, double newValue) -> void
27+
Microsoft.Maui.Controls.ITextElement.OnTextTransformChanged(Microsoft.Maui.TextTransform oldValue, Microsoft.Maui.TextTransform newValue) -> void
28+
Microsoft.Maui.Controls.ITextElement.TextTransform.get -> Microsoft.Maui.TextTransform
29+
Microsoft.Maui.Controls.ITextElement.TextTransform.set -> void
1530
Microsoft.Maui.Controls.ShadowTypeConverter
1631
Microsoft.Maui.Controls.ShadowTypeConverter.ShadowTypeConverter() -> void
1732
Microsoft.Maui.Controls.StyleableElement.Style.get -> Microsoft.Maui.Controls.Style?

src/Controls/src/Core/PublicAPI/net-windows/PublicAPI.Unshipped.txt

+15
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,22 @@
1111
*REMOVED*~Microsoft.Maui.Controls.NavigableElement.StyleClass.set -> void
1212
Microsoft.Maui.Controls.HybridWebView.InvokeJavaScriptAsync(string! methodName, object?[]? paramValues = null, System.Text.Json.Serialization.Metadata.JsonTypeInfo?[]? paramJsonTypeInfos = null) -> System.Threading.Tasks.Task!
1313
Microsoft.Maui.Controls.HybridWebView.SetInvokeJavaScriptTarget<T>(T! target) -> void
14+
Microsoft.Maui.Controls.ICornerElement
15+
Microsoft.Maui.Controls.ICornerElement.CornerRadius.get -> Microsoft.Maui.CornerRadius
16+
Microsoft.Maui.Controls.ILineHeightElement
17+
Microsoft.Maui.Controls.ILineHeightElement.LineHeight.get -> double
18+
Microsoft.Maui.Controls.ILineHeightElement.OnLineHeightChanged(double oldValue, double newValue) -> void
1419
Microsoft.Maui.Controls.Internals.TextTransformUtilities
20+
Microsoft.Maui.Controls.ITextAlignmentElement
21+
Microsoft.Maui.Controls.ITextAlignmentElement.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment
22+
Microsoft.Maui.Controls.ITextAlignmentElement.OnHorizontalTextAlignmentPropertyChanged(Microsoft.Maui.TextAlignment oldValue, Microsoft.Maui.TextAlignment newValue) -> void
23+
Microsoft.Maui.Controls.ITextAlignmentElement.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment
24+
Microsoft.Maui.Controls.ITextElement
25+
Microsoft.Maui.Controls.ITextElement.CharacterSpacing.get -> double
26+
Microsoft.Maui.Controls.ITextElement.OnCharacterSpacingPropertyChanged(double oldValue, double newValue) -> void
27+
Microsoft.Maui.Controls.ITextElement.OnTextTransformChanged(Microsoft.Maui.TextTransform oldValue, Microsoft.Maui.TextTransform newValue) -> void
28+
Microsoft.Maui.Controls.ITextElement.TextTransform.get -> Microsoft.Maui.TextTransform
29+
Microsoft.Maui.Controls.ITextElement.TextTransform.set -> void
1530
override Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler<TItemsView>.UpdateItemsLayout() -> void
1631
Microsoft.Maui.Controls.ShadowTypeConverter
1732
Microsoft.Maui.Controls.ShadowTypeConverter.ShadowTypeConverter() -> void

src/Controls/src/Core/PublicAPI/net/PublicAPI.Unshipped.txt

+15
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,22 @@
1111
*REMOVED*~Microsoft.Maui.Controls.NavigableElement.StyleClass.set -> void
1212
Microsoft.Maui.Controls.HybridWebView.InvokeJavaScriptAsync(string! methodName, object?[]? paramValues = null, System.Text.Json.Serialization.Metadata.JsonTypeInfo?[]? paramJsonTypeInfos = null) -> System.Threading.Tasks.Task!
1313
Microsoft.Maui.Controls.HybridWebView.SetInvokeJavaScriptTarget<T>(T! target) -> void
14+
Microsoft.Maui.Controls.ICornerElement
15+
Microsoft.Maui.Controls.ICornerElement.CornerRadius.get -> Microsoft.Maui.CornerRadius
16+
Microsoft.Maui.Controls.ILineHeightElement
17+
Microsoft.Maui.Controls.ILineHeightElement.LineHeight.get -> double
18+
Microsoft.Maui.Controls.ILineHeightElement.OnLineHeightChanged(double oldValue, double newValue) -> void
1419
Microsoft.Maui.Controls.Internals.TextTransformUtilities
20+
Microsoft.Maui.Controls.ITextAlignmentElement
21+
Microsoft.Maui.Controls.ITextAlignmentElement.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment
22+
Microsoft.Maui.Controls.ITextAlignmentElement.OnHorizontalTextAlignmentPropertyChanged(Microsoft.Maui.TextAlignment oldValue, Microsoft.Maui.TextAlignment newValue) -> void
23+
Microsoft.Maui.Controls.ITextAlignmentElement.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment
24+
Microsoft.Maui.Controls.ITextElement
25+
Microsoft.Maui.Controls.ITextElement.CharacterSpacing.get -> double
26+
Microsoft.Maui.Controls.ITextElement.OnCharacterSpacingPropertyChanged(double oldValue, double newValue) -> void
27+
Microsoft.Maui.Controls.ITextElement.OnTextTransformChanged(Microsoft.Maui.TextTransform oldValue, Microsoft.Maui.TextTransform newValue) -> void
28+
Microsoft.Maui.Controls.ITextElement.TextTransform.get -> Microsoft.Maui.TextTransform
29+
Microsoft.Maui.Controls.ITextElement.TextTransform.set -> void
1530
Microsoft.Maui.Controls.ShadowTypeConverter
1631
Microsoft.Maui.Controls.ShadowTypeConverter.ShadowTypeConverter() -> void
1732
Microsoft.Maui.Controls.StyleableElement.Style.get -> Microsoft.Maui.Controls.Style?

0 commit comments

Comments
 (0)