User Todd White - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T04:38:21Z http://stackoverflow.com/feeds/user/30833 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/279157/is-stack-overflow-reputation-marketable 27 Is Stack Overflow reputation marketable? [closed] Todd White 2008-11-10T21:02:22Z 2009-04-30T12:48:48Z <p>So far stack overflow seems like a great place to help out fellow programmers and get excellent answers. Is the reputation one earns from this process marketable? Would you as a potential employer hire someone based upon data from stack overflow? </p> <p>What would you be looking for? Good answers? Good Questions? Both? </p> http://stackoverflow.com/questions/289261/is-there-a-way-to-not-create-an-explicit-eventhandler-delegate-in-visual-studio 3 Is there a way to not create an explicit EventHandler delegate in Visual Studio? Todd White 2008-11-14T04:37:53Z 2008-11-14T04:42:04Z <p>Visual Studio likes to be helpful when typing:</p> <pre><code>Event += </code></pre> <p>by generating code like:</p> <pre><code>Event += new EventHandler(EventClassName_Event); void EventClassName_Event(object sender, EventArgs e) { throw new System.NotImplementedException(); } </code></pre> <p>Ideally I would like to remove the explicit delegate and add an explicit private. Like so:</p> <pre><code>Event += EventClassName_Event; private void EventClassName_Event(object sender, EventArgs e) { throw new System.NotImplementedException(); } </code></pre> <p>I've looked to see if there is a snippet, but found nothing. Any suggestions? I do have ReSharper installed if there is a way that it can do this.</p> http://stackoverflow.com/questions/282982/can-wpf-user-control-detect-mousemovement-when-mouse-outside-of-uc-area/283015#283015 2 Answer by Todd White for Can WPF User Control Detect MouseMovement when Mouse outside of UC Area Todd White 2008-11-12T04:13:39Z 2008-11-12T04:13:39Z <p>You want to look into <a href="http://msdn.microsoft.com/en-us/library/ms591452(VS.85).aspx" rel="nofollow">Mouse.Capture</a>. Though, make sure you keep the <a href="http://msdn.microsoft.com/en-us/library/system.windows.input.capturemode(VS.85).aspx" rel="nofollow">CaptureMode</a> in mind.</p> http://stackoverflow.com/questions/278835/wpf-custom-control-with-item-data-templates/279029#279029 5 Answer by Todd White for WPF Custom Control with Item/Data Templates Todd White 2008-11-10T20:19:12Z 2008-11-10T23:53:48Z <p>You will want to add a DependencyProperty to your control. The xaml will look slightly different if you are deriving from UserControl or Control.</p> <pre><code>public partial class MyControl : UserControl { public MyControl() { InitializeComponent(); } public static readonly DependencyProperty ItemTemplateProperty = DependencyProperty.Register("ItemTemplate", typeof(DataTemplate), typeof(MyControl), new UIPropertyMetadata(null)); public DataTemplate ItemTemplate { get { return (DataTemplate) GetValue(ItemTemplateProperty); } set { SetValue(ItemTemplateProperty, value); } } } </code></pre> <p>Here is xaml for a UserControl.</p> <pre><code>&lt;UserControl x:Class="WpfApplication6.MyControl" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:src="clr-namespace:WpfApplication6"&gt; &lt;ListBox ItemTemplate="{Binding ItemTemplate, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type src:MyControl}}}" /&gt; &lt;/UserControl&gt; </code></pre> <p>Here is xaml for a Control:</p> <pre><code>&lt;Style TargetType="{x:Type src:MyControl}"&gt; &lt;Setter Property="Template"&gt; &lt;Setter.Value&gt; &lt;ControlTemplate TargetType="{x:Type src:MyControl}"&gt; &lt;Border Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}"&gt; &lt;ListBox ItemTemplate="{TemplateBinding ItemTemplate}" /&gt; &lt;/Border&gt; &lt;/ControlTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Style&gt; </code></pre> http://stackoverflow.com/questions/278304/what-is-the-best-way-to-stop-a-user-from-resizing-the-top-level-window-of-an-appl/278332#278332 9 Answer by Todd White for What is the best way to stop a user from resizing the top-level window of an application written in WPF? Todd White 2008-11-10T16:23:58Z 2008-11-10T16:23:58Z <p>You will want to use the <a href="http://msdn.microsoft.com/en-us/library/system.windows.resizemode.aspx" rel="nofollow">ResizeMode.NoResize</a> on the window.</p> <pre><code>&lt;Window x:Class="WpfApplication5.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" ResizeMode="NoResize"&gt; &lt;/Window&gt; </code></pre> http://stackoverflow.com/questions/276905/how-would-i-make-a-control-that-flashes-fades-on-a-mouse-click-windows/277080#277080 2 Answer by Todd White for How would I make a control that flashes/fades on a mouse click? (Windows) Todd White 2008-11-10T04:54:54Z 2008-11-10T04:54:54Z <p>WPF has very good support for animations. Animations are supported from both xaml and code behind, so you should be able to achieve any look that you are going for.</p> <p>The MSDN <a href="http://msdn.microsoft.com/en-us/library/ms752312.aspx" rel="nofollow">Animation Overview</a> for WPF looks to have a lot of good information for getting you started.</p> http://stackoverflow.com/questions/277001/wpf-custom-routed-event-question/277070#277070 2 Answer by Todd White for WPF Custom Routed event question Todd White 2008-11-10T04:43:42Z 2008-11-10T04:43:42Z <p>First off let me say your question doesn't make it clear that you don't want to use the existing <a href="http://msdn.microsoft.com/en-us/library/system.windows.uielement.gotfocusevent.aspx" rel="nofollow">UIElement.GotFocusEvent</a>, but I'll assume you know about it and have your reasons for not using it.</p> <p>You can always register a custom event on a static class, and raise it wherever you want. The <a href="http://msdn.microsoft.com/en-us/library/system.windows.input.keyboard(VS.85).aspx" rel="nofollow">Keyboard class</a> does with all of its events (e.g. <a href="http://msdn.microsoft.com/en-us/library/system.windows.input.keyboard.keydownevent(VS.85).aspx" rel="nofollow">Keyboard.KeyDownEvent</a>).</p> <pre><code>public static class RoutedEventUtility { public static readonly RoutedEvent MyCustomEvent = EventManager.RegisterRoutedEvent("MyCustomEvent", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(RoutedEventUtility)); } </code></pre> <p>You raise the event just like you would any other RoutedEvent.</p> <pre><code>RoutedEventArgs args = new RoutedEventArgs(RoutedEventUtility.MyCustomEvent); RaiseEvent(args); </code></pre> <p>If you want another class to own the event as a public field then you will need to add an owner.</p> <pre><code>public class MyCustomControl : Control { public static readonly RoutedEvent MyCustomEvent = RoutedEventUtility.MyCustomEvent.AddOwner(typeof(MyCustomControl)); } </code></pre> http://stackoverflow.com/questions/274348/binding-one-collection-to-multiple-tabs-with-filters/274458#274458 2 Answer by Todd White for Binding one collection to multiple tabs with filters Todd White 2008-11-08T06:34:12Z 2008-11-08T06:34:12Z <p>You can use a <a href="http://msdn.microsoft.com/en-us/library/system.windows.data.collectionviewsource.aspx" rel="nofollow">CollectionViewSource</a> to reuse the original collection with a filter. </p> <pre><code>&lt;Window.Resources&gt; &lt;CollectionViewSource x:Key="NeededItems" Source="{Binding Items}" Filter="NeededCollectionViewSource_Filter" /&gt; &lt;CollectionViewSource x:Key="BoughtItems" Source="{Binding Items}" Filter="BoughtCollectionViewSource_Filter" /&gt; &lt;/Window.Resources&gt; &lt;TabControl&gt; &lt;TabItem Header="All"&gt; &lt;ListBox DisplayMemberPath="Name" ItemsSource="{Binding Items}" /&gt; &lt;/TabItem&gt; &lt;TabItem Header="Bought"&gt; &lt;ListBox DisplayMemberPath="Name" ItemsSource="{Binding Source={StaticResource BoughtItems}}" /&gt; &lt;/TabItem&gt; &lt;TabItem Header="Needed"&gt; &lt;ListBox DisplayMemberPath="Name" ItemsSource="{Binding Source={StaticResource NeededItems}}" /&gt; &lt;/TabItem&gt; &lt;/TabControl&gt; </code></pre> <p>Some code behind is required for the filter.</p> <pre><code>private void NeededCollectionViewSource_Filter(object sender, FilterEventArgs e) { e.Accepted = ((ShoppingListItem) e.Item).Needed; } private void BoughtCollectionViewSource_Filter(object sender, FilterEventArgs e) { e.Accepted = !((ShoppingListItem) e.Item).Needed; } </code></pre> http://stackoverflow.com/questions/270602/mousecapture-prevents-all-mouse-based-triggers-from-firing-in-wpf/270981#270981 3 Answer by Todd White for MouseCapture prevents all mouse based triggers from firing in WPF Todd White 2008-11-07T01:26:53Z 2008-11-07T03:40:45Z <p>Are the elements part of the SubTree of your canvas? or outside of the canvas? If they are within then you could probably use the Capture method that takes a <a href="http://msdn.microsoft.com/en-us/library/system.windows.input.capturemode(VS.85).aspx" rel="nofollow">CaptureMode</a>.</p> <pre><code>Mouse.Capture(elementToCapture, CaptureMode.SubTree); </code></pre> <p>Alternatively, you should look at the <a href="http://msdn.microsoft.com/en-us/library/system.windows.dragdrop_members.aspx" rel="nofollow">DragDrop class</a> and consider using the <a href="http://msdn.microsoft.com/en-us/library/system.windows.dragdrop.dropevent.aspx" rel="nofollow">Drop event</a> instead?</p> http://stackoverflow.com/questions/271151/resharper-with-large-or-very-large-files/271170#271170 8 Answer by Todd White for Resharper with large or *very* large files Todd White 2008-11-07T03:33:19Z 2008-11-07T03:33:19Z <p>I use <a href="http://codeclimber.net.nz/archive/2008/08/06/how-to-disable-resharper-for-a-file-ctrl-8.aspx" rel="nofollow">ctrl+8</a> to disable resharper for a file.</p> http://stackoverflow.com/questions/231052/using-wpf-validation-rules-and-disabling-a-save-button/232548#232548 3 Answer by Todd White for Using WPF Validation rules and disabling a 'Save' button Todd White 2008-10-24T05:22:40Z 2008-11-07T03:26:47Z <p>You want to use <a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.validation.haserror.aspx" rel="nofollow">Validation.HasError</a> attached property.</p> <p>Along the same lines Josh Smith has an interesting read on <a href="http://joshsmithonwpf.wordpress.com/2008/10/08/binding-to-validationerrors0-without-creating-debug-spew/" rel="nofollow">Binding to (Validation.Errors)[0] without Creating Debug Spew</a>.</p> http://stackoverflow.com/questions/269073/observablecollection-that-also-monitors-changes-on-the-elements-in-collection/269283#269283 3 Answer by Todd White for ObservableCollection that also monitors changes on the elements in collection Todd White 2008-11-06T16:17:32Z 2008-11-06T16:17:32Z <p>If you want to use something built into the framework you can use <a href="http://msdn.microsoft.com/en-us/library/aa346595.aspx" rel="nofollow">FreezableCollection</a>. Then you will want to listen to the <a href="http://msdn.microsoft.com/en-us/library/system.windows.freezable.changed.aspx" rel="nofollow">Changed event</a>.</p> <blockquote> <p>Occurs when the Freezable or an object it contains is modified.</p> </blockquote> <p>Here is a small sample. The collection_Changed method will get called twice.</p> <pre><code>public partial class Window1 : Window { public Window1() { InitializeComponent(); FreezableCollection&lt;SolidColorBrush&gt; collection = new FreezableCollection&lt;SolidColorBrush&gt;(); collection.Changed += collection_Changed; SolidColorBrush brush = new SolidColorBrush(Colors.Red); collection.Add(brush); brush.Color = Colors.Blue; } private void collection_Changed(object sender, EventArgs e) { } } </code></pre> http://stackoverflow.com/questions/267603/wpf-binding-source-is-string-with-path-to-property/267637#267637 6 Answer by Todd White for WPF: Binding source is string with path to property Todd White 2008-11-06T04:27:04Z 2008-11-06T04:27:04Z <p>It sounds like you want the PropertyPath to be "Property.Property" which will work, but for the binding to work it needs a source object for the first Property. The two options that I'm aware of are <a href="http://msdn.microsoft.com/en-us/library/system.windows.frameworkelement.datacontext.aspx" rel="nofollow">DataContext</a> or a <a href="http://msdn.microsoft.com/en-us/library/system.windows.data.binding.source.aspx" rel="nofollow">Source</a>.</p> <p>With your sample code the other alternative is:</p> <pre><code>public partial class Window1 : Window { public MyClass2 MyClass2Object { get; set; } public Window1() { // use data context instead of source DataContext = this; InitializeComponent(); MyClass2Object = new MyClass2(); Binding binding = new Binding(); binding.Path = new PropertyPath("MyClass2Object.StringVar"); TextBoxFromXaml.SetBinding(TextBox.TextProperty, binding); } } public class MyClass2 { public string StringVar { get; set; } public MyClass2() { StringVar = "My String Here"; } } </code></pre> http://stackoverflow.com/questions/267364/wpf-eliminate-transparency-between-grid-cells/267378#267378 1 Answer by Todd White for WPF: Eliminate transparency between grid cells. Todd White 2008-11-06T01:16:55Z 2008-11-06T01:16:55Z <p>Without seeing any code my guess is that you need <a href="http://msdn.microsoft.com/en-us/library/system.windows.uielement.snapstodevicepixels.aspx" rel="nofollow">SnapsToDevicePixels</a> on the elements in the grid.</p> http://stackoverflow.com/questions/263551/databind-the-source-property-of-the-webbrowser-in-wpf/265648#265648 6 Answer by Todd White for databind the Source property of the WebBrowser in WPF Todd White 2008-11-05T16:12:57Z 2008-11-05T16:12:57Z <p>The problem is that <a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.webbrowser.source.aspx" rel="nofollow">WebBrowser.Source</a> is not a DependencyProperty. One workaround would be to use some AttachedProperty magic to enable this ability.</p> <pre><code>public static class WebBrowserUtility { public static readonly DependencyProperty BindableSourceProperty = DependencyProperty.RegisterAttached("BindableSource", typeof(string), typeof(WebBrowserUtility), new UIPropertyMetadata(null, BindableSourcePropertyChanged)); public static string GetBindableSource(DependencyObject obj) { return (string) obj.GetValue(BindableSourceProperty); } public static void SetBindableSource(DependencyObject obj, string value) { obj.SetValue(BindableSourceProperty, value); } public static void BindableSourcePropertyChanged(DependencyObject o, DependencyPropertyChangedEventArgs e) { WebBrowser browser = o as WebBrowser; if (browser != null) { string uri = e.NewValue as string; browser.Source = uri != null ? new Uri(uri) : null; } } } </code></pre> <p>Then in your xaml do:</p> <pre><code>&lt;WebBrowser ns:WebBrowserUtility.BindableSource="{Binding WebAddress}" ScrollViewer.HorizontalScrollBarVisibility="Disabled" ScrollViewer.VerticalScrollBarVisibility="Disabled" Width="300" Height="200" /&gt; </code></pre> http://stackoverflow.com/questions/265515/best-practice-when-not-implementing-ivalueconvert-convertback/265544#265544 10 Answer by Todd White for Best practice when not implementing IValueConvert.ConvertBack Todd White 2008-11-05T15:47:03Z 2008-11-05T15:47:03Z <p>The MSDN documentation for <a href="http://msdn.microsoft.com/en-us/library/system.windows.data.ivalueconverter.convertback.aspx" rel="nofollow">IValueConverter.ConvertBack</a> recomends returning <a href="http://msdn.microsoft.com/en-us/library/system.windows.dependencyproperty.unsetvalue.aspx" rel="nofollow">DependencyProperty.UnsetValue</a>.</p> <blockquote> <p>The data binding engine does not catch exceptions that are thrown by a user-supplied converter. Any exception that is thrown by the ConvertBack method, or any uncaught exceptions that are thrown by methods that the ConvertBack method calls, are treated as run-time errors. Handle anticipated problems by returning DependencyProperty.UnsetValue.</p> </blockquote> http://stackoverflow.com/questions/263614/calculate-the-display-width-of-a-string-in-c/263746#263746 7 Answer by Todd White for Calculate the display width of a string in C#? Todd White 2008-11-04T22:37:55Z 2008-11-04T22:37:55Z <p>In WPF you would use <a href="http://msdn.microsoft.com/en-us/library/system.windows.media.formattedtext.aspx" rel="nofollow">FormattedText</a>.</p> http://stackoverflow.com/questions/263322/copy-context-menu-for-listview-control/263540#263540 2 Answer by Todd White for Copy Context Menu for ListView Control Todd White 2008-11-04T21:37:07Z 2008-11-04T21:37:07Z <p>It looks like you need a CommandBinding.</p> <p>Here is how I would probably go about doing what you trying to do.</p> <pre><code>&lt;Window.CommandBindings&gt; &lt;CommandBinding Command="ApplicationCommands.Copy" Executed="CopyCommandHandler" CanExecute="CanCopyExecuteHandler" /&gt; &lt;/Window.CommandBindings&gt; &lt;Window.Resources&gt; &lt;ContextMenu x:Key="SharedInstanceContextMenu"&gt; &lt;MenuItem Header="Copy" Command="ApplicationCommands.Copy"/&gt; &lt;/ContextMenu&gt; &lt;Style x:Key="MyItemContainerStyle" TargetType="{x:Type ListBoxItem}"&gt; &lt;Setter Property="ContextMenu" Value="{StaticResource SharedInstanceContextMenu}" /&gt; &lt;/Style&gt; &lt;/Window.Resources&gt; &lt;ListBox ItemContainerStyle="{StaticResource MyItemContainerStyle}"&gt; &lt;ListBoxItem&gt;One&lt;/ListBoxItem&gt; &lt;ListBoxItem&gt;Two&lt;/ListBoxItem&gt; &lt;ListBoxItem&gt;Three&lt;/ListBoxItem&gt; &lt;ListBoxItem&gt;Four&lt;/ListBoxItem&gt; &lt;/ListBox&gt; </code></pre> http://stackoverflow.com/questions/262691/exposing-multiple-databinding-sources/262794#262794 4 Answer by Todd White for Exposing Multiple Databinding sources Todd White 2008-11-04T18:15:37Z 2008-11-04T18:15:37Z <p>I would probably use a CustomControl with two DependencyProperties. Then the external site that uses your custom control could bind the data that they want to that control, also by using a custom control you can template the way the control looks in different situations.</p> <p>Custom control code would look something like:</p> <pre><code>public class CustomControl : Control { public static readonly DependencyProperty PersonProperty = DependencyProperty.Register("Person", typeof(Person), typeof(CustomControl), new UIPropertyMetadata(null)); public Person Person { get { return (Person) GetValue(PersonProperty); } set { SetValue(PersonProperty, value); } } public static readonly DependencyProperty JobProperty = DependencyProperty.Register("Job", typeof(Job), typeof(CustomControl), new UIPropertyMetadata(null)); public Job Job { get { return (Job) GetValue(JobProperty); } set { SetValue(JobProperty, value); } } static CustomControl() { DefaultStyleKeyProperty.OverrideMetadata(typeof(CustomControl), new FrameworkPropertyMetadata(typeof(CustomControl))); } } </code></pre> <p>Generic.xaml is a file that should be created for you and could have a Style that looks something like this:</p> <pre><code>&lt;ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namespace:WpfApplication3"&gt; &lt;Style TargetType="{x:Type local:CustomControl}"&gt; &lt;Setter Property="Template"&gt; &lt;Setter.Value&gt; &lt;ControlTemplate TargetType="{x:Type local:CustomControl}"&gt; &lt;Border Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}"&gt; &lt;StackPanel&gt; &lt;TextBox Text="{TemplateBinding Person.Name}" /&gt; &lt;TextBox Text="{TemplateBinding Job.Address}" /&gt; &lt;/StackPanel&gt; &lt;/Border&gt; &lt;/ControlTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Style&gt; &lt;/ResourceDictionary&gt; </code></pre> <p>Finally, when you go to use your control you would do something like this.</p> <pre><code>&lt;src:CustomControl Person="{Binding Person}" Job="{Binding Job}" /&gt; </code></pre> http://stackoverflow.com/questions/262343/binding-a-dynamicresource/262377#262377 3 Answer by Todd White for Binding a DynamicResource Todd White 2008-11-04T16:31:42Z 2008-11-04T17:26:40Z <p>Sounds to me like what you really want is a <a href="http://msdn.microsoft.com/en-us/library/system.windows.data.compositecollection.aspx" rel="nofollow">CompositeCollection</a> and to setup a DataContext for your Page.</p> <pre><code>&lt;Page x:Class="MyPage" DataContext="{Binding RelativeSource={RelativeSource Self}}"&gt; &lt;Page.Resources&gt; &lt;CollectionViewSource Source="{Binding Items}" x:Key="items" /&gt; &lt;CollectionViewSource Source="{Binding RelatedItems}" x:Key="relatedItems" /&gt; &lt;/Page.Resources&gt; &lt;ListBox&gt; &lt;ListBox.ItemsSource&gt; &lt;CompositeCollection&gt; &lt;CollectionContainer Collection="{StaticResource items}" /&gt; &lt;CollectionContainer Collection="{StaticResource relatedItems}" /&gt; &lt;/CompositeCollection&gt; &lt;/ListBox.ItemsSource&gt; &lt;/ListBox&gt; &lt;/Page&gt; </code></pre> <p>The Code behind would look something like this:</p> <pre><code>public class MyPage : Page { private void Setup() { Items = ...; RelatedItems = ...; } public static readonly DependencyProperty ItemsProperty = DependencyProperty.Register("Items", typeof(ReadOnlyCollection&lt;data&gt;), typeof(MyPage),new PropertyMetadata(false)); public ReadOnlyCollection&lt;data&gt; Items { get { return (ReadOnlyCollection&lt;data&gt;)this.GetValue(ItemsProperty ); } set { this.SetValue(ItemsProperty , value); } } public static readonly DependencyProperty RelatedItemsProperty = DependencyProperty.Register("RelatedItems", typeof(ReadOnlyCollection&lt;data&gt;), typeof(MyPage),new PropertyMetadata(false)); public ReadOnlyCollection&lt;data&gt; RelatedItems { get { return (ReadOnlyCollection&lt;data&gt;)this.GetValue(RelatedItemsProperty ); } set { this.SetValue(RelatedItemsProperty , value); } } } </code></pre> <p><strong>Edit:</strong> I remembered that CollectionContainer doesn't participate in the logical tree so you need to use a CollectionViewSource and a StaticResource.</p> http://stackoverflow.com/questions/148704/how-to-bind-from-a-contenttemplate-to-the-surrounding-custom-control/255593#255593 0 Answer by Todd White for How to bind from a ContentTemplate to the surrounding custom Control? Todd White 2008-11-01T06:48:29Z 2008-11-04T06:22:24Z <p>What appears to be the problem is that you are using a ContentTemplate without actualy using the content property. The default DataContext for the ContentTemplate's DataTemplate is the Content property of TabItem. However, none of what I said actually explains <strong>why</strong> the binding doesn't work. Unfortunately I can't give you a definitive answer, but my best guess is that it is due to the fact that the TabControl reuses a ContentPresenter to display the content property for all tab items.</p> <p>So, in your case I would change the code to look something like this:</p> <pre><code>&lt;TabItem x:Class="App.MyTabItem" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:app="clr-namespace:App" Header="{Binding ShortLabel, RelativeSource={RelativeSource Self}}" Content="{Binding ShortLabel, RelativeSource={RelativeSource Self}}" /&gt; </code></pre> <p>If ShortLabel is a more complex object and not just a string then you would want to indroduce a ContentTemplate:</p> <pre><code>&lt;TabItem x:Class="App.MyTabItem" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:app="clr-namespace:App" Header="{Binding ShortLabel, RelativeSource={RelativeSource Self}}" Content="{Binding ComplexShortLabel, RelativeSource={RelativeSource Self}}"&gt; &lt;TabItem.ContentTemplate&gt; &lt;DataTemplate TargetType="{x:Type ComplexType}"&gt; &lt;TextBlock Text="{Binding Property}" /&gt; &lt;/DataTemplate&gt; &lt;/TabItem.ContentTemplate&gt; &lt;/TabItem&gt; </code></pre> http://stackoverflow.com/questions/254271/when-can-i-dispose-an-idisposable-wpf-control-e-g-windowsformshost/257591#257591 3 Answer by Todd White for When can I dispose an IDisposable WPF control e.g. WindowsFormsHost? Todd White 2008-11-02T23:44:51Z 2008-11-02T23:44:51Z <p>In the case of application shutdown there is nothing you need to do to properly dispose of the WindowsFormsHost. Since it derives from HwndHost disposing is handled when the Dispatcher is shutdown. If you use Reflector you will see that when HwndHost is initialized it creates a WeakEventDispatcherShutdown.</p> <p>If you are using it in a dialog the best I can suggest is to override OnClosed and dispose of your Host then, otherwise the HwndHost will hang around until until the Dispatcher is shutdown.</p> <pre><code>public partial class Dialog : Window { public Dialog() { InitializeComponent(); } protected override void OnClosed(EventArgs e) { if (host != null) host.Dispose(); base.OnClosed(e); } } </code></pre> <p>A simple way to test when dispose gets called is to derive a custom class from WindowsFormsHost and play around with different situations. Put a break point in dispose and see when it gets called.</p> <pre><code>public class CustomWindowsFormsHost : WindowsFormsHost { protected override void Dispose(bool disposing) { base.Dispose(disposing); } } </code></pre> http://stackoverflow.com/questions/257396/wpf-commandparameter-binding-problem/257508#257508 3 Answer by Todd White for WPF CommandParameter Binding Problem Todd White 2008-11-02T22:37:34Z 2008-11-02T22:37:34Z <p>InitializeCompenent processes the xaml associated with the file. It is at this point in time that the CommandParameter binding is first processed. If you initialize your field before InitializeCompenent then your property will not be null. If you create it after then it is null.</p> <p>If you want to create the widget after InitializeCompenent then you will need to use a dependency property. The dependency proeprty will raise a notification that will cause the CommandParameter to be updated and thus it will not be null.</p> <p>Here is a sample of how to make TestWidget a dependency property.</p> <pre><code>public static readonly DependencyProperty TestWidgetProperty = DependencyProperty.Register("TestWidget", typeof(Widget), typeof(Window1), new UIPropertyMetadata(null)); public Widget TestWidget { get { return (Widget) GetValue(TestWidgetProperty); } set { SetValue(TestWidgetProperty, value); } } </code></pre> http://stackoverflow.com/questions/253757/why-events-cant-be-used-in-the-same-way-in-derived-classes-as-in-the-base-class/253776#253776 8 Answer by Todd White for Why events can't be used in the same way in derived classes as in the base class in C#? Todd White 2008-10-31T14:47:12Z 2008-10-31T15:50:44Z <p>The standard practice here is to have a protected virtual method OnSomeEvent on your base class, then call that method in derived classes. Also, for threading reasons you will want to keep a reference to the handler before checking null and calling it.</p> <p>For an explanation of the why read <a href="http://stackoverflow.com/questions/253757/why-events-cant-be-used-in-the-same-way-in-derived-classes-as-in-the-base-class#253803">Jon Skeet's</a> answer or the <a href="http://msdn.microsoft.com/en-us/library/aa664454(VS.71).aspx" rel="nofollow">C# specification</a> which describes how the compiler automatically creates a private field.</p> <p>Here is one possible work around.</p> <pre><code>public class A { public event EventHandler SomeEvent; public void someMethod() { OnSomeEvent(); } protected void OnSomeEvent() { EventHandler handler = SomeEvent; if(handler != null) handler(this, someArgs); } } public class B : A { public void someOtherMethod() { OnSomeEvent(); } } </code></pre> <p><strong>Edit:</strong> Updated code based upon <a href="http://msdn.microsoft.com/en-us/library/cf18x51d(VS.71).aspx" rel="nofollow">Framework Design Guidelines section 5.4</a> and <a href="http://stackoverflow.com/questions/253757/why-events-cant-be-used-in-the-same-way-in-derived-classes-as-in-the-base-class#253806">reminders</a> by others.</p> http://stackoverflow.com/questions/250622/mouseover-highlighting-style-returning-to-default-after-a-second-caused-by-aero/252450#252450 3 Answer by Todd White for MouseOver highlighting style returning to default after a second (Caused by Aero?) Todd White 2008-10-31T02:29:42Z 2008-10-31T02:29:42Z <p>The problem is indeed due to the default template for the ComboBox. If you use <a href="http://www.red-gate.com/products/reflector/" rel="nofollow">Reflector</a> to open the PresentationFramework.Aero assembly you can take a look at the ButtonChrome class. There is a method called OnRenderMouseOverChanged that is hiding the Red background.</p> <p>Even though it is a lot of work, for ComboBox at least, you probably will want to override the default template for the ComboBox. You can get the basic idea of what the ComboBox temlpate is like by using <a href="http://www.sellsbrothers.com/news/showTopic.aspx?ixTopic=2091" rel="nofollow">Show Me The Template</a> or <a href="http://www.microsoft.com/expression/products/Overview.aspx?key=blend" rel="nofollow">Blend</a>.</p> <p>You can use your same style to override the template.</p> <pre><code>&lt;Style TargetType="{x:Type ComboBox}"&gt; &lt;Setter Property="Template"&gt; &lt;Setter.Value&gt; &lt;ControlTemplate TargetType="{x:Type ComboBox}"&gt; &lt;!-- Template Here --&gt; &lt;/ControlTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Style&gt; </code></pre> http://stackoverflow.com/questions/250840/how-do-you-bind-the-textwrapping-property-of-a-textbox-to-the-ischecked-value-of/252284#252284 2 Answer by Todd White for How do you bind the TextWrapping property of a TextBox to the IsChecked value of a MenuItem? Todd White 2008-10-31T00:54:03Z 2008-10-31T00:54:03Z <p>If you want to do this all in xaml you need to use a <a href="http://msdn.microsoft.com/en-us/library/system.windows.style.aspx" rel="nofollow">Style</a> and a <a href="http://msdn.microsoft.com/en-us/library/system.windows.datatrigger.aspx" rel="nofollow">DataTrigger</a>.</p> <pre><code>&lt;StackPanel&gt; &lt;CheckBox x:Name="WordWrap"&gt;Word Wrap&lt;/CheckBox&gt; &lt;TextBlock Width="50"&gt; Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Proin lacinia nibh non augue. Pellentesque pretium neque et neque auctor adipiscing. &lt;TextBlock.Style&gt; &lt;Style TargetType="{x:Type TextBlock}"&gt; &lt;Style.Triggers&gt; &lt;DataTrigger Binding="{Binding IsChecked, ElementName=WordWrap}" Value="True"&gt; &lt;Setter Property="TextWrapping" Value="Wrap" /&gt; &lt;/DataTrigger&gt; &lt;/Style.Triggers&gt; &lt;/Style&gt; &lt;/TextBlock.Style&gt; &lt;/TextBlock&gt; &lt;/StackPanel&gt; </code></pre> http://stackoverflow.com/questions/249971/wpf-how-to-apply-a-generaltransform-to-a-geometry-data-and-return-the-new-geomet/250587#250587 5 Answer by Todd White for WPF: How to apply a GeneralTransform to a Geometry data and return the new geometry? Todd White 2008-10-30T15:25:21Z 2008-10-30T15:25:21Z <p>You could try and use Geometry.Combine. It applies a transform during the combine. One catch is that Combine only works if your Geometry has area, so single lines will not work.</p> <p>Here is a sample that worked for me.</p> <pre><code>PathGeometry geometry = new PathGeometry(); geometry.Figures.Add(new PathFigure(new Point(10, 10), new PathSegment[] { new LineSegment(new Point(10, 20), true), new LineSegment(new Point(20, 20), true) }, true)); ScaleTransform transform = new ScaleTransform(2, 2); PathGeometry geometryTransformed = Geometry.Combine(geometry, geometry, GeometryCombineMode.Intersect, transform); </code></pre> http://stackoverflow.com/questions/244531/is-there-an-alternative-to-string-replace-that-is-case-insensitive/244585#244585 6 Answer by Todd White for Is there an alternative to string.Replace that is case-insensitive? Todd White 2008-10-28T19:47:10Z 2008-10-28T19:47:10Z <p><a href="http://msdn.microsoft.com/en-us/library/ewy2t5e0.aspx" rel="nofollow">From MSDN</a><br /> $0 - "Substitutes the last substring matched by group number number (decimal)."</p> <p>In .NET Regular expressions group 0 is always the entire match. For a literal $ you need to</p> <pre><code>string value = Regex.Replace("%PolicyAmount%", "%PolicyAmount%", @"$$0", RegexOptions.IgnoreCase); </code></pre> http://stackoverflow.com/questions/244408/deleting-items-from-one-collection-in-another-collection/244437#244437 10 Answer by Todd White for Deleting items from one collection in another collection Todd White 2008-10-28T19:06:29Z 2008-10-28T19:06:29Z <p>Here are two options. Not sure which one is faster.</p> <pre><code>listB.RemoveAll(listA.Contains); foreach (string str in listA.Intersect(listB)) listB.Remove(str); </code></pre> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237610#237610 8 Answer by Todd White for What coding mistakes are a telltale giveaway of an inexperienced programmer? Todd White 2008-10-26T05:22:28Z 2008-10-26T05:22:28Z <p>I've seen a number of interns write this code in c#:</p> <pre><code>public type Property { get { return Property; } set { Property = value; } } </code></pre> http://stackoverflow.com/questions/289261/is-there-a-way-to-not-create-an-explicit-eventhandler-delegate-in-visual-studio/289263#289263 Comment by Todd White on Is there a way to not create an explicit EventHandler delegate in Visual Studio? Todd White 2008-11-14T05:15:34Z 2008-11-14T05:15:34Z Looks like on my machine it was setup to be Ctrl+Alt+Space, not sure why that was chosen. The command that is run is &quot;ReSharper.ReSharper_CompleteCodeSmart&quot;. http://stackoverflow.com/questions/289261/is-there-a-way-to-not-create-an-explicit-eventhandler-delegate-in-visual-studio/289263#289263 Comment by Todd White on Is there a way to not create an explicit EventHandler delegate in Visual Studio? Todd White 2008-11-14T04:57:39Z 2008-11-14T04:57:39Z When I go to tools -&gt; options -&gt; Environtment -&gt; Keyboard it looks like ctrl+shift+space is assigned to Edit.ParameterInfo. Maybe it should be something different? http://stackoverflow.com/questions/289261/is-there-a-way-to-not-create-an-explicit-eventhandler-delegate-in-visual-studio/289263#289263 Comment by Todd White on Is there a way to not create an explicit EventHandler delegate in Visual Studio? Todd White 2008-11-14T04:44:31Z 2008-11-14T04:44:31Z Hmm, ctrl-shift-space isn't doing anything. Maybe I need to change a setting? http://stackoverflow.com/questions/284324/what-is-the-best-way-to-build-xml-in-c-code/284331#284331 Comment by Todd White on What is the best way to build XML in C# code? Todd White 2008-11-12T16:12:49Z 2008-11-12T16:12:49Z Don't forget about XStreamingElement, <a href="http://msdn.microsoft.com/en-us/library/system.xml.linq.xstreamingelement.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a>. :) http://stackoverflow.com/questions/278835/wpf-custom-control-with-item-data-templates/279029#279029 Comment by Todd White on WPF Custom Control with Item/Data Templates Todd White 2008-11-10T23:53:22Z 2008-11-10T23:53:22Z Oh right I forgot the property on ItemTemplate binding. I'll fix my answer too. http://stackoverflow.com/questions/271238/how-do-i-detect-when-a-removable-disk-is-inserted-using-c/271251#271251 Comment by Todd White on How do I detect when a removable disk is inserted using C#? Todd White 2008-11-07T04:40:03Z 2008-11-07T04:40:03Z @amdfan: Jinx you owe me a coke! ;) http://stackoverflow.com/questions/271238/how-do-i-detect-when-a-removable-disk-is-inserted-using-c/271251#271251 Comment by Todd White on How do I detect when a removable disk is inserted using C#? Todd White 2008-11-07T04:39:29Z 2008-11-07T04:39:29Z Looks like it is in System.Management.dll - <a href="http://msdn.microsoft.com/en-us/library/system.management.managementeventwatcher.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a> http://stackoverflow.com/questions/267603/wpf-binding-source-is-string-with-path-to-property Comment by Todd White on WPF: Binding source is string with path to property Todd White 2008-11-06T04:14:00Z 2008-11-06T04:14:00Z Some 'fake' code of what you would like to do might be slightly more clear than what you are describing. http://stackoverflow.com/questions/267364/wpf-eliminate-transparency-between-grid-cells/267378#267378 Comment by Todd White on WPF: Eliminate transparency between grid cells. Todd White 2008-11-06T01:53:11Z 2008-11-06T01:53:11Z Can you provide a sample of that code? http://stackoverflow.com/questions/263322/copy-context-menu-for-listview-control/263540#263540 Comment by Todd White on Copy Context Menu for ListView Control Todd White 2008-11-05T17:17:36Z 2008-11-05T17:17:36Z Glad to help! :) http://stackoverflow.com/questions/263614/calculate-the-display-width-of-a-string-in-c/263633#263633 Comment by Todd White on Calculate the display width of a string in C#? Todd White 2008-11-04T22:39:30Z 2008-11-04T22:39:30Z In WPF you would use FormattedText, <a href="http://msdn.microsoft.com/en-us/library/system.windows.media.formattedtext.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a>. http://stackoverflow.com/questions/262691/exposing-multiple-databinding-sources/262794#262794 Comment by Todd White on Exposing Multiple Databinding sources Todd White 2008-11-04T20:56:52Z 2008-11-04T20:56:52Z Can you give a bit more context of how you are now trying to do it? Maybe create a new question if this one is no longer relevant. http://stackoverflow.com/questions/259886/how-do-i-copy-a-wpf-resource-in-xaml/259976#259976 Comment by Todd White on How do I copy a WPF resource in xaml? Todd White 2008-11-03T21:47:50Z 2008-11-03T21:47:50Z My thoughts would be to just use the same static resource and name it so that it is reusable. When the resources actually need to be different then create the new static resource. http://stackoverflow.com/questions/259886/how-do-i-copy-a-wpf-resource-in-xaml/259976#259976 Comment by Todd White on How do I copy a WPF resource in xaml? Todd White 2008-11-03T21:26:45Z 2008-11-03T21:26:45Z Actually you can have code behind for ResourceDictionaries. You need to use x:Class. http://stackoverflow.com/questions/257587/bring-a-window-to-the-front-in-wpf Comment by Todd White on Bring a window to the front in WPF Todd White 2008-11-03T01:02:03Z 2008-11-03T01:02:03Z Can you give a bit more context code?