Use UpdateSourceTrigger=PropertyChanged for immediate updates of bound XAML controls

My XAML learning project is inspired by Leon Bambrick’s “World’s Simplest Code Generator” (http://secretgeek.net/wscg.htm). It’s a 3-pane window where you type or paste data into the top pane, enter a formatting pattern in the middle pane, and it displays the formatted results in the bottom pane:

Codey

(Yes, I know about auto-implemented properties, Visual Studio snippets, and T4. The property-generating scenario above is just for example purposes.)

The TextBox controls are bound to properties of my ViewModel, but by default the input and format properties are only updated (triggering an update to the results property) when the controls lose focus.

I want the results to be updated immediately as I type, so I did that by handling the TextChanged events in code-behind. I knew there was probably a way to do it without code-behind, but didn’t know how until I watched Jason Dolinger’s M-V-VM video.

I added “UpdateSourceTrigger=PropertyChanged” to the binding expressions:

<TextBox DockPanel.Dock="Top" Text="{Binding InputText, UpdateSourceTrigger=PropertyChanged}" />

(http://11011.net/software/vspaste)

…and bada-bing, the results are now updated with each keystroke as I update the input and format, with no code-behind.

Treat code-behind like your real behind: You don’t want a lot of junk in the trunk!;)

This article is part of the GWB Archives. Original Author: Brian Schroer

New on Geeks with Blogs

  • We Won The One Award I Actually Care About

    Full Scale made the Inc. 5000 for the fifth year straight, the 12th listing across my three companies. Here is why the one award you cannot buy is worth stopping for.

  • Your Customers Build the Features Now

    I let a tool I liked sit dead for a year rather than build the features I wanted. An MCP server meant I never had to, and your customers can do the same to your product.

  • Get the Size of a Directory in Linux the Easy Way

    du -sh for the quick answer, ncdu for the cleanup, df for the disk itself: every command for checking directory size in Linux, plus why du and df never agree.

  • Vim Search and Replace: The Ultimate Guide

    One :%s command replaces every match in a file before a find dialog would even open. The Vim substitute patterns worth the muscle memory: flags, ranges, capture groups, and multi-file edits.