TextBox.TextChanged & ICommandSource - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T00:13:17Z http://stackoverflow.com/feeds/question/55855 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/55855/textbox-textchanged-icommandsource 1 TextBox.TextChanged & ICommandSource Brad Leach 2008-09-11T05:36:17Z 2008-09-11T10:07:31Z <p>I am following the <a href="http://blogs.msdn.com/johngossman/archive/2005/10/08/478683.aspx" rel="nofollow">M-V-VM</a> pattern for my WPF UI. I would like to hook up a command to the TextChanged event of a TextBox to a command that is in my ViewModel class. The only way I can conceive of completing this task is to inherit from the TextBox control, and implement ICommandSource. I can then instruct the command to be fired from the TextChanged event. This seems to be too much work for something which appears to be so simple.</p> <p>Is there an easier way (than subclassing the TextBox and implementing ICommandSource) to hook up the TextChanged event to my ViewModel class?</p> http://stackoverflow.com/questions/55855/textbox-textchanged-icommandsource/55960#55960 1 Answer by Gishu for TextBox.TextChanged & ICommandSource Gishu 2008-09-11T07:44:44Z 2008-09-11T07:44:44Z <p>I may not have understood the problem correctly but here goes..</p> <ol> <li>Handle TextBox.TextChanged event and call a ViewModel method.</li> <li>ViewModel subscribes to TextBox.TextChanged event </li> <li>More work but the most loosely coupled of the lot. </li> </ol> <p>First define a custom command</p> <pre><code>public class MyAppCommands { public static RoutedUICommand X_ChangedCommand; static MyAppCommands() { X_ChangedCommand = new RoutedUICommand("X_Changed", "X_Changed", typeof(MyAppCommands); } } </code></pre> <p>Next in the View</p> <pre><code>&lt;Textbox Command="myNs:MyAppCommands.X_Changed"&gt; Some Text &lt;/TextBox&gt; </code></pre> <p>The top level / ancestor UI / listener simply has to indicate that he wishes to handle this command like this<br /> In the ctor of ParentWindow()</p> <pre><code> CommandBinding cb = new CommandBinding(MyAppCommands.X_Changed); cb.Executed += new ExecutedRoutedEventHandler(What_I_Want_To_Do_When_This_Happens); this.CommandBindings.Add(cb); </code></pre> <p>If its a non-UI class I think there is a RoutedCommand equivalent of the RoutedUICommand. But the pattern should be the same. HTH</p> http://stackoverflow.com/questions/55855/textbox-textchanged-icommandsource/56081#56081 1 Answer by Kent Boogaart for TextBox.TextChanged & ICommandSource Kent Boogaart 2008-09-11T08:58:41Z 2008-09-11T08:58:41Z <p>Can you not just handle the TextChanged event and execute the command from there?</p> <pre><code>private void _textBox_TextChanged(object sender, EventArgs e) { MyCommand.Execute(null); } </code></pre> <p>The alternative, as you say, is to create a <code>TextBox</code> that acts as a command source, but that does seem like overkill unless it's something you're planning on sharing and leveraging in many places.</p> <p>HTH, Kent</p> http://stackoverflow.com/questions/55855/textbox-textchanged-icommandsource/56164#56164 2 Answer by Sam for TextBox.TextChanged & ICommandSource Sam 2008-09-11T09:51:56Z 2008-09-11T09:51:56Z <p>First off, you've surely considered two-way data binding to your viewmodel, with an UpdateSourceTrigger of PropertyChanged? That way the property setter of the property you bind to will be called every time the text is changed?</p> <p>If that's not enough, then I would tackle this problem using Attached Behaviours. On Julian Dominguez’s Blog you'll find an <a href="http://blogs.southworks.net/jdominguez/2008/08/icommand-for-silverlight-with-attached-behaviors/" rel="nofollow">article</a> about how to do something very similar in Silverlight, which should be easily adaptable to WPF.</p> <p>Basically, in a static class (called, say TextBoxBehaviours) you define an Attached Property called (perhaps) TextChangedCommand of type ICommand. Hook up an OnPropertyChanged handler for that property, and within the handler, check that the property is being set on a TextBox; if it is, add a handler to the TextChanged event on the textbox that will call the command specified in the property.</p> <p>Then, assuming your viewmodel has been assigned to the DataContext of your View, you would use it like:</p> <pre><code>&lt;TextBox x:Name="MyTextBox" TextBoxBehaviours.TextChangedCommand="{Binding ViewModelTextChangedCommand}" /&gt; </code></pre> http://stackoverflow.com/questions/55855/textbox-textchanged-icommandsource/56191#56191 1 Answer by Nidonocu for TextBox.TextChanged & ICommandSource Nidonocu 2008-09-11T10:07:31Z 2008-09-11T10:07:31Z <p>Using the event binding and command method might not be the right thing to use. What exactly will this command do?</p> <p>You might want to consider using a Databinding to a string field in your VM. This way you can make a call to a command or function from there rather than having the UI care at all.</p> <pre><code>&lt;TextBox Text="{Binding WorldName}"/&gt; .... public string WorldName { get { return WorldData.Name; } set { WorldData.Name = value; OnPropertyChanged("WorldName"); // CallYourCustomFunctionHere(); } } </code></pre>