Skip to content

Commit

Permalink
Add comments to internal methods for XAML Hot Reload usage (#20215)
Browse files Browse the repository at this point in the history
* Add comments to internal methods for XAML Hot Reload usage

* spacing
  • Loading branch information
drasticactions committed Jan 29, 2024
1 parent 235dc9f commit d9c797f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Controls/src/Core/IProvideParentValues.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@

namespace Microsoft.Maui.Controls.Xaml
{
// Used by MAUI XAML Hot Reload.
// Consult XET if updating!
internal interface IProvideParentValues : IProvideValueTarget
{
IEnumerable<object> ParentObjects { get; }
Expand Down
2 changes: 2 additions & 0 deletions src/Controls/src/Core/IValueConverterProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

namespace Microsoft.Maui.Controls.Xaml
{
// Used by MAUI XAML Hot Reload.
// Consult XET if updating!
interface IValueConverterProvider
{
object Convert(object value, Type toType, Func<MemberInfo> minfoRetriever, IServiceProvider serviceProvider);
Expand Down
2 changes: 2 additions & 0 deletions src/Core/src/Platform/Standard/ViewExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ public static void UpdateMaximumWidth(this object platformView, IView view) { }

internal static System.Numerics.Matrix4x4 GetViewTransform(this IView view) => new System.Numerics.Matrix4x4();

// Used by MAUI XAML Hot Reload.
// Consult XET if updating!
internal static Graphics.Rect GetBoundingBox(this IView view) => view.Frame;

internal static object? GetParent(this object? view)
Expand Down

0 comments on commit d9c797f

Please sign in to comment.