User rdeetz - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T20:50:58Z http://stackoverflow.com/feeds/user/22789 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/140996/how-can-i-set-the-text-of-a-wpf-hyperlink-via-data-binding 4 How can I set the text of a WPF Hyperlink via data binding? rdeetz 2008-09-26T17:58:32Z 2009-11-26T04:49:43Z <p>In WPF, I want to create a hyperlink that navigates to the details of an object, and I want the text of the hyperlink to be the name of the object. Right now, I have this:</p> <pre><code>&lt;TextBlock&gt;&lt;Hyperlink Command="local:MyCommands.ViewDetails" CommandParameter="{Binding}"&gt;Object Name&lt;/Hyperlink&gt;&lt;/TextBlock&gt; </code></pre> <p>But I want "Object Name" to be bound to the actual name of the object. I would like to do something like this:</p> <pre><code>&lt;TextBlock&gt;&lt;Hyperlink Command="local:MyCommands.ViewDetails" CommandParameter="{Binding}" Text="{Binding Path=Name}"/&gt;&lt;/TextBlock&gt; </code></pre> <p>However, the Hyperlink class does not have a text or content property that is suitable for data binding (that is, a dependency property).</p> <p>Any ideas?</p> http://stackoverflow.com/questions/397851/making-winform-switch-tabs/397858#397858 1 Answer by rdeetz for Making winform switch tabs rdeetz 2008-12-29T15:02:54Z 2008-12-29T15:02:54Z <p>You can set either the SelectedIndex property or the SelectedTab property of the tab control to switch tabs.</p> http://stackoverflow.com/questions/174863/how-to-turn-off-warning-for-no-xml-comment-in-vs-2005/174895#174895 0 Answer by rdeetz for How to turn off warning for no xml comment in VS 2005 rdeetz 2008-10-06T15:57:07Z 2008-10-06T15:57:07Z <p>If you have a .NET project, the setting is on Project properties > Build tab. Near the bottom, in the Output section, there is a check box labeled "XML documentation file". </p> http://stackoverflow.com/questions/141370/inotifypropertychanged-property-name-hardcode-vs-reflection/141559#141559 1 Answer by rdeetz for INotifyPropertyChanged property name - hardcode vs reflection? rdeetz 2008-09-26T19:52:25Z 2008-09-26T19:52:25Z <p>Additionally, we found an issue where getting a method name worked differently in Debug vs. Release builds:</p> <p><a href="http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/244d3f24-4cc4-4925-aebe-85f55b39ec92" rel="nofollow">http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/244d3f24-4cc4-4925-aebe-85f55b39ec92</a></p> <p>(The code we were using wasn't exactly reflection in the way you suggested, but it convinced us that hardcoding the property name was the fastest and most reliable solution.)</p>