This question is locked. New answers and comments are not allowed.
Hi there,
is it possible, to change the template which was called if I selected 'JustCode - Create Get/Set Property' in the context menu?
I use my own ViewModelBase and I want to use it like this:
I only want to add one line to the setter.
Is it possible to change that template?
Best Regards
Manfred
is it possible, to change the template which was called if I selected 'JustCode - Create Get/Set Property' in the context menu?
I use my own ViewModelBase and I want to use it like this:
/// <summary> /// Gets or sets the country. /// </summary> /// <value>The country.</value> public string Country { get { return this.country; } set { this.country = value; OnChange("Country"); } }Is it possible to change that template?
Best Regards
Manfred