Advertisement
Guest User

Untitled

a guest
Nov 11th, 2015
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.29 KB | None | 0 0
  1.     class DC
  2.     {
  3.         public DC() { Text = "Admin"; }
  4.         public string Text { get; set; }
  5.     }
  6.  
  7.     public partial class MainWindow : Window
  8.     {
  9.         public MainWindow()
  10.         {
  11.             InitializeComponent();
  12.             DataContext = new DC();
  13.         }
  14.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement