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]>
28 lines
617 B
C#
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();
|
|
}
|
|
}
|
|
}
|