Skip to content

Commit

Permalink
Fix xrefs.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbritch committed Nov 6, 2024
1 parent 8e30b5b commit 601bc81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/fundamentals/data-binding/compiled-bindings.md
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ static (PersonViewModel vm) => vm.Address?.Street + " " + vm.Address?.City;
static (PersonViewModel vm) => $"Name: {vm.Name}";
```

In addition, the <xref:Microsoft.Maui.Controls.Binding.Create%2A?displayProperty=nameWithType> method sets the binding directly on the object with a `Func`, and returns the binding object instance:
In addition, the <xref:Microsoft.Maui.Controls.BindingBase.Create%2A?displayProperty=nameWithType> method sets the binding directly on the object with a `Func`, and returns the binding object instance:

```csharp
myEntry.SetBinding(Entry.TextProperty, new MultiBinding
Expand Down
2 changes: 1 addition & 1 deletion docs/whats-new/dotnet-9.md
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ static (PersonViewModel vm) => vm.Address?.Street + " " + vm.Address?.City;
static (PersonViewModel vm) => $"Name: {vm.Name}";
```

In addition, .NET MAUI 9 adds a <xref:Microsoft.Maui.Controls.Binding.Create%2A?displayProperty=nameWithType> method that sets the binding directly on the object with a `Func`, and returns the binding object instance:
In addition, .NET MAUI 9 adds a <xref:Microsoft.Maui.Controls.BindingBase.Create%2A?displayProperty=nameWithType> method that sets the binding directly on the object with a `Func`, and returns the binding object instance:

```csharp
// in .NET 8
Expand Down

0 comments on commit 601bc81

Please sign in to comment.