User Donnelle - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T22:23:25Zhttp://stackoverflow.com/feeds/user/28074http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1083782/missingmethodexception-but-i-dont-understand-why1MissingMethodException but I don't understand whyDonnelle2009-07-05T10:00:33Z2009-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-service0assembly.GetExportedTypes() doesn't include WCF service Donnelle2009-07-02T09:33:06Z2009-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<ContractDescription> 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#6612247Answer by Donnelle for How to automatically select all text on focus in WPF TextBox?Donnelle2009-03-19T06:18:35Z2009-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 && !(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#6607690Answer by Donnelle for PreviewLeftMouseButtonDown Listeners Report Different MouseButtonEventArgs.Source For Same EventDonnelle2009-03-19T01:37:17Z2009-03-19T01:37:17Z<p>Try e.OriginalSource.</p>
http://stackoverflow.com/questions/656552/is-it-possible-to-refresh-wpf-data-bindings/656738#6567381Answer by Donnelle for Is it possible to 'refresh' WPF data bindingsDonnelle2009-03-18T02:10:39Z2009-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#6051470Answer by Donnelle for WPF: Allow TextBox to be resized but not to grow on user inputDonnelle2009-03-03T04:48:35Z2009-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-richtextbox2Why are there self-duplicating curly brackets in persisted WPF RichTextBox?Donnelle2009-02-25T01:48:08Z2009-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><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">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="*"></RowDefinition>
</Grid.RowDefinitions>
<RichTextBox x:Name="rtb1" />
<Button Grid.Row="1" Click="Button_Click">Draw a fish</Button>
<RichTextBox x:Name="rtb2" Grid.Row="2"/>
</Grid>
</Window>
</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
{
/// <summary>
/// Interaction logic for Window1.xaml
/// </summary>
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#5350410Answer by Donnelle for Is my ItemsSource syntax ok?Donnelle2009-02-11T01:08:02Z2009-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#5273691Answer by Donnelle for Removing an item from a listbox leaves the listbox with no selected itemDonnelle2009-02-09T07:48:30Z2009-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 > index)
SnippetsList.SelectedIndex = index;
else
SnippetsList.SelectedIndex = SnippetsList.Items.Count - 1;
</code></pre>
http://stackoverflow.com/questions/526454/wpf-datagrid-contextmenus/527359#5273591Answer by Donnelle for WPF DataGrid ContextMenu(s)Donnelle2009-02-09T07:38:39Z2009-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#5014870Answer by Donnelle for Can WPF and WinForms be mixed within an application?Donnelle2009-02-01T20:10:33Z2009-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#4519600Answer by Donnelle for Same module multiple times as TabItemsDonnelle2009-01-16T20:53:16Z2009-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><TabItem
Header="Personal Background"
Style="{StaticResource FirstBreadcrumbTabItem}"
x:Name="PersonalBackgroundTab">
<TabItem.Tag>
<Pages:FfnaPersonalBackgroundPage />
</TabItem.Tag>
</TabItem>
</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#4447340Answer by Donnelle for Can you use the asp.net membership provider in a windows application?Donnelle2009-01-14T21:20:15Z2009-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#4368711Answer by Donnelle for How to center a WPF CheckBox within a ListBoxItemDonnelle2009-01-12T20:21:29Z2009-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#4147681Answer by Donnelle for WPF Enforce only ONE instance of applicationDonnelle2009-01-05T22:41:05Z2009-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#3513922Answer by Donnelle for WPF: use a ListBox in a template that will be the template of another ListBoxDonnelle2008-12-09T00:08:52Z2008-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<Card> _cards;
public Book(ObservableCollection<Card> cards)
{
_cards = cards;
}
public ObservableCollection<Card> Cards
{
get { return _cards; }
}
}
</code></pre>
<p>Then create your ListBox in the window:</p>
<pre><code><ListBox
ItemsSource="{Binding ElementName=Window, Path=Books}"
ItemTemplate="{StaticResource MainListTemplate}" />
</code></pre>
<p>and in the resources for the window put:</p>
<pre><code><Window.Resources>
<ResourceDictionary>
<DataTemplate
x:Key="InsideListTemplate">
<TextBlock
Text="{Binding Name}" />
</DataTemplate>
<DataTemplate
x:Key="MainListTemplate">
<ListBox
ItemsSource="{Binding Cards}"
ItemTemplate="{StaticResource InsideListTemplate}" />
</DataTemplate>
</ResourceDictionary>
</Window.Resources>
</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#3425030Answer by Donnelle for wpf listbox change individual items to boldDonnelle2008-12-05T00:13:28Z2008-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> <DataTemplate x:Key="BoldTemplate">
<TextBlock
FontWeight="{Binding Path=Position, Converter={StaticResource IntToFontWeightConverter}}"
Text="{Binding Path=Name}"
/>
</DataTemplate>
</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#3354363Answer by Donnelle for Cancelling a WPF TextBox Changed EventDonnelle2008-12-02T21:01:10Z2008-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#3328870Answer by Donnelle for Detect Drag'n'Drop file in WPF?Donnelle2008-12-02T02:43:48Z2008-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#3325460Answer by Donnelle for Do you have examples of comments or todos that were difficult to interpret? Donnelle2008-12-01T23:04:38Z2008-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#3219877Answer 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?Donnelle2008-11-26T20:12:43Z2008-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><Setter Property="Validation.ErrorTemplate">
<Setter.Value>
<ControlTemplate>
<ControlTemplate.Resources>
<BooleanToVisibilityConverter x:Key="converter" />
</ControlTemplate.Resources>
<DockPanel LastChildFill="True">
<Border
BorderThickness="1"
BorderBrush="Red"
Visibility="{Binding ElementName=placeholder, Mode=OneWay, Path=AdornedElement.IsVisible, Converter={StaticResource converter}}"
>
<AdornedElementPlaceholder x:Name="placeholder" />
</Border>
</DockPanel>
</ControlTemplate>
</Setter.Value>
</Setter>
</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#3007750Answer by Donnelle for WPF UC in Winforms occasionally has an odd border to the left / visually corruptedDonnelle2008-11-19T01:43:18Z2008-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-items2Currency formatting on ComboBox itemsDonnelle2008-11-17T03:33:20Z2008-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#2894250Answer by Donnelle for How do I keep aspect ratio on scalable, scrollable content in WPF?Donnelle2008-11-14T07:16:38Z2008-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#2679541Answer by Donnelle for WPF: Eliminate transparency between grid cells.Donnelle2008-11-06T08:36:01Z2008-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><Grid Background="Transparent">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="3*" />
<RowDefinition Height="3*" />
<RowDefinition Height="3*" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Label Grid.Column="0" Grid.Row="0" Background="PaleGoldenrod" />
<Label Grid.Column="1" Grid.Row="0" Background="White" />
<Label Grid.Column="2" Grid.Row="0" Background="PaleGoldenrod" />
<Label Grid.Column="0" Grid.Row="1" Background="White" />
<!-- This is in the significant cell -->
<Label Grid.Column="1" Grid.Row="1" x:Name="SizeChangeLabel" Background="PaleGoldenrod">
Watch this cell
</Label>
<Label Grid.Column="2" Grid.Row="1" Background="White" />
<Label Grid.Column="0" Grid.Row="2" Background="PaleGoldenrod" />
<Label Grid.Column="1" Grid.Row="2" Background="White" />
<Label Grid.Column="2" Grid.Row="2" Background="PaleGoldenrod" />
<Button x:Name="ReduceContentSize" Grid.Row="3" Grid.Column="0" Click="ReduceContentSize_Click">Reduce</Button>
<Button x:Name="IncreaseContentSize" Grid.Row="3" Grid.Column="1" Click="IncreaseContentSize_Click">Increase</Button>
<TextBlock Grid.Row="3" Grid.Column="2" Foreground="White">
The window is black
</TextBlock>
</Grid>
</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 > 150)
SizeChangeLabel.MinWidth = SizeChangeLabel.ActualWidth - _sizeChangeAmount;
if (SizeChangeLabel.MinHeight > 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#2604872Answer by Donnelle for WPF: Bind an element to two sourcesDonnelle2008-11-04T00:55:32Z2008-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>
<TextBox Text="{Binding Value1}" x:Name="TextBox1" />
<TextBox Text="{Binding Value2}" x:Name="TextBox2" />
<TextBlock>
<TextBlock.Text>
<MultiBinding Converter="{StaticResource AverageConverter}">
<Binding ElementName="TextBox1" Path="Text" />
<Binding ElementName="TextBox2" Path="Text" />
<!-- OR -->
<!-- <Binding Path="Value1" /> -->
<!-- <Binding Path="Value2" /> -->
</MultiBinding>
</TextBlock.Text>
</TextBlock>
</pre>
http://stackoverflow.com/questions/253036/a-better-way-of-forcing-data-bound-wpf-listbox-to-update/253342#2533423Answer by Donnelle for A better way of forcing data bound WPF ListBox to update?Donnelle2008-10-31T12:36:01Z2008-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#2486383Answer by Donnelle for How do I build a DataTemplate in c# code?Donnelle2008-10-29T22:19:15Z2008-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#2447690Answer by Donnelle for How to automatically extend the tab control as items are added to it without creating a scroll bar?Donnelle2008-10-28T20:37:54Z2008-10-28T20:37:54Z<pre><code>
<ScrollViewer>
<TabControl
TabStripPlacement="Left"
x:Name="Tab"
>
</TabControl>
</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#2244921Answer by Donnelle for Scaling WPF content before rendering to bitmapDonnelle2008-10-22T04:29:15Z2008-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-usedComment by Donnelle on What is the best UI you've ever used?Donnelle2009-08-06T02:36:48Z2009-08-06T02:36:48Z"The only intuitive user interface is the nipple. Everything else is learned."
You've obviously never had a baby who had difficulty breastfeeding!http://stackoverflow.com/questions/3247/identifying-passionate-programmers/9354#9354Comment by Donnelle on Identifying passionate programmersDonnelle2009-08-04T00:08:46Z2009-08-04T00:08:46ZWish I could upvote that more.http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/424245#424245Comment by Donnelle on What's your favorite "programmer ignorance" pet peeve?Donnelle2009-08-02T22:22:59Z2009-08-02T22:22:59ZWould upvote this more if I could!http://stackoverflow.com/questions/1083782/missingmethodexception-but-i-dont-understand-why/1083793#1083793Comment by Donnelle on MissingMethodException but I don't understand whyDonnelle2009-07-05T10:21:58Z2009-07-05T10:21:58ZNope, same exception.http://stackoverflow.com/questions/1073420/assembly-getexportedtypes-doesnt-include-wcf-service/1073449#1073449Comment by Donnelle on assembly.GetExportedTypes() doesn't include WCF service Donnelle2009-07-02T09:52:27Z2009-07-02T09:52:27ZRight. 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#258712Comment by Donnelle on What surprised you the most about the software industry?Donnelle2009-04-23T03:21:21Z2009-04-23T03:21:21ZI'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#660769Comment by Donnelle on PreviewLeftMouseButtonDown Listeners Report Different MouseButtonEventArgs.Source For Same EventDonnelle2009-03-19T01:37:39Z2009-03-19T01:37:39ZI 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#584678Comment by Donnelle on Why are there self-duplicating curly brackets in persisted WPF RichTextBox?Donnelle2009-03-02T21:46:00Z2009-03-02T21:46:00ZTo 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#584678Comment by Donnelle on Why are there self-duplicating curly brackets in persisted WPF RichTextBox?Donnelle2009-02-25T04:56:51Z2009-02-25T04:56:51ZIt 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#472856Comment by Donnelle on How can I get a vertical scrollbar in my ListBox?Donnelle2009-01-26T23:11:21Z2009-01-26T23:11:21ZBecause 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#422706Comment by Donnelle on Completed user stories - discard? archive?Donnelle2009-01-13T00:17:16Z2009-01-13T00:17:16ZI'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-listboxitemComment by Donnelle on How to center a WPF CheckBox within a ListBoxItemDonnelle2009-01-12T20:06:19Z2009-01-12T20:06:19ZWhat do editable and nonEditable look like?http://stackoverflow.com/questions/262657/the-coolest-server-names/262686#262686Comment by Donnelle on The Coolest Server NamesDonnelle2009-01-07T02:09:18Z2009-01-07T02:09:18ZBridget, Beatrice, Dorothea, Colleenhttp://stackoverflow.com/questions/353678/hierarchical-data-binding-with-nested-listviews-in-wpfComment by Donnelle on Hierarchical data binding with nested ListViews in WPFDonnelle2008-12-10T22:15:37Z2008-12-10T22:15:37ZJust 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-wpfComment by Donnelle on Hierarchical data binding with nested ListViews in WPFDonnelle2008-12-09T23:44:43Z2008-12-09T23:44:43ZIt 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/…</a>. What data set up and sources are you using?