Click here to Skip to main content
15,884,990 members
Articles / Programming Languages / C#
Article

Generate properties automatically

Rate me:
Please Sign up or sign in to vote.
4.83/5 (17 votes)
2 May 20052 min read 120.7K   1.5K   46   40
An add-in for Visual Studio to generate properties automatically.

Image 1

Introduction

.NET introduces object oriented programming, which is why it became so popular. One of the object oriented programming concepts is Encapsulation. It brings clean code and it's for the best. But once you have defined your private members, you have to spend some awful time coding corresponding properties. I thought it would be interesting to accelerate the process and to automatically generate those properties. I did some research and I found around here some macros which would do the trick. However, I did think that it wasn't very productive and I thought that a right-click on a property would be easier. So I turned to Visual Studio add-ins...

Background

In order to develop some add-ins, Visual Studio allows us to use a wizard which makes the task easier. But it's not as simple as it should be, especially when you want to add some functionalities like contextual popup menu. I found a couple of articles which treated the subject, but each one concluded with the fact that MSDN wasn't that complete on the subject mostly because it was linked to Office.

Using the code

The source files contain two projects, one for the add-in, and one for the setup. In order to install the add-in correctly, you have to pass through the setup, or you can create a *.reg file to register it. The simplest way is to use the setup. As I work on Visual Studio .NET 2003, I don't know if it works on Visual Studio .NET 2002, but I think it would. Here is the OnConnection method which creates the buttons:

C#
public void OnConnection(object application, 
    Extensibility.ext_ConnectMode connectMode, object addInInst, 
                    ref System.Array custom)
{
    applicationObject = (_DTE)application;
    addInInstance = (AddIn)addInInst;
    if(connectMode == Extensibility.ext_ConnectMode.ext_cm_Startup)
    {
        object []contextGUIDS = new object[] { };
        Commands commands = applicationObject.Commands;
        _CommandBars commandBars = applicationObject.CommandBars;


        // When run, the Add-in wizard prepared the registry 
        // for the Add-in.
        // At a later time, the Add-in or its commands may 
        // become unavailable for reasons such as:
        //   1) You moved this project to a computer other 
        //        than which is was originally created on.
        //   2) You chose 'Yes' when presented with a message 
        //        asking if you wish to remove the Add-in.
        //   3) You add new commands or modify commands 
        //        already defined.
        // You will need to re-register the Add-in by building 
        //     the PropertyGeneratorSetup project,
        // right-clicking the project in the Solution Explorer, 
        //    and then choosing install.
        // Alternatively, you could execute the ReCreateCommands.reg 
        // file the Add-in Wizard generated in
        // the project directory, or run 'devenv /setup' from a command prompt.
        try
        {
             // Fetch parameters from registry
             prefix = Helper.GetRegistryValue(Helper.OPTION_PREFIX, 
                                            Helper.DEFAULT_PREFIX);
             getterSetterComment = 
                 Helper.GetRegistryValue(Helper.OPTION_GETTERSETTER_COMMENT, 
                 Helper.DEFAULT_GETTERSETTER_COMMENT);
             getterComment = 
                 Helper.GetRegistryValue(Helper.OPTION_GETTER_COMMENT, 
                 Helper.DEFAULT_GETTER_COMMENT);
             setterComment = 
                 Helper.GetRegistryValue(Helper.OPTION_SETTER_COMMENT, 
                 Helper.DEFAULT_SETTER_COMMENT);
             popupMenuEnabled = 
                 Boolean.Parse(Helper.GetRegistryValue(Helper.OPTION_POPUPMENU, 
                 Helper.DEFAULT_POPUPMENU));

             // Declare the commandBar which will hosts commands
             CommandBar cmbHost;

             // Fetch contextual menu from code editor
             CommandBar cmbCodeWindow = (CommandBar)commandBars["Code Window"];

             // Define commands text
             string libGetterSetter = "getter / setter";
             string libGetter = "getter";
             string libSetter = "setter";

             if (popupMenuEnabled)
             {
                 // In case of a popup menu, we have to add an invisible command 
                 // to force QueryStatus function to be called when 
                 // the user right clicks
                 Command cmdEnabler = commands.AddNamedCommand(addInInstance, 
                            "PropertyGeneratorEnabler", 
                            "", 
                            "", 
                            true, 
                            0, 
                            ref contextGUIDS, 
                            (int)vsCommandStatus.vsCommandStatusInvisible);
                 cmdEnabler.AddControl(cmbCodeWindow, 1);
    
                 // Create the popup menu
                 CommandBarPopup cbcPropertyGenerator = (CommandBarPopup)
                   cmbCodeWindow.Controls.Add(MsoControlType.msoControlPopup, 
                                                Missing.Value, 
                                                Missing.Value, 
                                                1, 
                                                true);
                 cbcPropertyGenerator.Visible = true;
                 cbcPropertyGenerator.BeginGroup = true;
                 cbcPropertyGenerator.Caption = "Generate property for...";

                 // Get the associated commandBar to add commands
                 cmbPropertyGenerator = cbcPropertyGenerator.CommandBar;

                // Copy reference
                cmbHost = cmbPropertyGenerator;
            }
            else
            {
                libGetterSetter = libGetterSetter + "Generate property for ";
                libGetter = libGetter + "Generate property for ";
                libSetter = libSetter + "Generate property for ";

                cmbHost = cmbCodeWindow;
            }

            // Add Getter, Setter and Getter/Setter commands
            Command cmdGetterSetter = commands.AddNamedCommand(addInInstance, 
                "PropertyGeneratorGetterSetter", 
                libGetterSetter, 
                "Generate property for Getter/Setter", 
                true, 
                6948, 
                ref contextGUIDS, 
                (int)vsCommandStatus.vsCommandStatusSupported + 
                     (int)vsCommandStatus.vsCommandStatusEnabled);
            cmdGetterSetter.AddControl(cmbHost, 1);
            Command cmdGetter = commands.AddNamedCommand(    addInInstance, 
                "PropertyGeneratorGetter", 
                libGetter, 
                "Generate property for Getter", 
                true, 
                6947, 
                ref contextGUIDS, 
                (int)vsCommandStatus.vsCommandStatusSupported+
                     (int)vsCommandStatus.vsCommandStatusEnabled);
            cmdGetter.AddControl(cmbHost, 2);
            Command cmdSetter = commands.AddNamedCommand(addInInstance, 
                "PropertyGeneratorSetter", 
                libSetter, 
                "Generate property for Setter", 
                true, 
                6943, 
                ref contextGUIDS, 
                (int)vsCommandStatus.vsCommandStatusSupported+
                     (int)vsCommandStatus.vsCommandStatusEnabled);
            cmdSetter.AddControl(cmbHost, 3);
        }
        catch(System.Exception e)
        {
            // Delete existing commands
            foreach(Command cmd in commands)
            {
                if ((cmd.Name != null) && 
                       (cmd.Name.StartsWith("PropertyGenerator")))
                    cmd.Delete();
            }

            // Show the message error
            MessageBox.Show("An error ocurred : " + 
              e.Message + "\r\n\nPropertyGenerator "+
              "has been cleaned. Please restart Visual Studio", 
              "PropertyGenerator error", 
              MessageBoxButtons.OK, 
              MessageBoxIcon.Error);
        }
    }
}

PropertyGenerator creates buttons at Visual Studio startup and deletes them on Visual Studio stop. It's easier this way to control the add-in than to create them on setup.

Here is the code that generates the property:

C#
private void GenerateProperty(PropertyTypeValue propertyType)
{
    string propType = "";
    string propName = "";
    string propVariable = "";
    string prop = "";

    try
    {                
        // Fetch informations to generate the property
        FormatParameters(prefix, ref propType, 
                    ref propName, ref propVariable);

        // Get current selection
        TextSelection txsSelection = 
            (TextSelection)applicationObject.ActiveDocument.Selection;

        // Go to the end of line
        txsSelection.EndOfLine(false);

        // Jump 2 lines
        txsSelection.NewLine(2);

        // Generate property
        switch(propertyType)
        {
            case PropertyTypeValue.GetterSetter :
                prop = String.Concat(    "/// <SUMMARY>\r\n/// ", 
                                        getterSetterComment, 
                                        " \r\n/// </SUMMARY>\r\npublic ", 
                                        propType, 
                                        " ", 
                                        propName, 
                                        " {\r\nget\r\n{\r\nreturn ", 
                                        propVariable, 
                                        ";\r\n}\r\nset\r\n{\r\n", 
                                        propVariable, 
                                        " = value;\r\n}\r\n}");
                break;
            case PropertyTypeValue.Getter :
                prop = String.Concat(    "/// <SUMMARY>\r\n/// ", 
                                        getterComment, 
                                        " \r\n/// </SUMMARY>\r\npublic ", 
                                        propType, 
                                        " ", 
                                        propName, 
                                        " {\r\nget\r\n{\r\nreturn ", 
                                        propVariable, 
                                        ";\r\n}\r\n}");
                break;
            case PropertyTypeValue.Setter :
                prop = String.Concat(    "/// <SUMMARY>\r\n/// ", 
                                        setterComment, 
                                        " \r\n/// </SUMMARY>\r\npublic ", 
                                        propType, 
                                        " ", 
                                        propName, 
                                        " {\r\nset\r\n{\r\n", 
                                        propVariable, 
                                        " = value;\r\n}\r\n}");
                break;
        }

        // Insert into the code
        txsSelection.Insert(prop, 
                (int)vsInsertFlags.vsInsertFlagsInsertAtEnd);

        // Go to the start of line
        txsSelection.StartOfLine(
            vsStartOfLineOptions.vsStartOfLineOptionsFirstText, true);

        // Format code
        txsSelection.SmartFormat();

        // Go to the end of comment
        txsSelection.GotoLine(txsSelection.TopPoint.Line + 1, false);
        txsSelection.EndOfLine(false);
    }
    catch(Exception)
    {
        throw;
    }
}

I did an Options tab to set some parameters:

Options tab

They are stored in the registry, that's why you have to use the setup to create useful keys. You can parameter the prefix, automatic comments, and you can choose if you want the buttons in a popup menu or not. To add an Options tab, you have to create a UserControl class that implements the IDTToolsOptionsPage interface.

Points of Interest

I hope this little add-in will help some guys. I believe there're some interesting concepts in here like Option tabs popup menus:

Popup menu

History

  • 01/07/2005 - Version 1.0.0
  • 02/09/2005 - Version 1.1.0:
    • Main bug correction for property generation.
    • Contextual labels correction.
    • Prefix size optimization (thanks to Olivier).
  • 02/09/2005 - Version 1.2.0:
    • Bug correction for members without visibility (caught by vasiletomoiaga).
  • 02/11/2005 - Version 1.3.0:
    • Bug in the Options tab (caught by Stefan).
  • 26/04/2005 - Version 1.4.0:
    • Use summary from the member as comment for the property (thanks to Bjørnar Sundsbø).

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralRe: Little bug saving the options... Pin
Franck Desbrosses11-Feb-05 2:25
Franck Desbrosses11-Feb-05 2:25 
GeneralBugs for initialized members Pin
Vasile Tomoiaga9-Feb-05 2:52
Vasile Tomoiaga9-Feb-05 2:52 
GeneralRe: Bugs for initialized members Pin
Franck Desbrosses9-Feb-05 3:48
Franck Desbrosses9-Feb-05 3:48 
GeneralDoesn't work Pin
AgeKay1-Feb-05 2:52
AgeKay1-Feb-05 2:52 
GeneralRe: Doesn't work Pin
Franck Desbrosses1-Feb-05 3:06
Franck Desbrosses1-Feb-05 3:06 
GeneralRe: Doesn't work Pin
AgeKay1-Feb-05 10:15
AgeKay1-Feb-05 10:15 
GeneralRe: Doesn't work Pin
Franck Desbrosses1-Feb-05 21:07
Franck Desbrosses1-Feb-05 21:07 
GeneralRe: Doesn't work Pin
obonnate8-Feb-05 2:07
obonnate8-Feb-05 2:07 
Generalfixed ! Pin
obonnate8-Feb-05 3:07
obonnate8-Feb-05 3:07 
GeneralRe: fixed ! Pin
Franck Desbrosses8-Feb-05 21:18
Franck Desbrosses8-Feb-05 21:18 
GeneralRe: fixed ! Pin
Franck Desbrosses8-Feb-05 22:10
Franck Desbrosses8-Feb-05 22:10 
GeneralFirst try ... good Try ! Pin
nclerc12-Jan-05 22:10
nclerc12-Jan-05 22:10 
GeneralRe: First try ... good Try ! Pin
Franck Desbrosses12-Jan-05 22:15
Franck Desbrosses12-Jan-05 22:15 
GeneralRe: First try ... good Try ! Pin
aare uus22-Apr-05 1:43
aare uus22-Apr-05 1:43 
GeneralRe: First try ... good Try ! Pin
Franck Desbrosses22-Apr-05 1:53
Franck Desbrosses22-Apr-05 1:53 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.