Skip to content

Allow easy DependencyProperty creation #5

Description

@mrousavy

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);
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or requesthelp wantedExtra attention is needed

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions