MoXAML Power Toys

MoXAML Power Toys

Introduction

MoXAML Power Toys is a Visual Studio AddIn that’s designed to make your coding that bit more productive for WPF/Silverlight applications.

I started writing MoXAML, partly because I wanted to address some of the features that I needed to be productive in WPF, but also as a complementary product to Karl Shifflett’s wonderful XAML Power Toys. Karl’s stated aim is to produce a tool that quickly and efficiently enables you to write LOB applications in WPF and Silverlight. My aim is to produce a tool that allows you to code with the minimum of effort in Visual Studio.

Update – 6th September 2011:

I’ve been rewriting MoXAML for VS 2010. The version I’ve just uploaded is the installer only version, and is intended to be installed for evaluation purposes as the internal registration mechanism has completely been rewritten. What does this mean exactly? Well, it means that you can install it and it will work properly as it stands (I’ve chosen to only include a small subset of the MoXAML commands to prove the application architecture).

OK, so we know the internal architecture has been rewritten, but what does this mean exactly? Well, a feature of the original MoXAML that I was unhappy with was the fact that I had to add commands and then add hard references to them in the VS integration part. This meant that I had to rerelease a new version of the code whenever I changed it, and that’s a complete PITA. Wouldn’t it be better, I thought, if I could come up with a mechanism for simplifying this and use a plugin based architecture instead? Well, thanks to those really nice people at Microsoft, I have the wonderful MEF to play with, so with a little bit of interface jiggery-pokery I can add new commands without any real hard code work, and more importantly if you want to add your own commands it’s easy for you to do – just add a reference to MoXAML.Infrastructure, add a class that derives from CommandBase and add some minimal configuration into your class constructor. All you need to do is add a unique CommandName, the Caption you want to appear on the relevant menu and the ParentCommandBar you want to Add the menu item to.

Update – 13th September 2011:

One of my favourite parts of MoXAML is the Scrubber command. While I liked it, it never felt finished to me, so now I’ve taken the time to address what I saw as the shortcomings in the original version. First of all, the options dialog isn’t shown when you run Scrubber; it’s in a separate menu of it’s own – Scrubber options. Secondly, I wasn’t happy that you could only scrub the project, sometimes I just want to scrub the file I’m currently in. Scrubber is now available for both the solution and the individual file. The cool thing – it’s available in it’s own DLL, so we are demonstrating the plugin nature of MoXAML.

Update – 15th September 2011:

MoXAML is now fully open source. Rather than maintaining it on the blog, I’ve created a dedicated codeplex page available at http://moxaml.codeplex.com/. All source will be maintained there.

Downloads

After downloading, you’ll need to change the extension from .doc to .zip. This is a requirement of WordPress.com

Visual Studio 2010 version

Installer – no source: MoXAML.PowerToys.zip

Visual Studio 2008 version

Installer – no source:  MoXAML Power Toys_Setup

Source code: MoXAML Power Toys Source

So, what can you do with MoXAML?

BabelCode – currently available only in VS 2008

With BabelCode you can instantly convert your VB code into C# and vice versa, how cool is that. Simply run BabelCode on your source code and it’s instantly converted.

BabelCode-menu

BabelCode menu in operation.

BabelCode-output

Here’s the converted output from a BabelCode run.

Extract user control – currently available only in VS 2008

There have been times when I’ve been working on a piece of XAML and I’ve thought, “That would be really handy if it was a control – I could use it in so many places.” Well, with this feature, you can extract XAML and create a user control from it.

UserControl-menu

Here I’ve highlighted the items that I want to convert into a user control.

UserControl-window

At this point, we enter the name of the control we want to create.

UserControl-code

And here’s the control – added into our solution.

Scrubber  – available in both VS 2008 and 2010

Srubber is a port of Robby Ingebretsen’s scrubber feature in Kaxaml. If you haven’t tried Kaxaml out, then you are missing a treat.

Scrubber performs a “beautify” on your XAML items. It’s called from the Solution menu – just click on one of your source files, choose the Scrubber options and sit back as it works its magic on all of the XAML files in your solution.

Here’s a typical piece of XAML:

XAML before beautification

We choose Scrubber from the menu, and the scrubber dialog appears:

scrubber2

scrubber3

Here’s the same piece of code from above – after it’s been scrubbed:

scrubber4

Note:

Since originally posting Scrubber, a number of people have contacted me to tell me that there was a bug in the original Scrubber code where special characters in XML were being screwed up. Well, Scrubber has been updated to correct this bug – your special characters are now preserved.

Keyword search – currently available only in VS 2008

Highlight a word in the source and select Lookup keyword from the menu, and voila – a Google and Live search are performed based on the keyword (using the appropriate language type as well).

Menu in action

Commenting – available in both VS 2008 and 2010

Well, currently you can comment your XAML code and it works OK if you do it once, but if you then attempt to comment over the block again, you get some problems. The following picture shows what the problem actually is.

It doesn’t look too good does it? The first Power Toy, the Comment command behaves slightly differently:

As you can see, multiple comments and it continues to behave. So, that’s the Comment command – I hope you like it.

The sister command of the Comment command is the Uncomment command, and it works it’s way back up through the comment tree to uncomment the commands.

Notify properties – available in both VS 2008 and 2010

Automatic properties are great, but they don’t play nicely with two way data binding. Now it’s simple to convert an automatic property to use INotifyPropertyChanged. All you need to do is pick the property in the code window and select Notify Property (C# Only), and it will add the necessary plumbing.

Cunningly enough, it adds the Changed method if it’s not already present. ;->

Notify Property in action:

After the command:

The AppWizard – currently available only in VS 2008

This command allows you to add a status bar, toolbar and menu to your application.

Calling the AppWizard

The AppWizard brings up a dialog where you choose whether or not you want to see a toolbar, a menu or a statusbar. If you choose to add a toolbar or menu, you even get standard icons added into your project. The CommandBindings and App.Resources are set up for you, and the relevant user controls are added into your main window. The statusbar hooks up to the Caps Lock, Scroll Lock, Insert and Num Lock keys to reflect the state of them. It also adds in a date and time which updates every second. I love WPF.

The AppWizard in action
The AppWizard in action

Behind the scenes, some of the code injected into your application is C#, but being a nice chap I’ve added a converter in there which translates the C# to VB.NET before it gets added to your project if it detects that your project is VB.NET.

Dependency Properties – currently available only in VS 2008

One of the banes of my life, is typing in boilerplate code – and boy is there a lot of it with Dependency Properties. Well – that’s about to end. The Create Dependency Property command lets you create an ordinary DP or Attached DP (or readonly versions) with a minimum of effort. Better still, it provides method implementations for you as well – and it does this in both C# and VB.NET.

Selecting the menu (from inside the code editor window) brings up a dialog to enter the core information that you need to create the DP. When you enter the default value, you need to put it in “exactly” as you would if you entered it manually. This means that you must put quotes around it if that’s what is expected by the datatype.

dp-window

The Create Dependency Property window

When you choose Create, the relevant code gets added into the class.

Add FieldModifier – available in VS 2008 and 2010

This command searches through your project for XAML files which have x:Name set without setting a FieldModifier. If it finds any entries like this, it adds the x:FieldModifier = “private” attribute. I’d like to thank Josh Smith for providing the inspiration for this command – please see this blog post for more information.

To use this command, right click in the Solution Explorer and choose MoXAML Power Toys > Add FieldModifier.

In conclusion

As always, keep your comments and requests coming in. No idea goes unconsidered.

66 thoughts on “MoXAML Power Toys

  1. Pingback: MoXAML 2.2 Released « Musings and frustrations

  2. Wow Pete! I’ve been outta touch for a while but this is great! The new DependencyProperty creator is exactly what I’ve been waiting for!

    One question–what does the Dependency Property (C# only) command do? I couldn’t figure it out and it doesn’t seem to do anything if I select it.

  3. Pingback: MoXAML 2.4 Released « Musings and frustrations

  4. Pingback: Mo-XAML power toys « Wes Aday’s Weblog

  5. Hey Pete! Thanks a lot for the scrubber! Great stuff!
    Only have one problem:
    If “&” (without quotes) appears in a text property, the “amp;” is removed.
    Is that intended?

  6. Pingback: Silverlight Travel » MoXAML Power Toys

  7. I really like the scrubber! I’ve used it a lot in Kaxaml and I’m happy to be able to use it in VS. One issue with it is that it does not handle special character sequences very well, like 
. This add a line break in a string. I reported this to Kaxaml, but he was to busy writing the next version to address. With your port to VS, is this fixed or do the same issues occur?

    Thanks again

    1. peteohanlon

      @viking
      The same issues exist – I ported the code pretty much “as is” and massaged it to work with Visual Studio projects. I’ve been made aware of this issue since I released MoXAML, and I will be looking to fix the code – I’ll pass the fix back to be put into KaXAML while I’m at it.

      I’m glad you like it though.

  8. Pingback: Twitted by DavidJustice

  9. Pingback: { drawnbits } | ‘Must Have’ Tools

    1. peteohanlon

      @Pete – I haven’t tried to get this running in VS2010 yet. It’s something I will be looking at sometime in the future, but I’ve got no plans to do it yet.

  10. Pingback: MoXAML Power Toys – Buck Hicks .Net

  11. Les Prigmore

    Using MS Vista SP2, VSTS2008 ENU SP 1 (KB945140)

    I installed MOXaml power Toys 2.5. Went to Tools->Options->Environment & added “C:\Program Files (x86)\Lifestyle Computing Ltd\MoXAML Power Toys” clicked OK; then went to Tools\Add-in Manager and checked MoXAMLPowerToys and clicked OK.

    I get the messaage:

    The Add-in ‘MoXAMLPowerToys’ failed to load or caused an exception.
    Would you like to remove………

    Error Message: The system could not find the file specified.
    Error number: 80070002

    However, there is a file named “C:\Program Files (x86)\Lifestyle Computing Ltd\MoXAML Power Toys\MoXAMLPowerToys.AddIn”

    I would like to get MoXAMLPowerToys working because it looks very useful. Any ideas about what might be going wrong?

    Thanks,
    Les Prigmore

    1. peteohanlon

      Les – you shouldn’t have to add the addin manually – the installer takes care of this for you. I’d suggest that you remove the entry, uninstall the addin and then reinstall it. Hopefully this will sort this issue out for you.

  12. Keith D. Milby

    Greetings,

    I had this working on my 32bit system. Great tools BTW.

    I have since got a new system XP 64bit. I have installed and uninstalled many times now but for whatever reason it is not showing in AddIn manager so therefore I can’t use it.

    Any suggestions?

    1. peteohanlon

      Keith – thanks for trying out MoXAML. Could you take a look in My Documents\Visual Studio 2008\Addins? There should be a file called MoXAMLPowerToys.Addin present there. If it isn’t, please let me know and I’ll upload a one that you can use.

      1. Keith D. Milby

        Pete,

        The file is there.

        FYI: My Documents is located on a Network Share if that is a problem.

        Thanks for the reply.

  13. Morris Cox

    I tried using the App Wizard in clean WPF app and WPF browser app projects and only the status bar works. This is in Visual Studio 2008 Professional. I also get the message that the root element is not supported in the visual designer. Where did I goof? And looking forward to support in VS2010.

    1. peteohanlon

      Morris

      If you take a look at the XAML in your main window, you’ll see that it’s added the controls to the grid as


      <moXAML:Menu Grid.Row="0" />
      <moXAML:Toolbar Grid.Row="1" />
      <moXAML:StatusBar Grid.Row="2" />

      Assuming you have this as a grid, you need to add some RowDefinitions, and then bind the relevant command to the row. Here’s a sample:


      <Grid.RowDefinitions>
      <RowDefinition />
      <RowDefinition />
      <RowDefinition />
      </Grid.RowDefinitions>
      <moXAML:Menu Grid.Row="0" />
      <moXAML:Toolbar Grid.Row="1" />
      <moXAML:StatusBar Grid.Row="2" />

  14. Morris Cox

    Error 1 ‘moXAML’ is an undeclared namespace. Line 12, position 10. C:\Users\morris\Documents\Visual Studio 2008\Projects\SilverlightLearningApp\SilverlightLearningApp\MainPage.xaml 12 10 SilverlightLearningApp

    Error 1 ”moXAML’ is an undeclared namespace. Line 11, position 10.’ XML is not valid. C:\Users\morris\Documents\Visual Studio 2008\Projects\LearningWPFBrowserApp\LearningWPFBrowserApp\Page1.xaml 11 10 LearningWPFBrowserApp

  15. peteohanlon

    Morris – I’m surprised the namespace hasn’t been added in to the XAML – if it hasn’t though, you can manually add it to your window definition using xmlns:moXAML=”clr-namespace:NamespaceGoesHere”. I hope that helps.

  16. Morris Cox

    Thanks for the help. I finally got it to work on a WPF Application. I look forward to the next version. 🙂 I do appreciate your help and this addon still saved me lots of time. I did add Name and Height values for each bar.

    1. peteohanlon

      Thanks Morris. I’m glad it’s working, and I’m glad you like MoXAML. Just wait till I’ve released Goldlight – an MVVM framework that should really help speed up your developments. I’m in the final stages of putting the alpha version together.

  17. I’m using moxaml for the commenting feature and the scrubber. However, the scrubber doesn’t seem to work. I right-click on a file in the Solution explorer and run the scrubber. The dialog box appears, I hit ok, and nothing happens. The XAML is not nicely formatted, nor has it changed at all. I’m running VS2008

  18. Pingback: XAML开放工具 || 可乐考拉

  19. James Todd Garza

    I’m in VS2008 SP1 and when I contextually use Scrubber by right clicking on a single XAML file in a project in the solution explorer window, Scrubber seems to be scrubbing every XAML file in the project (not just the one I selected). Is this the proper behavior?

  20. James Todd Garza

    One more concern. Scrubber normally moves any end tag down a line from the header content by inserting a CRLF. I’m seeing that this effect is cumulative. Each time I run scrubber on a file, another CRLF is added between the header content and the end tag. After running scrubber a few times, this can create quite a bit of whitespace.

    1. James Todd Garza

      To be more specific:


      <MenuItem.Header>Refresh</MenuItem.Header>

      turns into


      <MenuItem.Header>Refresh</MenuItem.Header>

  21. Hi Pete,
    I have use your add-on in VS2008 and it is really great and help full for me,
    I just want to know if this add-on work in VS2010? As I like to install it in my working machine.

    Thanks again for this wonderful add-on.

  22. Francisco Amador

    Thank you so much for this. I didn’t even think some of the things your extension does as things that could be simplified. Can’t wait until the VS2010 version is available.

    1. peteohanlon

      Thanks Franciso – I promise that I’ll get the new version out soon. I’m currently working on a big article for Code Project, so my time is being taken up there, but once that’s sorted I’ll get back to MoXAML.

  23. Gabriel

    Unfortunately I can’t try your excellent tool, because it seems doesn’t work on VS2010. I copied the MoXAMLPowerToysAddin definnison files from the Documents/VS2008/Addins to VS2010 Addins, but without any effect. I’m waiting inpatiently for the update of this great tool.

    Thanks

  24. Jordan

    Hi Pete,
    I’d love to help with the transition to VS2010. It would be the least I could do …I’m very thankful for your having taken the time to create this program as I feel the same way about dependency properties…the bane of my existence. Please let me know if there’s anything I can do to help, but I completely understand if this is something you want to do on your own.
    Best Regards,
    Jordan

    1. peteohanlon

      Jordan

      Thanks for your offer. It seems that it’s about time I made the transition with it to VS2010. I’ve been pondering the fate of MoXAML, and have decided that it would be better served being on a site such as codeplex, so I will probably be moving it to there.

    1. peteohanlon

      Thanks for that. I am currently rewriting the BabelCode engine to take updates to the framework into account. At the same time, I’m rewriting the command infrastructure so that future updates can be dropped in and discovered without having to rerelease everything each time.

    2. peteohanlon

      Just in case you weren’t aware, I’ve uploaded a new version of MoXAML that works with VS 2010. The installer is in the MoXAML page, and the source code is now available on CodePlex.

  25. jojo

    HI, I’m a biginner at Dot.net and I’m working on a wPF project using the MvvM light toolkit , I don’t seem to make map my relational data base (sql) to objects , I don’t know how to make each table to a class (.cs file) like you already have here, i just wanna know how did you did it 🙂
    i tried to use ado.net but it didn’t work for me , it gave me one file where all my tables become partial classes in this file .
    so please can you tell me how and thanks 🙂

  26. Pingback: Useful WPF Tools/Add-ons - akjoshi's Blog

  27. Pingback: MoXAML goes MefXAML « Confessions of a coder

  28. Pingback: Adding to MoXAML. « Confessions of a coder

    1. peteohanlon

      You’re welcome. If you get a chance to download the code and play with it, you should go for it. Any suggestions for features, bugs, etc, please let me know.

Leave a reply to Morris Cox Cancel reply