Browse Source
Merge branch 'master' into diagnostics-cleanup
pull/2757/head
Dariusz Komosiński
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
3 additions and
5 deletions
-
src/Avalonia.Controls/LayoutTransformControl.cs
-
src/Avalonia.Styling/Controls/NameScopeLocator.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 |
|
|
|
{ |
|
|
|
|
|
|
|
@ -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)); |
|
|
|
|