User Todd White - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T04:38:21Zhttp://stackoverflow.com/feeds/user/30833http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/279157/is-stack-overflow-reputation-marketable27Is Stack Overflow reputation marketable? [closed]Todd White2008-11-10T21:02:22Z2009-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-studio3Is there a way to not create an explicit EventHandler delegate in Visual Studio?Todd White2008-11-14T04:37:53Z2008-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#2830152Answer by Todd White for Can WPF User Control Detect MouseMovement when Mouse outside of UC AreaTodd White2008-11-12T04:13:39Z2008-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#2790295Answer by Todd White for WPF Custom Control with Item/Data TemplatesTodd White2008-11-10T20:19:12Z2008-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><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">
<ListBox ItemTemplate="{Binding ItemTemplate, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type src:MyControl}}}" />
</UserControl>
</code></pre>
<p>Here is xaml for a Control:</p>
<pre><code><Style TargetType="{x:Type src:MyControl}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type src:MyControl}">
<Border Background="{TemplateBinding Background}"
BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="{TemplateBinding BorderThickness}">
<ListBox ItemTemplate="{TemplateBinding ItemTemplate}" />
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</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#2783329Answer 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 White2008-11-10T16:23:58Z2008-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><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">
</Window>
</code></pre>
http://stackoverflow.com/questions/276905/how-would-i-make-a-control-that-flashes-fades-on-a-mouse-click-windows/277080#2770802Answer by Todd White for How would I make a control that flashes/fades on a mouse click? (Windows)Todd White2008-11-10T04:54:54Z2008-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#2770702Answer by Todd White for WPF Custom Routed event questionTodd White2008-11-10T04:43:42Z2008-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#2744582Answer by Todd White for Binding one collection to multiple tabs with filtersTodd White2008-11-08T06:34:12Z2008-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><Window.Resources>
<CollectionViewSource x:Key="NeededItems" Source="{Binding Items}" Filter="NeededCollectionViewSource_Filter" />
<CollectionViewSource x:Key="BoughtItems" Source="{Binding Items}" Filter="BoughtCollectionViewSource_Filter" />
</Window.Resources>
<TabControl>
<TabItem Header="All">
<ListBox DisplayMemberPath="Name" ItemsSource="{Binding Items}" />
</TabItem>
<TabItem Header="Bought">
<ListBox DisplayMemberPath="Name" ItemsSource="{Binding Source={StaticResource BoughtItems}}" />
</TabItem>
<TabItem Header="Needed">
<ListBox DisplayMemberPath="Name" ItemsSource="{Binding Source={StaticResource NeededItems}}" />
</TabItem>
</TabControl>
</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#2709813Answer by Todd White for MouseCapture prevents all mouse based triggers from firing in WPFTodd White2008-11-07T01:26:53Z2008-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#2711708Answer by Todd White for Resharper with large or *very* large filesTodd White2008-11-07T03:33:19Z2008-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#2325483Answer by Todd White for Using WPF Validation rules and disabling a 'Save' buttonTodd White2008-10-24T05:22:40Z2008-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#2692833Answer by Todd White for ObservableCollection that also monitors changes on the elements in collectionTodd White2008-11-06T16:17:32Z2008-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<SolidColorBrush> collection = new FreezableCollection<SolidColorBrush>();
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#2676376Answer by Todd White for WPF: Binding source is string with path to propertyTodd White2008-11-06T04:27:04Z2008-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#2673781Answer by Todd White for WPF: Eliminate transparency between grid cells.Todd White2008-11-06T01:16:55Z2008-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#2656486Answer by Todd White for databind the Source property of the WebBrowser in WPFTodd White2008-11-05T16:12:57Z2008-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><WebBrowser ns:WebBrowserUtility.BindableSource="{Binding WebAddress}"
ScrollViewer.HorizontalScrollBarVisibility="Disabled"
ScrollViewer.VerticalScrollBarVisibility="Disabled"
Width="300"
Height="200" />
</code></pre>
http://stackoverflow.com/questions/265515/best-practice-when-not-implementing-ivalueconvert-convertback/265544#26554410Answer by Todd White for Best practice when not implementing IValueConvert.ConvertBackTodd White2008-11-05T15:47:03Z2008-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#2637467Answer by Todd White for Calculate the display width of a string in C#?Todd White2008-11-04T22:37:55Z2008-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#2635402Answer by Todd White for Copy Context Menu for ListView ControlTodd White2008-11-04T21:37:07Z2008-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><Window.CommandBindings>
<CommandBinding
Command="ApplicationCommands.Copy"
Executed="CopyCommandHandler"
CanExecute="CanCopyExecuteHandler" />
</Window.CommandBindings>
<Window.Resources>
<ContextMenu x:Key="SharedInstanceContextMenu">
<MenuItem Header="Copy" Command="ApplicationCommands.Copy"/>
</ContextMenu>
<Style x:Key="MyItemContainerStyle" TargetType="{x:Type ListBoxItem}">
<Setter Property="ContextMenu" Value="{StaticResource SharedInstanceContextMenu}" />
</Style>
</Window.Resources>
<ListBox ItemContainerStyle="{StaticResource MyItemContainerStyle}">
<ListBoxItem>One</ListBoxItem>
<ListBoxItem>Two</ListBoxItem>
<ListBoxItem>Three</ListBoxItem>
<ListBoxItem>Four</ListBoxItem>
</ListBox>
</code></pre>
http://stackoverflow.com/questions/262691/exposing-multiple-databinding-sources/262794#2627944Answer by Todd White for Exposing Multiple Databinding sourcesTodd White2008-11-04T18:15:37Z2008-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><ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:WpfApplication3">
<Style TargetType="{x:Type local:CustomControl}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type local:CustomControl}">
<Border Background="{TemplateBinding Background}"
BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="{TemplateBinding BorderThickness}">
<StackPanel>
<TextBox Text="{TemplateBinding Person.Name}" />
<TextBox Text="{TemplateBinding Job.Address}" />
</StackPanel>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ResourceDictionary>
</code></pre>
<p>Finally, when you go to use your control you would do something like this.</p>
<pre><code><src:CustomControl Person="{Binding Person}" Job="{Binding Job}" />
</code></pre>
http://stackoverflow.com/questions/262343/binding-a-dynamicresource/262377#2623773Answer by Todd White for Binding a DynamicResourceTodd White2008-11-04T16:31:42Z2008-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><Page x:Class="MyPage" DataContext="{Binding RelativeSource={RelativeSource Self}}">
<Page.Resources>
<CollectionViewSource Source="{Binding Items}" x:Key="items" />
<CollectionViewSource Source="{Binding RelatedItems}" x:Key="relatedItems" />
</Page.Resources>
<ListBox>
<ListBox.ItemsSource>
<CompositeCollection>
<CollectionContainer
Collection="{StaticResource items}" />
<CollectionContainer
Collection="{StaticResource relatedItems}" />
</CompositeCollection>
</ListBox.ItemsSource>
</ListBox>
</Page>
</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<data>), typeof(MyPage),new PropertyMetadata(false));
public ReadOnlyCollection<data> Items
{
get { return (ReadOnlyCollection<data>)this.GetValue(ItemsProperty ); }
set { this.SetValue(ItemsProperty , value); }
}
public static readonly DependencyProperty RelatedItemsProperty =
DependencyProperty.Register("RelatedItems", typeof(ReadOnlyCollection<data>), typeof(MyPage),new PropertyMetadata(false));
public ReadOnlyCollection<data> RelatedItems
{
get { return (ReadOnlyCollection<data>)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#2555930Answer by Todd White for How to bind from a ContentTemplate to the surrounding custom Control?Todd White2008-11-01T06:48:29Z2008-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><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}}" />
</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><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}}">
<TabItem.ContentTemplate>
<DataTemplate TargetType="{x:Type ComplexType}">
<TextBlock Text="{Binding Property}" />
</DataTemplate>
</TabItem.ContentTemplate>
</TabItem>
</code></pre>
http://stackoverflow.com/questions/254271/when-can-i-dispose-an-idisposable-wpf-control-e-g-windowsformshost/257591#2575913Answer by Todd White for When can I dispose an IDisposable WPF control e.g. WindowsFormsHost?Todd White2008-11-02T23:44:51Z2008-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#2575083Answer by Todd White for WPF CommandParameter Binding ProblemTodd White2008-11-02T22:37:34Z2008-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#2537768Answer 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 White2008-10-31T14:47:12Z2008-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#2524503Answer by Todd White for MouseOver highlighting style returning to default after a second (Caused by Aero?)Todd White2008-10-31T02:29:42Z2008-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><Style TargetType="{x:Type ComboBox}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type ComboBox}">
<!-- Template Here -->
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</code></pre>
http://stackoverflow.com/questions/250840/how-do-you-bind-the-textwrapping-property-of-a-textbox-to-the-ischecked-value-of/252284#2522842Answer by Todd White for How do you bind the TextWrapping property of a TextBox to the IsChecked value of a MenuItem?Todd White2008-10-31T00:54:03Z2008-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><StackPanel>
<CheckBox x:Name="WordWrap">Word Wrap</CheckBox>
<TextBlock Width="50">
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Proin lacinia nibh non augue. Pellentesque pretium neque et neque auctor adipiscing.
<TextBlock.Style>
<Style TargetType="{x:Type TextBlock}">
<Style.Triggers>
<DataTrigger Binding="{Binding IsChecked, ElementName=WordWrap}" Value="True">
<Setter Property="TextWrapping" Value="Wrap" />
</DataTrigger>
</Style.Triggers>
</Style>
</TextBlock.Style>
</TextBlock>
</StackPanel>
</code></pre>
http://stackoverflow.com/questions/249971/wpf-how-to-apply-a-generaltransform-to-a-geometry-data-and-return-the-new-geomet/250587#2505875Answer by Todd White for WPF: How to apply a GeneralTransform to a Geometry data and return the new geometry?Todd White2008-10-30T15:25:21Z2008-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#2445856Answer by Todd White for Is there an alternative to string.Replace that is case-insensitive?Todd White2008-10-28T19:47:10Z2008-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#24443710Answer by Todd White for Deleting items from one collection in another collectionTodd White2008-10-28T19:06:29Z2008-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#2376108Answer by Todd White for What coding mistakes are a telltale giveaway of an inexperienced programmer?Todd White2008-10-26T05:22:28Z2008-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#289263Comment by Todd White on Is there a way to not create an explicit EventHandler delegate in Visual Studio?Todd White2008-11-14T05:15:34Z2008-11-14T05:15:34ZLooks like on my machine it was setup to be Ctrl+Alt+Space, not sure why that was chosen. The command that is run is "ReSharper.ReSharper_CompleteCodeSmart".http://stackoverflow.com/questions/289261/is-there-a-way-to-not-create-an-explicit-eventhandler-delegate-in-visual-studio/289263#289263Comment by Todd White on Is there a way to not create an explicit EventHandler delegate in Visual Studio?Todd White2008-11-14T04:57:39Z2008-11-14T04:57:39ZWhen I go to tools -> options -> Environtment -> 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#289263Comment by Todd White on Is there a way to not create an explicit EventHandler delegate in Visual Studio?Todd White2008-11-14T04:44:31Z2008-11-14T04:44:31ZHmm, 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#284331Comment by Todd White on What is the best way to build XML in C# code?Todd White2008-11-12T16:12:49Z2008-11-12T16:12:49ZDon'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/…</a>. :)http://stackoverflow.com/questions/278835/wpf-custom-control-with-item-data-templates/279029#279029Comment by Todd White on WPF Custom Control with Item/Data TemplatesTodd White2008-11-10T23:53:22Z2008-11-10T23:53:22ZOh 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#271251Comment by Todd White on How do I detect when a removable disk is inserted using C#?Todd White2008-11-07T04:40:03Z2008-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#271251Comment by Todd White on How do I detect when a removable disk is inserted using C#?Todd White2008-11-07T04:39:29Z2008-11-07T04:39:29ZLooks 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/…</a>http://stackoverflow.com/questions/267603/wpf-binding-source-is-string-with-path-to-propertyComment by Todd White on WPF: Binding source is string with path to propertyTodd White2008-11-06T04:14:00Z2008-11-06T04:14:00ZSome '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#267378Comment by Todd White on WPF: Eliminate transparency between grid cells.Todd White2008-11-06T01:53:11Z2008-11-06T01:53:11ZCan you provide a sample of that code?http://stackoverflow.com/questions/263322/copy-context-menu-for-listview-control/263540#263540Comment by Todd White on Copy Context Menu for ListView ControlTodd White2008-11-05T17:17:36Z2008-11-05T17:17:36ZGlad to help! :)http://stackoverflow.com/questions/263614/calculate-the-display-width-of-a-string-in-c/263633#263633Comment by Todd White on Calculate the display width of a string in C#?Todd White2008-11-04T22:39:30Z2008-11-04T22:39:30ZIn 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/…</a>.http://stackoverflow.com/questions/262691/exposing-multiple-databinding-sources/262794#262794Comment by Todd White on Exposing Multiple Databinding sourcesTodd White2008-11-04T20:56:52Z2008-11-04T20:56:52ZCan 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#259976Comment by Todd White on How do I copy a WPF resource in xaml?Todd White2008-11-03T21:47:50Z2008-11-03T21:47:50ZMy 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#259976Comment by Todd White on How do I copy a WPF resource in xaml?Todd White2008-11-03T21:26:45Z2008-11-03T21:26:45ZActually 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-wpfComment by Todd White on Bring a window to the front in WPFTodd White2008-11-03T01:02:03Z2008-11-03T01:02:03ZCan you give a bit more context code?