Jellyfish
Jellyfish copied to clipboard
Allow easy DependencyProperty creation
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);
}