Browse Source

Merge branch 'master' into diagnostics-cleanup

pull/2757/head
Dariusz Komosiński 7 years ago
committed by GitHub
parent
commit
b78b30c070
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/Avalonia.Controls/LayoutTransformControl.cs
  2. 6
      src/Avalonia.Styling/Controls/NameScopeLocator.cs

2
src/Avalonia.Controls/LayoutTransformControl.cs

@ -45,7 +45,7 @@ namespace Avalonia.Controls
}
/// <summary>
/// Utilize the <see cref="RenderTransformProperty"/> for layout transforms.
/// Utilize the <see cref="Visual.RenderTransformProperty"/> for layout transforms.
/// </summary>
public bool UseRenderTransform
{

6
src/Avalonia.Styling/Controls/NameScopeLocator.cs

@ -15,10 +15,8 @@ namespace Avalonia.Controls
/// <summary>
/// Tracks a named control relative to another control.
/// </summary>
/// <param name="relativeTo">
/// The control relative from which the other control should be found.
/// </param>
/// <param name="name">The name of the control to find.</param>
/// <param name="scope">The scope relative from which the object should be resolved.</param>
/// <param name="name">The name of the object to find.</param>
public static IObservable<object> Track(INameScope scope, string name)
{
return new NeverEndingSynchronousCompletionAsyncResultObservable<object>(scope.FindAsync(name));

Loading…
Cancel
Save