User rdeetz - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T20:50:58Zhttp://stackoverflow.com/feeds/user/22789http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/140996/how-can-i-set-the-text-of-a-wpf-hyperlink-via-data-binding4How can I set the text of a WPF Hyperlink via data binding?rdeetz2008-09-26T17:58:32Z2009-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><TextBlock><Hyperlink Command="local:MyCommands.ViewDetails" CommandParameter="{Binding}">Object Name</Hyperlink></TextBlock>
</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><TextBlock><Hyperlink Command="local:MyCommands.ViewDetails" CommandParameter="{Binding}" Text="{Binding Path=Name}"/></TextBlock>
</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#3978581Answer by rdeetz for Making winform switch tabsrdeetz2008-12-29T15:02:54Z2008-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#1748950Answer by rdeetz for How to turn off warning for no xml comment in VS 2005rdeetz2008-10-06T15:57:07Z2008-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#1415591Answer by rdeetz for INotifyPropertyChanged property name - hardcode vs reflection?rdeetz2008-09-26T19:52:25Z2008-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>