Guest User

Untitled

a guest
Feb 17th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. public DependencyProperty TitleProperty =
  2. DependencyProperty.Register("Title", typeof(string), typeof(Card), new FrameworkPropertyMetadata(string.Empty));
  3.  
  4. public string Title {
  5. get => (string)this.GetValue(this.TitleProperty);
  6. set => this.SetValue(this.TitleProperty,value);
  7. }
Add Comment
Please, Sign In to add comment