Files
docs-desktop/dotnet-desktop-guide/net/wpf/data/snippets/binding-declarations-overview/csharp/ExampleBinding.xaml.cs
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

28 lines
617 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
namespace ArticleExample
{
/// <summary>
/// Interaction logic for ExampleBinding.xaml
/// </summary>
public partial class ExampleBinding : Window
{
public ExampleBinding()
{
InitializeComponent();
}
}
}