mirror of
https://github.com/Stone-Red-Code/docs-desktop.git
synced 2026-09-07 23:43:19 +02:00
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]>
This commit is contained in:
co-authored by
Genevieve Warren
parent
f48d6c37c0
commit
4adbe51408
+15
@@ -0,0 +1,15 @@
|
||||
<Window x:Class="ArticleExample.MainWindow"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
xmlns:local="clr-namespace:ArticleExample"
|
||||
mc:Ignorable="d"
|
||||
SizeToContent="WidthAndHeight"
|
||||
Title="Simple Data Binding Sample">
|
||||
|
||||
<StackPanel Width="200" Margin="35">
|
||||
<Button Click="ShowDataBindingCode_Click">DataBinding in code</Button>
|
||||
<Button Click="ShowBasicDataBinding_Click">Basic XAML of databinding</Button>
|
||||
</StackPanel>
|
||||
</Window>
|
||||
Reference in New Issue
Block a user