mirror of
https://github.com/Stone-Red-Code/docs-desktop.git
synced 2026-09-04 09:06:04 +02:00
* 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]>
13 lines
495 B
XML
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>
|