Files
docs-desktop/dotnet-desktop-guide/net/wpf/data/snippets/binding-declarations-overview/csharp/DataBindingCode.xaml
T
Andy (Steve) De GeorgeandGenevieve Warren 4adbe51408 Port databinding articles to WPF 5.0 (#1049)
* Binding declarations article

* Binding sources article

* TOC/Index updates

* Update redirects

* Acro/bugs

* Apply suggestions from code review

Co-authored-by: Genevieve Warren <[email protected]>

* fix bookmarks

Co-authored-by: Genevieve Warren <[email protected]>
2021-04-30 12:08:09 -07:00

13 lines
495 B
XML

<Window x:Class="ArticleExample.DataBindingCode"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="DataBinding in code" SizeToContent="WidthAndHeight"
Loaded="Window_Loaded">
<Border>
<StackPanel Width="300" Margin="35">
<Label>Person name:</Label>
<TextBlock x:Name="NameBlock" Margin="10,0,0,0" />
</StackPanel>
</Border>
</Window>