Skip to content

Proposal: Provide snippets/templates for DependencyProperty #5522

Open
@angelazhangmsft

Description

@angelazhangmsft

DependencyProperty standard 'propdp' template doesn't work. Add clear guidance and a VS Regex example to convert to the proper setup.

cc/ @Scottj1s

Activity

ghost added
needs-triageIssue needs to be triaged by the area owners
on Jul 21, 2021
michael-hawker

michael-hawker commented on Jul 21, 2021

@michael-hawker
Collaborator

It should also be updated from the old one to use nameof instead of a hard-coded string:

public static readonly DependencyProperty ContentProperty =
            DependencyProperty.Register(nameof(Content), typeof(UIElement), typeof(Case), new PropertyMetadata(null));
added
documentationAn issue with existing documentation or a request for documenation of a new topic
on Jul 28, 2021
StephenLPeters

StephenLPeters commented on Jul 28, 2021

@StephenLPeters
Contributor
anawishnoff

anawishnoff commented on Jul 28, 2021

@anawishnoff
Contributor

@angelazhangmsft Do we have docs currently that are lacking modern examples or is this a suggestion to draft up a new article about DependencyProperty?

marcelwgn

marcelwgn commented on Jul 28, 2021

@marcelwgn
Collaborator

@anawishnoff I think this is about the Visual Studio snippets that one can use to create a DependencyProperty.

added and removed
needs-triageIssue needs to be triaged by the area owners
on Oct 11, 2022
michael-hawker

michael-hawker commented on Jan 12, 2023

@michael-hawker
Collaborator

It should also be updated from the old one to use nameof instead of a hard-coded string:

public static readonly DependencyProperty ContentProperty =
            DependencyProperty.Register(nameof(Content), typeof(UIElement), typeof(Case), new PropertyMetadata(null));

@bpulliam do you know where the Visual Studio snippets for XAML live? Is this something that the Windows App SDK package can update or is it in VS iteself (this would work for all XAML flavors using this snippet anyway)? It'd be nice to use nameof and make it easier to refactor property names by not having a hard-coded string for dependency properties here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    area-ToolingdocumentationAn issue with existing documentation or a request for documenation of a new topicfeature proposalNew feature proposalproduct-winui3WinUI 3 issuesteam-MarkupIssue for the Markup team

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

      Participants

      @StephenLPeters@marcelwgn@anawishnoff@michael-hawker@evelynwu-msft

      Issue actions

        Proposal: Provide snippets/templates for DependencyProperty · Issue #5522 · microsoft/microsoft-ui-xaml