User Donnelle - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T22:23:25Z http://stackoverflow.com/feeds/user/28074 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1083782/missingmethodexception-but-i-dont-understand-why 1 MissingMethodException but I don't understand why Donnelle 2009-07-05T10:00:33Z 2009-07-06T17:58:35Z <p>I'm creating an assembly via reflection, and then using it to create an instance of a WCF service client. </p> <pre><code>object obj = assembly.CreateInstance( serviceName, true, BindingFlags.CreateInstance,null,createArgs, null, null); Type type = obj.GetType(); </code></pre> <p>obj is of type HelloWorldServiceClient.</p> <p>type.GetMethods() has 14 MethodInfo results. The first one is {Acme.TestService.HelloWorldResponse HelloWorld(Acme.TestService.HelloWorldRequest)}</p> <p>But when I do</p> <pre><code>return (T)type.InvokeMember( "HelloWorld", BindingFlags.InvokeMethod, null, obj, args); </code></pre> <p>I get a MissingMethodException. </p> <p>type.ContainsGenericParameters = false.</p> <p>args is object[1] and contains a single {Acme.TestService.HelloWorldRequest}.</p> <p>I'm dreadfully confused. Can anyone help me out?</p> http://stackoverflow.com/questions/1073420/assembly-getexportedtypes-doesnt-include-wcf-service 0 assembly.GetExportedTypes() doesn't include WCF service Donnelle 2009-07-02T09:33:06Z 2009-07-02T09:38:49Z <p>I use a WsdlImporter and ServiceContractGenerator to set up CodeDomProvider to get an assembly which (I thought) should allow me to create an instance of my HelloWorldService. </p> <pre><code>MetadataExchangeClient mexClient = new MetadataExchangeClient(metadataAddress); mexClient.ResolveMetadataReferences = true; MetadataSet metaDocs = mexClient.GetMetadata(); WsdlImporter importer = new WsdlImporter(metaDocs); ServiceContractGenerator generator = new ServiceContractGenerator(); System.Collections.ObjectModel.Collection&lt;ContractDescription&gt; contracts = importer.ImportAllContracts(); importer.ImportAllEndpoints(); foreach (ContractDescription contract in contracts) { generator.GenerateServiceContractType(contract); } if (generator.Errors.Count != 0) { throw new Exception("There were errors during code compilation."); } CodeDomProvider codeDomProvider = CodeDomProvider.CreateProvider("C#"); CompilerParameters parameters = new CompilerParameters(); parameters.CompilerOptions = string.Format(@" /lib:{0}", "\"C:\\Program Files\\Reference Assemblies\\Microsoft\\Framework\\v3.0\""); parameters.ReferencedAssemblies.Add("System.ServiceModel.dll"); parameters.ReferencedAssemblies.Add("System.Runtime.Serialization.dll"); CodeCompileUnit codeUnit = generator.TargetCompileUnit; CompilerResults results = codeDomProvider.CompileAssemblyFromDom(parameters, codeUnit); foreach (CompilerError oops in results.Errors) { throw new Exception("Compilation Error Creating Assembly: " + oops.ErrorText); } return results.CompiledAssembly; </code></pre> <p>assembly.GetExportedTypes() and assembly.GetTypes() return five types: IHelloWorldService, IHelloWorldServiceChannel, HelloWorldServiceClient, and the two DataContract request and response types.</p> <p>I was expecting to be able to use assembly.CreateInstance("HelloWorldService"); to get an instance of the service to be able to invoke methods on it, but of course this is null.</p> <p>What am I missing? Any ideas greatly appreciated. Let me know if you need more detail.</p> http://stackoverflow.com/questions/660554/how-to-automatically-select-all-text-on-focus-in-wpf-textbox/661224#661224 7 Answer by Donnelle for How to automatically select all text on focus in WPF TextBox? Donnelle 2009-03-19T06:18:35Z 2009-06-03T08:41:56Z <p>We have it so the first click selects all, and another click goes to cursor (our application is designed for use on tablets with pens).</p> <p>You might find it useful.</p> <pre><code>public class ClickSelectTextBox : TextBox { public ClickSelectTextBox() { AddHandler(PreviewMouseLeftButtonDownEvent, new MouseButtonEventHandler(SelectivelyIgnoreMouseButton), true); AddHandler(GotKeyboardFocusEvent, new RoutedEventHandler(SelectAllText), true); AddHandler(MouseDoubleClickEvent, new RoutedEventHandler(SelectAllText), true); } private static void SelectivelyIgnoreMouseButton(object sender, MouseButtonEventArgs e) { // Find the TextBox DependencyObject parent = e.OriginalSource as UIElement; while (parent != null &amp;&amp; !(parent is TextBox)) parent = VisualTreeHelper.GetParent(parent); if (parent != null) { var textBox = (TextBox)parent; if (!textBox.IsKeyboardFocusWithin) { // If the text box is not yet focussed, give it the focus and // stop further processing of this click event. textBox.Focus(); e.Handled = true; } } } private static void SelectAllText(object sender, RoutedEventArgs e) { var textBox = e.OriginalSource as TextBox; if (textBox != null) textBox.SelectAll(); } } </code></pre> http://stackoverflow.com/questions/660441/previewleftmousebuttondown-listeners-report-different-mousebuttoneventargs-source/660769#660769 0 Answer by Donnelle for PreviewLeftMouseButtonDown Listeners Report Different MouseButtonEventArgs.Source For Same Event Donnelle 2009-03-19T01:37:17Z 2009-03-19T01:37:17Z <p>Try e.OriginalSource.</p> http://stackoverflow.com/questions/656552/is-it-possible-to-refresh-wpf-data-bindings/656738#656738 1 Answer by Donnelle for Is it possible to 'refresh' WPF data bindings Donnelle 2009-03-18T02:10:39Z 2009-03-18T02:10:39Z <p>Another way to resolve this issue is to fake up a list of properties in a ListBox and have the ListBoxItem template be a radiobutton.</p> http://stackoverflow.com/questions/604952/wpf-allow-textbox-to-be-resized-but-not-to-grow-on-user-input/605147#605147 0 Answer by Donnelle for WPF: Allow TextBox to be resized but not to grow on user input Donnelle 2009-03-03T04:48:35Z 2009-03-03T04:48:35Z <p>Change the second ColumnDefinition to be Width="*".</p> http://stackoverflow.com/questions/584440/why-are-there-self-duplicating-curly-brackets-in-persisted-wpf-richtextbox 2 Why are there self-duplicating curly brackets in persisted WPF RichTextBox? Donnelle 2009-02-25T01:48:08Z 2009-02-25T04:04:07Z <p>Our tester threw curly brackets at our persisting WPF RichTextBoxes. On save and reopen, there are magically more curly brackets.</p> <p>I've condensed the issue / code down.</p> <pre><code>&lt;Window x:Class="WpfApplication1.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Window1" Height="300" Width="300"&gt; &lt;Grid&gt; &lt;Grid.RowDefinitions&gt; &lt;RowDefinition Height="*"&gt;&lt;/RowDefinition&gt; &lt;RowDefinition Height="Auto"&gt;&lt;/RowDefinition&gt; &lt;RowDefinition Height="*"&gt;&lt;/RowDefinition&gt; &lt;/Grid.RowDefinitions&gt; &lt;RichTextBox x:Name="rtb1" /&gt; &lt;Button Grid.Row="1" Click="Button_Click"&gt;Draw a fish&lt;/Button&gt; &lt;RichTextBox x:Name="rtb2" Grid.Row="2"/&gt; &lt;/Grid&gt; &lt;/Window&gt; </code></pre> <p>Two rich text boxes. On button click, the bottom one gets set to the result of the first one after persist and restore.</p> <pre><code>namespace WpfApplication1 { /// &lt;summary&gt; /// Interaction logic for Window1.xaml /// &lt;/summary&gt; public partial class Window1 : Window { public Window1() { InitializeComponent(); rtb1.Document = new FlowDocument(new Paragraph(new Run("{"))); } public static FlowDocument CreateFlowDocumentFromByteArray(byte[] byteArray) { return (FlowDocument)XamlReader.Load(new MemoryStream(byteArray)); } public static byte[] CreateByteArrayFromFlowDocument(FlowDocument flowDocument) { MemoryStream mStream = new MemoryStream(); XmlWriterSettings settings = new XmlWriterSettings(); settings.Indent = false; settings.OmitXmlDeclaration = true; XamlDesignerSerializationManager dsm = new XamlDesignerSerializationManager(XmlWriter.Create(mStream, settings)); dsm.XamlWriterMode = XamlWriterMode.Value; XamlWriter.Save(flowDocument, dsm); mStream.Close(); return mStream.ToArray(); } private void Button_Click(object sender, RoutedEventArgs e) { rtb2.Document = CreateFlowDocumentFromByteArray(CreateByteArrayFromFlowDocument(rtb1.Document)); } } } </code></pre> <p>Why is this happening? How do we stop it?</p> http://stackoverflow.com/questions/534984/is-my-itemssource-syntax-ok/535041#535041 0 Answer by Donnelle for Is my ItemsSource syntax ok? Donnelle 2009-02-11T01:08:02Z 2009-02-11T01:08:02Z <p>It looks like you're trying to do a cascading combobox.</p> <p><a href="http://stackoverflow.com/questions/202990/is-there-really-no-way-to-follow-up-dataset-parent-relation-in-xaml-binding">http://stackoverflow.com/questions/202990/is-there-really-no-way-to-follow-up-dataset-parent-relation-in-xaml-binding</a> shows how to do a parent-child set up in xaml.</p> http://stackoverflow.com/questions/527364/removing-an-item-from-a-listbox-leaves-the-listbox-with-no-selected-item/527369#527369 1 Answer by Donnelle for Removing an item from a listbox leaves the listbox with no selected item Donnelle 2009-02-09T07:48:30Z 2009-02-09T07:48:30Z <p>We always handle this by setting the selected item in code. If it was the last item in the list, make the selected index the last item. Otherwise we make it the one after the one that was deleted.</p> <pre><code>if (SnippetsList.Items.Count &gt; index) SnippetsList.SelectedIndex = index; else SnippetsList.SelectedIndex = SnippetsList.Items.Count - 1; </code></pre> http://stackoverflow.com/questions/526454/wpf-datagrid-contextmenus/527359#527359 1 Answer by Donnelle for WPF DataGrid ContextMenu(s) Donnelle 2009-02-09T07:38:39Z 2009-02-09T07:38:39Z <p>I haven't played with it at all, so this might be wrong, but you may be able to override the ContextMenuOpening event and create the appropriate menu on the fly.</p> <p><a href="http://stackoverflow.com/questions/210634/add-menu-item-to-default-context-menu">http://stackoverflow.com/questions/210634/add-menu-item-to-default-context-menu</a> might give you a starting point.</p> <p>Good luck.</p> http://stackoverflow.com/questions/501303/can-wpf-and-winforms-be-mixed-within-an-application/501487#501487 0 Answer by Donnelle for Can WPF and WinForms be mixed within an application? Donnelle 2009-02-01T20:10:33Z 2009-02-01T20:10:33Z <p>We hosted significantly complex WPF controls in an existing LOB WinForms app. It can be done, but we did have issues (some no doubt caused by the steep learning curve). These primarily had to do with loss-of-focus events not being fired when expected, and also keyboard navigation issues.</p> http://stackoverflow.com/questions/451730/same-module-multiple-times-as-tabitems/451960#451960 0 Answer by Donnelle for Same module multiple times as TabItems Donnelle 2009-01-16T20:53:16Z 2009-01-16T20:53:16Z <p>We do something similar, though we have the tab items already created (with no content) and show/hide as appropriate. When the tab item is selected, then we load the tab content.</p> <pre><code>private void TabControl_SelectionChanged(object sender, SelectionChangedEventArgs e) { if (e.OriginalSource != sender) return; TabControl tabControl = (TabControl)sender; TabItem tabItem = (TabItem)tabControl.SelectedItem; if (!tabItem.HasContent) AddTabContent(tabItem); // This will cause a refresh once the content is loaded. else Refresh(tabItem); } private void AddTabContent(TabItem tabItem) { IOptimusPage page = tabItem.Tag as IOptimusPage; //This allows lazy loading of controls if (page != null) { if (!tabItem.HasContent) { CustomerEngagementUserControl control = page.GetControl(DataContext as CustomerEngagementUIObject, Services); tabItem.Content = control; } } } </code></pre> <p>The tab item content is specified in the tab item tag, using pages which are responsible for creating the content.</p> <pre><code>&lt;TabItem Header="Personal Background" Style="{StaticResource FirstBreadcrumbTabItem}" x:Name="PersonalBackgroundTab"&gt; &lt;TabItem.Tag&gt; &lt;Pages:FfnaPersonalBackgroundPage /&gt; &lt;/TabItem.Tag&gt; &lt;/TabItem&gt; </code></pre> <p>The page creates the control.</p> <pre><code>class FfnaPersonalBackgroundPage : IOptimusPage { #region IOptimusPage Members public CustomerEngagementUserControl GetControl(CustomerEngagementUIObject dataContext, CustomerEngagementServices services) { CustomerEngagementUserControl control = new FfnaPersonalBackgroundControl(); control.DataContext = dataContext; control.Services = services; return control; } #endregion } </code></pre> <p>You could use a similar technique to create your tab items on the fly.</p> http://stackoverflow.com/questions/444230/can-you-use-the-asp-net-membership-provider-in-a-windows-application/444734#444734 0 Answer by Donnelle for Can you use the asp.net membership provider in a windows application? Donnelle 2009-01-14T21:20:15Z 2009-01-14T21:20:15Z <p>I've used it.</p> http://stackoverflow.com/questions/425811/how-to-center-a-wpf-checkbox-within-a-listboxitem/436871#436871 1 Answer by Donnelle for How to center a WPF CheckBox within a ListBoxItem Donnelle 2009-01-12T20:21:29Z 2009-01-12T20:21:29Z <p>Setting the height on the ListBoxItem style-- rather than the checkbox-- does what I think you're after.</p> http://stackoverflow.com/questions/414642/wpf-enforce-only-one-instance-of-application/414768#414768 1 Answer by Donnelle for WPF Enforce only ONE instance of application Donnelle 2009-01-05T22:41:05Z 2009-01-05T22:41:05Z <p><a href="http://stackoverflow.com/questions/19147/what-is-the-correct-way-to-create-a-single-instance-application">http://stackoverflow.com/questions/19147/what-is-the-correct-way-to-create-a-single-instance-application</a></p> http://stackoverflow.com/questions/350214/wpf-use-a-listbox-in-a-template-that-will-be-the-template-of-another-listbox/351392#351392 2 Answer by Donnelle for WPF: use a ListBox in a template that will be the template of another ListBox Donnelle 2008-12-09T00:08:52Z 2008-12-09T00:08:52Z <p>With Card like the following:</p> <pre><code> public class Card { private string _name; public Card(string name) { _name = name; } public string Name { get { return _name; } set { _name = value; } } } </code></pre> <p>and Book like the following:</p> <pre><code>public class Book { private readonly ObservableCollection&lt;Card&gt; _cards; public Book(ObservableCollection&lt;Card&gt; cards) { _cards = cards; } public ObservableCollection&lt;Card&gt; Cards { get { return _cards; } } } </code></pre> <p>Then create your ListBox in the window:</p> <pre><code>&lt;ListBox ItemsSource="{Binding ElementName=Window, Path=Books}" ItemTemplate="{StaticResource MainListTemplate}" /&gt; </code></pre> <p>and in the resources for the window put:</p> <pre><code>&lt;Window.Resources&gt; &lt;ResourceDictionary&gt; &lt;DataTemplate x:Key="InsideListTemplate"&gt; &lt;TextBlock Text="{Binding Name}" /&gt; &lt;/DataTemplate&gt; &lt;DataTemplate x:Key="MainListTemplate"&gt; &lt;ListBox ItemsSource="{Binding Cards}" ItemTemplate="{StaticResource InsideListTemplate}" /&gt; &lt;/DataTemplate&gt; &lt;/ResourceDictionary&gt; &lt;/Window.Resources&gt; </code></pre> <p>Your ListBox uses the MainListTemplate, which contains a ListBox. The ItemsSource for that ListBox is your list of Cards, and the ItemTemplate is the InsideListTemplate. I have it as a simple TextBlock but you could do whatever you need. </p> http://stackoverflow.com/questions/342411/wpf-listbox-change-individual-items-to-bold/342503#342503 0 Answer by Donnelle for wpf listbox change individual items to bold Donnelle 2008-12-05T00:13:28Z 2008-12-05T00:13:28Z <p>You can do it more simply than that if you use a converter (IntToFontWeightConverter, for example).</p> <p>Set up an item template:</p> <pre><code> &lt;DataTemplate x:Key="BoldTemplate"&gt; &lt;TextBlock FontWeight="{Binding Path=Position, Converter={StaticResource IntToFontWeightConverter}}" Text="{Binding Path=Name}" /&gt; &lt;/DataTemplate&gt; </code></pre> <p>where Name is what you want to display, and Position is your property that you are basing the bold / normal on.</p> <p>Create your converter (depending on the type of the property that you base the bold on).</p> <pre><code>class IntToFontWeightConverter :IValueConverter { #region IValueConverter Members public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) { if ((int)value == 1) { return FontWeights.Bold; } return FontWeights.Normal; } public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) { throw new NotImplementedException(); } #endregion } </code></pre> http://stackoverflow.com/questions/335129/cancelling-a-wpf-textbox-changed-event/335436#335436 3 Answer by Donnelle for Cancelling a WPF TextBox Changed Event Donnelle 2008-12-02T21:01:10Z 2008-12-02T21:01:10Z <p>Read up about WPF validation.</p> <p><a href="http://stackoverflow.com/questions/63646/wpf-data-binding-and-validation-rules-best-practices">http://stackoverflow.com/questions/63646/wpf-data-binding-and-validation-rules-best-practices</a> has some good links.</p> http://stackoverflow.com/questions/332859/detect-dragndrop-file-in-wpf/332887#332887 0 Answer by Donnelle for Detect Drag'n'Drop file in WPF? Donnelle 2008-12-02T02:43:48Z 2008-12-02T02:43:48Z <p><a href="http://stackoverflow.com/questions/316900/dragndrop-one-or-more-mails-from-outlook-to-c-wpf-application">http://stackoverflow.com/questions/316900/dragndrop-one-or-more-mails-from-outlook-to-c-wpf-application</a></p> http://stackoverflow.com/questions/319489/do-you-have-examples-of-comments-or-todos-that-were-difficult-to-interpret/332546#332546 0 Answer by Donnelle for Do you have examples of comments or todos that were difficult to interpret? Donnelle 2008-12-01T23:04:38Z 2008-12-01T23:04:38Z <pre> //TODO there must be a better way to do this </pre> <pre> // TODO: This is UGGGLLY </pre> <p>And of course, the succinct</p> <pre> // TODO </pre> http://stackoverflow.com/questions/321327/how-do-i-get-rid-of-the-red-rectangle-when-my-wpf-binding-validation-has-failed-a/321987#321987 7 Answer by Donnelle for How do I get rid of the red rectangle when my wpf binding validation has failed and the containing panel is no longer visible? Donnelle 2008-11-26T20:12:43Z 2008-11-26T20:12:43Z <p>If I remember correctly, this is a known issue. We re-templated textbox to include the following:</p> <p><code></p> <pre><code>&lt;Setter Property="Validation.ErrorTemplate"&gt; &lt;Setter.Value&gt; &lt;ControlTemplate&gt; &lt;ControlTemplate.Resources&gt; &lt;BooleanToVisibilityConverter x:Key="converter" /&gt; &lt;/ControlTemplate.Resources&gt; &lt;DockPanel LastChildFill="True"&gt; &lt;Border BorderThickness="1" BorderBrush="Red" Visibility="{Binding ElementName=placeholder, Mode=OneWay, Path=AdornedElement.IsVisible, Converter={StaticResource converter}}" &gt; &lt;AdornedElementPlaceholder x:Name="placeholder" /&gt; &lt;/Border&gt; &lt;/DockPanel&gt; &lt;/ControlTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; </code></pre> <p></code></p> http://stackoverflow.com/questions/298524/wpf-uc-in-winforms-occasionally-has-an-odd-border-to-the-left-visually-corrupte/300775#300775 0 Answer by Donnelle for WPF UC in Winforms occasionally has an odd border to the left / visually corrupted Donnelle 2008-11-19T01:43:18Z 2008-11-19T01:43:18Z <p>Are they in a grid? It could be related to <a href="http://stackoverflow.com/questions/267364/wpf-eliminate-transparency-between-grid-cells#267954">http://stackoverflow.com/questions/267364/wpf-eliminate-transparency-between-grid-cells#267954</a> which we never really resolved.</p> http://stackoverflow.com/questions/294822/currency-formatting-on-combobox-items 2 Currency formatting on ComboBox items Donnelle 2008-11-17T03:33:20Z 2008-11-17T04:51:18Z <p>I have a ComboBox bound to an ObservableCollection of decimals. What is the correct way to apply our currency converter to the items?</p> <p>Edit:</p> <p>a) I have an existing currency converter that I must use b) .NET 3.0</p> <p>Do I need to template the items?</p> http://stackoverflow.com/questions/288954/how-do-i-keep-aspect-ratio-on-scalable-scrollable-content-in-wpf/289425#289425 0 Answer by Donnelle for How do I keep aspect ratio on scalable, scrollable content in WPF? Donnelle 2008-11-14T07:16:38Z 2008-11-14T07:16:38Z <p>Will setting SizeToContent="WidthAndHeight" on the window give you the behaviour you're after?</p> http://stackoverflow.com/questions/267364/wpf-eliminate-transparency-between-grid-cells/267954#267954 1 Answer by Donnelle for WPF: Eliminate transparency between grid cells. Donnelle 2008-11-06T08:36:01Z 2008-11-06T08:36:01Z <p>This produces the same issue, but it may not be the same exact cause. Still, if we can resolve this it might give a hint for your issue.</p> <p><code></p> <p></p> <pre><code>&lt;Grid Background="Transparent"&gt; &lt;Grid.ColumnDefinitions&gt; &lt;ColumnDefinition Width="*" /&gt; &lt;ColumnDefinition Width="*" /&gt; &lt;ColumnDefinition Width="*" /&gt; &lt;/Grid.ColumnDefinitions&gt; &lt;Grid.RowDefinitions&gt; &lt;RowDefinition Height="3*" /&gt; &lt;RowDefinition Height="3*" /&gt; &lt;RowDefinition Height="3*" /&gt; &lt;RowDefinition Height="*" /&gt; &lt;/Grid.RowDefinitions&gt; &lt;Label Grid.Column="0" Grid.Row="0" Background="PaleGoldenrod" /&gt; &lt;Label Grid.Column="1" Grid.Row="0" Background="White" /&gt; &lt;Label Grid.Column="2" Grid.Row="0" Background="PaleGoldenrod" /&gt; &lt;Label Grid.Column="0" Grid.Row="1" Background="White" /&gt; &lt;!-- This is in the significant cell --&gt; &lt;Label Grid.Column="1" Grid.Row="1" x:Name="SizeChangeLabel" Background="PaleGoldenrod"&gt; Watch this cell &lt;/Label&gt; &lt;Label Grid.Column="2" Grid.Row="1" Background="White" /&gt; &lt;Label Grid.Column="0" Grid.Row="2" Background="PaleGoldenrod" /&gt; &lt;Label Grid.Column="1" Grid.Row="2" Background="White" /&gt; &lt;Label Grid.Column="2" Grid.Row="2" Background="PaleGoldenrod" /&gt; &lt;Button x:Name="ReduceContentSize" Grid.Row="3" Grid.Column="0" Click="ReduceContentSize_Click"&gt;Reduce&lt;/Button&gt; &lt;Button x:Name="IncreaseContentSize" Grid.Row="3" Grid.Column="1" Click="IncreaseContentSize_Click"&gt;Increase&lt;/Button&gt; &lt;TextBlock Grid.Row="3" Grid.Column="2" Foreground="White"&gt; The window is black &lt;/TextBlock&gt; &lt;/Grid&gt; </code></pre> <p> </code></p> <p>The click events adjust the MinWidth of the label in the centre cell. When you bump it up, you get lines which I assume are the same as your issue.</p> <p><code></p> <pre><code>private const double _sizeChangeAmount = 150; private void IncreaseContentSize_Click(object sender, RoutedEventArgs e) { SizeChangeLabel.MinWidth = SizeChangeLabel.ActualWidth + _sizeChangeAmount; SizeChangeLabel.MinHeight = SizeChangeLabel.ActualHeight + _sizeChangeAmount; } private void ReduceContentSize_Click(object sender, RoutedEventArgs e) { if (SizeChangeLabel.MinWidth &gt; 150) SizeChangeLabel.MinWidth = SizeChangeLabel.ActualWidth - _sizeChangeAmount; if (SizeChangeLabel.MinHeight &gt; 150) SizeChangeLabel.MinHeight = SizeChangeLabel.ActualHeight - _sizeChangeAmount; } </code></pre> <p></code></p> <p>Is this a reasonable approximation that can help lead to a solution?</p> http://stackoverflow.com/questions/260439/wpf-bind-an-element-to-two-sources/260487#260487 2 Answer by Donnelle for WPF: Bind an element to two sources Donnelle 2008-11-04T00:55:32Z 2008-11-04T03:18:42Z <p>Create a converter that implements IMultiValueConverter. It might look something like this:</p> <pre><code> class AverageConverter : IMultiValueConverter { #region IMultiValueConverter Members public object Convert(object[] values, Type targetType, object parameter, System.Globalization.CultureInfo culture) { int total = 0; int number = 0; foreach (object o in values) { int i; bool parsed = int.TryParse(o.ToString(), out i); if (parsed) { total += i; number++; } } if (number == 0) return 0; return (total/number).ToString(); } public object[] ConvertBack(object value, Type[] targetTypes, object parameter, System.Globalization.CultureInfo culture) { throw new NotImplementedException(); } #endregion } </code></pre> A multivalue converter receives an object array, one for each of the bindings. You can process these however you need, depending on whether you're intending it for double or int or whatever. If the two textboxes are databound, you can use the same bindings in the multibinding for your textblock (remembering to notify when the property changes so that your average is updated), or you can get the text value by referring to the textboxes by ElementName. <pre> &lt;TextBox Text="{Binding Value1}" x:Name="TextBox1" /> &lt;TextBox Text="{Binding Value2}" x:Name="TextBox2" /> &lt;TextBlock> &lt;TextBlock.Text> &lt;MultiBinding Converter="{StaticResource AverageConverter}"> &lt;Binding ElementName="TextBox1" Path="Text" /> &lt;Binding ElementName="TextBox2" Path="Text" /> &lt;!-- OR --> &lt;!-- &lt;Binding Path="Value1" /> --> &lt;!-- &lt;Binding Path="Value2" /> --> &lt;/MultiBinding> &lt;/TextBlock.Text> &lt;/TextBlock> </pre> http://stackoverflow.com/questions/253036/a-better-way-of-forcing-data-bound-wpf-listbox-to-update/253342#253342 3 Answer by Donnelle for A better way of forcing data bound WPF ListBox to update? Donnelle 2008-10-31T12:36:01Z 2008-10-31T12:36:01Z <p>What is it an ObservableCollection of? Does that class implement INotifyPropertyChanged, and do you trigger PropertyChanged when your position value is updated?</p> http://stackoverflow.com/questions/248362/how-do-i-build-a-datatemplate-in-c-code/248638#248638 3 Answer by Donnelle for How do I build a DataTemplate in c# code? Donnelle 2008-10-29T22:19:15Z 2008-10-29T22:19:15Z <p>Assuming that you've already set up the ItemsSource etc for drpCreditCardNumberWpf...</p> <pre><code> //create the data template DataTemplate cardLayout = new DataTemplate(); cardLayout.DataType = typeof(CreditCardPayment); //set up the stack panel FrameworkElementFactory spFactory = new FrameworkElementFactory(typeof(StackPanel)); spFactory.Name = "myComboFactory"; spFactory.SetValue(StackPanel.OrientationProperty, Orientation.Horizontal); //set up the card holder textblock FrameworkElementFactory cardHolder = new FrameworkElementFactory(typeof(TextBlock)); cardHolder.SetBinding(TextBlock.TextProperty, new Binding("BillToName")); cardHolder.SetValue(TextBlock.ToolTipProperty, "Card Holder Name"); spFactory.AppendChild(cardHolder); //set up the card number textblock FrameworkElementFactory cardNumber = new FrameworkElementFactory(typeof(TextBlock)); cardNumber.SetBinding(TextBlock.TextProperty, new Binding("SafeNumber")); cardNumber.SetValue(TextBlock.ToolTipProperty, "Credit Card Number"); spFactory.AppendChild(cardNumber); //set up the notes textblock FrameworkElementFactory notes = new FrameworkElementFactory(typeof(TextBlock)); notes.SetBinding(TextBlock.TextProperty, new Binding("Notes")); notes.SetValue(TextBlock.ToolTipProperty, "Notes"); spFactory.AppendChild(notes); //set the visual tree of the data template cardLayout.VisualTree = spFactory; //set the item template to be our shiny new data template drpCreditCardNumberWpf.ItemTemplate = cardLayout; </code></pre> <p>You can use the same way I have set the ToolTip on the TextBlocks to set other properties such as margins.</p> <p>Hope that helps!</p> http://stackoverflow.com/questions/242356/how-to-automatically-extend-the-tab-control-as-items-are-added-to-it-without-crea/244769#244769 0 Answer by Donnelle for How to automatically extend the tab control as items are added to it without creating a scroll bar? Donnelle 2008-10-28T20:37:54Z 2008-10-28T20:37:54Z <pre><code> &lt;ScrollViewer> &lt;TabControl TabStripPlacement="Left" x:Name="Tab" > &lt;/TabControl> &lt;/ScrollViewer> </code></pre> <p>gets you the scrollbar which will be enabled when needed.</p> http://stackoverflow.com/questions/222756/scaling-wpf-content-before-rendering-to-bitmap/224492#224492 1 Answer by Donnelle for Scaling WPF content before rendering to bitmap Donnelle 2008-10-22T04:29:15Z 2008-10-22T04:29:15Z <p>This should be enough to get you started:</p> <pre><code> private void ExportCanvas(int width, int height) { string path = @"c:\temp\Test.tif"; FileStream fs = new FileStream(path, FileMode.Create); RenderTargetBitmap renderBitmap = new RenderTargetBitmap(width, height, 1/300, 1/300, PixelFormats.Pbgra32); DrawingVisual visual = new DrawingVisual(); using (DrawingContext context = visual.RenderOpen()) { VisualBrush brush = new VisualBrush(MyCanvas); context.DrawRectangle(brush, null, new Rect(new Point(), new Size(MyCanvas.Width, MyCanvas.Height))); } visual.Transform = new ScaleTransform(width / MyCanvas.ActualWidth, height / MyCanvas.ActualHeight); renderBitmap.Render(visual); BitmapEncoder encoder = new TiffBitmapEncoder(); encoder.Frames.Add(BitmapFrame.Create(renderBitmap)); encoder.Save(fs); fs.Close(); } </code></pre> http://stackoverflow.com/questions/238180/what-is-the-best-ui-youve-ever-used Comment by Donnelle on What is the best UI you've ever used? Donnelle 2009-08-06T02:36:48Z 2009-08-06T02:36:48Z &quot;The only intuitive user interface is the nipple. Everything else is learned.&quot; You've obviously never had a baby who had difficulty breastfeeding! http://stackoverflow.com/questions/3247/identifying-passionate-programmers/9354#9354 Comment by Donnelle on Identifying passionate programmers Donnelle 2009-08-04T00:08:46Z 2009-08-04T00:08:46Z Wish I could upvote that more. http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/424245#424245 Comment by Donnelle on What's your favorite "programmer ignorance" pet peeve? Donnelle 2009-08-02T22:22:59Z 2009-08-02T22:22:59Z Would upvote this more if I could! http://stackoverflow.com/questions/1083782/missingmethodexception-but-i-dont-understand-why/1083793#1083793 Comment by Donnelle on MissingMethodException but I don't understand why Donnelle 2009-07-05T10:21:58Z 2009-07-05T10:21:58Z Nope, same exception. http://stackoverflow.com/questions/1073420/assembly-getexportedtypes-doesnt-include-wcf-service/1073449#1073449 Comment by Donnelle on assembly.GetExportedTypes() doesn't include WCF service Donnelle 2009-07-02T09:52:27Z 2009-07-02T09:52:27Z Right. Currently I can't create an instance of it because I get a missing endpoint/config type error, which makes sense but is annoying. Thanks-- that gives me something to follow up with. http://stackoverflow.com/questions/214452/what-surprised-you-the-most-about-the-software-industry/258712#258712 Comment by Donnelle on What surprised you the most about the software industry? Donnelle 2009-04-23T03:21:21Z 2009-04-23T03:21:21Z I'm jealous of 50:50! It was 10% at my uni. It's one reason why I spent a year as a teaching fellow. http://stackoverflow.com/questions/660441/previewleftmousebuttondown-listeners-report-different-mousebuttoneventargs-source/660769#660769 Comment by Donnelle on PreviewLeftMouseButtonDown Listeners Report Different MouseButtonEventArgs.Source For Same Event Donnelle 2009-03-19T01:37:39Z 2009-03-19T01:37:39Z I have to do short answers or my work network times out instantly. http://stackoverflow.com/questions/584440/why-are-there-self-duplicating-curly-brackets-in-persisted-wpf-richtextbox/584678#584678 Comment by Donnelle on Why are there self-duplicating curly brackets in persisted WPF RichTextBox? Donnelle 2009-03-02T21:46:00Z 2009-03-02T21:46:00Z To be more precise, this occurs only when the curly brackets are at the start of a paragraph. We have a workaround (since we were already walking the tree applying styles) but it's just more overhead, and we are pretty frustrated that this happened at all. http://stackoverflow.com/questions/584440/why-are-there-self-duplicating-curly-brackets-in-persisted-wpf-richtextbox/584678#584678 Comment by Donnelle on Why are there self-duplicating curly brackets in persisted WPF RichTextBox? Donnelle 2009-02-25T04:56:51Z 2009-02-25T04:56:51Z It does only do it when it's at the start. When you write it out, it does have {}{ http://stackoverflow.com/questions/472796/how-can-i-get-a-vertical-scrollbar-in-my-listbox/472856#472856 Comment by Donnelle on How can I get a vertical scrollbar in my ListBox? Donnelle 2009-01-26T23:11:21Z 2009-01-26T23:11:21Z Because it's in a StackPanel, it's merrily being given all the space it needs, so it doesn't think it <i>needs</i> a scrollbar. http://stackoverflow.com/questions/422699/completed-user-stories-discard-archive/422706#422706 Comment by Donnelle on Completed user stories - discard? archive? Donnelle 2009-01-13T00:17:16Z 2009-01-13T00:17:16Z I'd say this is realistic in the scenario where you're introducing agile to a madly-waterfall-based company and to help resolve any teething problems. http://stackoverflow.com/questions/425811/how-to-center-a-wpf-checkbox-within-a-listboxitem Comment by Donnelle on How to center a WPF CheckBox within a ListBoxItem Donnelle 2009-01-12T20:06:19Z 2009-01-12T20:06:19Z What do editable and nonEditable look like? http://stackoverflow.com/questions/262657/the-coolest-server-names/262686#262686 Comment by Donnelle on The Coolest Server Names Donnelle 2009-01-07T02:09:18Z 2009-01-07T02:09:18Z Bridget, Beatrice, Dorothea, Colleen http://stackoverflow.com/questions/353678/hierarchical-data-binding-with-nested-listviews-in-wpf Comment by Donnelle on Hierarchical data binding with nested ListViews in WPF Donnelle 2008-12-10T22:15:37Z 2008-12-10T22:15:37Z Just to confirm, you get the History list showing correctly and it's only the detail which doesn't show? Can you show me how you're declaring your datasource? http://stackoverflow.com/questions/353678/hierarchical-data-binding-with-nested-listviews-in-wpf Comment by Donnelle on Hierarchical data binding with nested ListViews in WPF Donnelle 2008-12-09T23:44:43Z 2008-12-09T23:44:43Z It works for me with the same data setup as <a href="http://stackoverflow.com/questions/350214/wpf-use-a-listbox-in-a-template-that-will-be-the-template-of-another-listbox" rel="nofollow" title="wpf use a listbox in a template that will be the template of another listbox">stackoverflow.com/questions/350214/&hellip;</a>. What data set up and sources are you using?