Jellyfish icon indicating copy to clipboard operation
Jellyfish copied to clipboard

Allow easy DependencyProperty creation

Open mrousavy opened this issue 7 years ago • 0 comments

Create Dependency Properties easily by either using Attributes or Wrapper classes:

Example:

[DependencyProperty]
public string Username { get; set; }

or

private string _username;
public string Username
{
    get => _username;
    set => SetDependencyProperty(ref _username, value);
}

mrousavy avatar Jul 01 '18 16:07 mrousavy