User Andy - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T02:56:35Zhttp://stackoverflow.com/feeds/user/3857http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1723469/interface-inheritance-in-c/1723493#17234932Answer by Andy for Interface Inheritance in C++Andy2009-11-12T16:26:11Z2009-11-12T16:26:11Z<p>This problem exists because C++ doesn't really have interfaces, only pure virtual classes with multiple inheritance. The compiler doesn't know where to find the implementation of <code>methodA()</code> because it is implemented by a different base class of <code>ClassAB</code>. You can get around this by implementing <code>methodA()</code> in <code>ClassAB()</code> to call the base implementation:</p>
<pre><code>class ClassAB : public ClassA, public InterfaceB
{
void methodA()
{
ClassA::methodA();
}
void methodB();
}
</code></pre>
http://stackoverflow.com/questions/1716415/should-i-alloc-an-nsmutablearray-instance-variable/1716458#17164585Answer by Andy for Should I alloc an NSMUtableArray instance variable?Andy2009-11-11T16:39:05Z2009-11-11T16:39:05Z<p>Any instance variables that are objects are actually just pointers that are initialized to nil (0). That is why the item isn't retained and added to the array, since messages to nil objects return nil/0.</p>
<p>You need to alloc and init the object in your class's init, and then release it in the dealloc.</p>
http://stackoverflow.com/questions/1711999/background-worker-updates-a-progressbar-partially-or-not-all-then-bombs-out/1712060#17120601Answer by Andy for Background Worker Updates a ProgressBar partially or not all Then Bombs Out !!!Andy2009-11-10T23:44:59Z2009-11-11T13:12:22Z<p>The code you posted above looks fine (although you shouldn't need to use <code>BeginInvoke()</code> in the <code>ProgressChanged</code> event hander). The reason that it looks like <code>Application.Run()</code> is throwing the exception is because you don't have any other try/catches in the call stack.</p>
<p>The exception you list isn't the actual problem that is occurring, but just a wrapper. If you look at the <code>InnerException</code> of the thrown exception, it should give you more information about what is going on.</p>
<p>If you need more help, you should probably post the details of the inner exception, and we can help more.</p>
<p>Based on the inner exception, it looks like the value that you're setting of the progress bar is not between the minimum and maximum values of the progress bar. Have you set the minimum and maximum, and verified that all values set into the progress bar are between them?</p>
http://stackoverflow.com/questions/1703662/dllgetversion-not-giving-expected-results-under-windows-7/1703735#17037350Answer by Andy for DllGetVersion not giving expected results under Windows 7Andy2009-11-09T20:53:30Z2009-11-09T20:53:30Z<p>Looking at <a href="http://msdn.microsoft.com/en-us/library/bb776404%28VS.85%29.aspx" rel="nofollow">MSDN</a> for <code>DllGetVersion()</code>, it sounds like this might not be the best way to do what you're trying to do. Since this isn't an API function, it's possible that this changed in Win7 somehow and can't be called in the same way.</p>
<p>If you're using WinForms, you could try calling <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.application.renderwithvisualstyles.aspx" rel="nofollow">Application.RenderWithVisualStyles</a> - that sounds like it's doing what you're trying to do above.</p>
http://stackoverflow.com/questions/1698687/is-vs2008-written-in-c-net/1699022#16990220Answer by Andy for Is VS2008 Written in c#/.netAndy2009-11-09T03:56:02Z2009-11-09T03:56:02Z<p>I believe that most of Visual Studio is a C++ COM app. I don't think it uses MFC, but I'm not positive. All of the C#/VB specific UI is written in .NET, though.</p>
<p>Visual Studio 2010 is getting a massive rewrite and will be a WPF application.</p>
http://stackoverflow.com/questions/1540686/objective-c-primitive-arrays/1540695#15406950Answer by Andy for objective-c primitive arraysAndy2009-10-08T21:49:33Z2009-10-08T21:49:33Z<p>Other than managing a C-style array yourself (which is definitely not the best option, IMO), your only option is to use <code>NSArray</code>/<code>NSMutableArray</code>, and store the numbers using <code>NSNumber</code>. It's slightly more annoying to get the value out than with the actual numeric type, but it does free you from managing the array's memory yourself.</p>
http://stackoverflow.com/questions/1537741/advanced-combobox-binding-from-code/1538020#15380200Answer by Andy for Advanced combobox binding from codeAndy2009-10-08T14:04:40Z2009-10-08T14:04:40Z<p>What exactly doesn't work? Is the corresponding item not selected in the <code>ComboBox</code>, or is <code>P</code> not updated when selection changes? Is the value of <code>P</code> in the list that the <code>ComboBox</code> is bound to?</p>
<p>You might also try verifying that the type of <code>obj</code> implements <code>INotifyPropertyChanged</code>, or is a <code>DependencyObject</code> with <code>P</code> being a <code>DependencyProperty</code>.</p>
http://stackoverflow.com/questions/1500669/can-somone-give-example-of-dependency-property-in-viewmodel/1501109#15011090Answer by Andy for Can somone give example of Dependency Property in ViewModelAndy2009-09-30T23:03:25Z2009-09-30T23:03:25Z<p>In order to define a <code>DependencyProperty</code> in your view model, your view model class must derive from <code>DependencyObject</code>. Otherwise the <code>DependencyProperty</code> won't work right.</p>
<p>Do you really need the property to be a <code>DependencyPropety</code>? Have you looked into implementing <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.inotifypropertychanged.aspx" rel="nofollow">INotifyPropertyChanged</a> instead?</p>
http://stackoverflow.com/questions/1474416/c-passing-a-class-as-a-parameter/1474424#147442412Answer by Andy for C++ Passing a class as a parameterAndy2009-09-24T22:06:59Z2009-09-24T22:06:59Z<p>C++ does not store meta data about classes as other languages do. Assuming that you always use a class with a parameterless constructor, you can use templates to achieve the same thing:</p>
<pre><code>template <typename T>
void MyFunction
{
T* p = new T;
}
</code></pre>
http://stackoverflow.com/questions/1456544/unable-to-set-initial-value-when-databinding-combobox-to-dictionarychar-string/1457918#14579181Answer by Andy for Unable to set initial value when databinding combobox to Dictionary<char,string>Andy2009-09-22T02:55:42Z2009-09-22T02:55:42Z<p>One difference between the two cases is that <code>char</code> is a value type, while <code>string</code> is a reference type. Most likely internally WPF is using objects for bindings, and every time the <code>char</code> is received, it is boxed into a new object, so a reference equality check fails.</p>
<p>I'd say just use a <code>string</code> as your key, since there isn't any way to get around how boxing works.</p>
http://stackoverflow.com/questions/1457627/global-previewkeydown-handler-vs-local-previewkeydown-handler/1457907#14579071Answer by Andy for Global PreviewKeyDown handler vs local PreviewKeyDown handlerAndy2009-09-22T02:49:54Z2009-09-22T02:49:54Z<p>You don't really have an option, aside from filtering out those keys in the global key handler.</p>
<p>The reason that you're having this problem is that all of the Preview* events are tunneling, meaning that controls higher in the visual tree get them first (starting at the root). The very reason why you're using this event in the first place is causing your problem.</p>
<p>One less than ideal option would be to register a class handler for <code>TextBox.PreviewKeyDown</code> (see <a href="http://msdn.microsoft.com/en-us/library/system.windows.eventmanager.registerclasshandler.aspx" rel="nofollow">EventManager.RegisterClassHandler()</a>). While this would be called before your window's <code>PreviewKeyDown</code> handler, it will be called for all <code>TextBoxes</code> in your application. This may or not be what you want.</p>
http://stackoverflow.com/questions/1452410/get-x-y-coordinates-of-elements-within-an-inkcanvas-in-wpf/1452432#14524320Answer by Andy for Get X Y coordinates of elements within an InkCanvas in WPFAndy2009-09-21T00:35:25Z2009-09-21T00:35:25Z<p>You want to use various static methods defined on <code>Canvas</code> to get those values - <a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.canvas.getleft.aspx" rel="nofollow">GetLeft()</a>, <a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.canvas.gettop.aspx" rel="nofollow">GetTop()</a>, etc. I believe that <code>LeftProperty</code> is just the definition of the attached property itself, not the way to get the value.</p>
http://stackoverflow.com/questions/1449578/can-i-modify-this-generics-method-to-work-without-losing-my-religion-the-usage/1449585#14495853Answer by Andy for Can I modify this generics method to work without losing (my religion) the usage-style I want?Andy2009-09-19T21:29:32Z2009-09-19T21:29:32Z<p>I don't think so. I believe that types are only inferred based on the parameters to the method. So I think you're stuck with specifying the type of the class explicitly. See <a href="http://msdn.microsoft.com/en-us/library/twcad0zb%28VS.80%29.aspx" rel="nofollow">MSDN</a> for more information.</p>
http://stackoverflow.com/questions/1433162/vc-win32-or-wpf-for-developing-a-text-editor/1434858#14348581Answer by Andy for VC (win32) or WPF for developing a text editorAndy2009-09-16T18:58:58Z2009-09-16T18:58:58Z<p>If you want to write any sort of GUI app on Windows, I would recommend not using C++. .NET is much, much better for creating a GUI than all of the various C++ GUI libraries that are on Windows. I could see using WPF for writing an app like OneNote working out fairly well, since WPF is very easily extensible.</p>
http://stackoverflow.com/questions/1430023/how-can-i-override-treeviewitem-in-wpf-to-allow-asynchronous-children-loading/1430047#14300470Answer by Andy for How can I override TreeViewItem in WPF to allow asynchronous children loading?Andy2009-09-15T22:51:27Z2009-09-15T22:51:27Z<p>Why do you need to implement this in the control itself?</p>
<p>Assuming that isn't an absolute requirement, I would handle this in the property that returns the children of the specified node. If the children haven't been populate yet, use a background thread to load the children, and as they are found notify the UI thread and then add the child object to the collection of children. Assuming that you're using an <code>ObservableCollection</code> (or at least a collection that implements <code>INotifyCollectionChanged</code>), as the children are added they will appear in the UI asynchronously.</p>
http://stackoverflow.com/questions/1428372/eat-mousedown-event-after-closing-a-wpf-menu/1430031#14300311Answer by Andy for Eat MouseDown event after closing a WPF menuAndy2009-09-15T22:47:10Z2009-09-15T22:47:10Z<p>You could always handle the <a href="http://msdn.microsoft.com/en-us/library/system.windows.uielement.previewmousedown.aspx" rel="nofollow">PreviewMouseDown</a> event for your <code>Window</code>. In the handler, if your menu is open, close it and set <a href="http://msdn.microsoft.com/en-us/library/system.windows.routedeventargs.handled.aspx" rel="nofollow">MouseButtonEventArgs.Handled</a> to <code>true</code>, preventing the event from being sent to whatever control was under the mouse.</p>
http://stackoverflow.com/questions/1416568/wpf-treeview-doesnt-display-object-hierarchy/1416642#14166421Answer by Andy for WPF TreeView doesnt display Object HierarchyAndy2009-09-13T01:57:10Z2009-09-13T01:57:10Z<p>Expanding on @Gimalay's answer, the problem is that the <code>TreeView</code> doesn't know where to get the data for any child nodes. You inform the <code>TreeView</code> by using a <code>HierarchialDataTemplate</code>, rather than a <code>DataTemplate</code>:</p>
<pre><code><HierarchialDataTemplate DataType="{x:Type ConfigurationEditor:Channel}"
ItemsSource="...">
<WrapPanel>
<TextBlock FontWeight="Bold" Text="{Binding Path=Name}" />
<TextBlock Text=" [" />
<TextBlock Text="{Binding Path=Id}" />
<TextBlock Text="]" />
</WrapPanel>
</HierarchialDataTemplate>
</code></pre>
<p>The main difference between the two is the <code>ItemsSource</code> attribute. This is a binding expression that returns a collection of objects to use as child nodes.</p>
<p>The problem is that you have a few properties to get children from, not just one. You either need to combine them all into one property, or add another property that returns all of the child nodes.</p>
<p>Finally, you'll need to define a <code>DataTemplate</code> for each child item type, so that the <code>TreeView</code> knows how to display them (you can use a <code>HierarchialDataTemplate</code> for the children as well, if they in turn have child nodes).</p>
http://stackoverflow.com/questions/1405537/how-to-select-file-menu-items-using-keyboard-in-wpf-and-c/1405598#14055982Answer by Andy for How to select File Menu Items using Keyboard in WPF and C#? Andy2009-09-10T14:27:24Z2009-09-10T14:27:24Z<p>To add the small line that represents the menu item's accelerator, use an underscore in the XAML:</p>
<pre><code><MenuItem Header="_File">
<MenuItem Header="_Backend Features" />
<MenuItem Header="E_xit" />
</MenuItem>
</code></pre>
<p>As for the shortcut keys, first off I would recommend not using <code>Ctrl+X</code> for Exit, since that is generally used for Cut. Normally exit doesn't have a shortcut key, but Pressing <code>Alt+F4</code> to close the main window will have the same affect.</p>
<p>Regarding your actual question, you have a couple of options, but for both you need to be using Commands to implement handle your MenuItems rather than the <code>Click</code> event.</p>
<p>The first option is to set an <code>InputBinding</code> for each shortcut key. It would be done something like this on your main window:
</p>
<p>For the <code>Command</code> attribute, you'd need to specify an expression that represents the command for that shortcut (you'd use the same Command when defining the MenuItem, too). If you have a <code>Commands</code> class, you could do something like the following:</p>
<pre><code>static class Commands
{
public static ICommand BackendFeaturesCommand = ...;
}
</code></pre>
<p>And then in XAML:</p>
<pre><code><KeyBinding Key="B" Modifiers="Control"
Command="{x:Static Commands.BackendFeaturesCommand}" />
</code></pre>
<p>The other option is to define your command as a <a href="http://msdn.microsoft.com/en-us/library/system.windows.input.routeduicommand.aspx" rel="nofollow">RoutedUICommand</a>, and specify an <code>InputGesture</code> for it. This will take care of wiring up the shortcut key for you.</p>
http://stackoverflow.com/questions/1386852/does-windows7-uses-wpf/1386905#13869050Answer by Andy for Does Windows7 uses WPF ?Andy2009-09-06T22:36:43Z2009-09-06T22:36:43Z<p>I know that WPF is not used in the Explorer shell (I recall a blog post by Raymond Chen saying that .NET shouldn't be used in Explorer, but I can't recall for sure). I don't think it's used in any of the other utility apps that ship with Windows 7, but I'm not sure about that.</p>
http://stackoverflow.com/questions/1374710/wpf-textbox-not-firing-ontextinput-event/1374899#13748990Answer by Andy for WPF: Textbox not firing onTextInput eventAndy2009-09-03T17:44:35Z2009-09-03T17:44:35Z<p>Your handler for the <code>TextInput</code> event is not fired because the <code>TextBox</code> is handling the event. You could try using the <a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.primitives.textboxbase.textchanged.aspx" rel="nofollow">TextChanged</a> event instead, since really you just want to know when characters were added or removed from the <code>TextBox</code>.</p>
http://stackoverflow.com/questions/1313325/how-to-filter-a-wpf-treeview-hierarchy-using-an-icollectionview/1314555#13145550Answer by Andy for How to filter a wpf treeview hierarchy using an ICollectionView?Andy2009-08-21T23:02:23Z2009-08-21T23:02:23Z<p>The only way I've found to do this (which is a bit of a hack), is to create a ValueConverter that converts from IList to IEnumerable. in ConvertTo(), return a new CollectionViewSource from the passed in IList.</p>
<p>If there's a better way to do it, I'd love to hear it. This seems to work, though.</p>
http://stackoverflow.com/questions/842057/how-do-i-convert-a-timespan-to-a-formatted-string/842067#8420671Answer by Andy for How do I convert a TimeSpan to a formatted string?Andy2009-05-08T22:22:10Z2009-08-16T17:51:15Z<p>Would <a href="http://msdn.microsoft.com/en-us/library/1ecy8h51.aspx" rel="nofollow">TimeSpan.ToString()</a> do the trick for you? If not, it looks like the code sample on that page describes how to do custom formatting of a <code>TimeSpan</code> object.</p>
http://stackoverflow.com/questions/1279920/find-an-element-in-datatemplate-applied-to-tabitem/1280290#12802900Answer by Andy for Find an element in DataTemplate applied to TabItemAndy2009-08-14T21:22:26Z2009-08-14T21:22:26Z<p>You don't want to use any of the template properties of the <code>TabItem</code>, since those are used to create the actual controls, rather than storing them. You should be able to search the visual tree for the <code>ListView</code> directly, rather than going through the <code>DataTemplate</code>.</p>
http://stackoverflow.com/questions/1275407/initialize-a-class-only-once/1275435#12754350Answer by Andy for Initialize a class only onceAndy2009-08-14T00:33:32Z2009-08-14T00:33:32Z<p>It sounds like you want to make <code>TimeFormatter</code> a singleton, where only one instance can be created. Objective-C doesn't make this super easy, but basically you can expose a static method that returns a pointer to <code>TimeFormatter</code>. This pointer will be allocated and initialized the first time in, and every time after that same pointer can be used. <a href="http://stackoverflow.com/questions/145154/what-does-your-objective-c-singleton-look-like">This question</a> has some examples of creating a singleton in Objective-C.</p>
http://stackoverflow.com/questions/1274943/window-findname-cant-find-border-element-that-ive-named-through-an-attached-pro/1275422#12754221Answer by Andy for Window.FindName can't find Border element that I've named through an attached propertyAndy2009-08-14T00:29:02Z2009-08-14T00:29:02Z<p>To verify that the border is getting named correctly, you can run <a href="http://blois.us/Snoop/" rel="nofollow">Snoop</a>. This will show you the visual tree of your application, and all of the properties of every control.</p>
<p>If you want to enumerate the visual tree yourself, you can use the <a href="http://msdn.microsoft.com/en-us/library/system.windows.media.visualtreehelper.aspx" rel="nofollow">VisualTreeHelper</a> class. Specifically, the <a href="http://msdn.microsoft.com/en-us/library/system.windows.media.visualtreehelper.getchildrencount.aspx" rel="nofollow">GetChildrenCount()</a> and <a href="http://msdn.microsoft.com/en-us/library/system.windows.media.visualtreehelper.getchild.aspx" rel="nofollow">GetChild()</a> methods can be called to traverse the visual tree.</p>
http://stackoverflow.com/questions/1275371/getting-shift-ctrl-alt-states-from-a-mouse-event/1275408#12754081Answer by Andy for Getting shift/ctrl/alt states from a mouse event?Andy2009-08-14T00:25:03Z2009-08-14T00:25:03Z<p>Assuming that you're still in the mouse event handler, you can check the value of <a href="http://msdn.microsoft.com/en-us/library/system.windows.input.keyboard.modifiers.aspx" rel="nofollow">Keyboard.Modifiers</a>. I don't think that there is anyway to get modifier information from the event itself, so you have to interrogate the keyboard directly.</p>
http://stackoverflow.com/questions/1271375/how-to-capture-a-mouse-click-on-an-item-in-a-listbox-in-wpf/1271620#12716203Answer by Andy for How to capture a mouse click on an Item in a ListBox in WPF?Andy2009-08-13T12:19:30Z2009-08-13T12:19:30Z<p>I believe that your <code>MouseLeftButtonDown</code> handler is not called because the <code>ListBox</code> uses this event internally to fire its <code>SelectionChanged</code> event (with the thought being that in the vast majority of cases, <code>SelectionChanged</code> is all you need). That said, you have a couple of options.</p>
<p>First, you could subscribe to the <code>PreviewLeftButtonDown</code> event instead. Most routed events have a routing strategy of Bubbling, which means that the control that generated the event gets it first, and it not handled the event works its way up the visual tree giving each control a chance at handling the event. The Preview events, on the other hand, are Tunneling. This means that they start at the root of the visual tree (generally <code>Window</code>), and work their way down to the control that generated the event. Since your code would get the chance to handle the event prior to the <code>ListBoxItem</code>, this will get fired (and not be handled) so your event handler will be called. You can implement this option by replacing <code>MouseDoubleClickEvent</code> in your sample with <code>PreviewMouseLeftButtonDown</code>.</p>
<p>The other option is to register a class handler that will be notified whenever a <code>ListBoxItem</code> fires the <code>MouseLeftButtonDown</code> event. That is done like this:</p>
<pre><code>EventManager.RegisterClassHandler(typeof(ListBoxItem),
ListBoxItem.MouseLeftButtonDownEvent,
new RoutedEventHandler(this.MouseLeftButtonDownClassHandler));
private void OnMouseLeftButtonDown(object sender, RoutedEventArgs e)
{
}
</code></pre>
<p>Class Handlers are called before any other event handlers, but they're called for all controls of the specified type in your entire application. So if you have two <code>ListBoxes</code>, then whenever any <code>ListBoxItem</code> is clicked in either of them, this event handler will be called.</p>
<p>As for your second question, the best way to know what type of event handler you need for a given event, and to see the list of events available to a given control, is to use the MSDN documentation. For example, the list of all events handled by <code>ListBoxItem</code> is at <a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.listboxitem%5Fevents.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.windows.controls.listboxitem_events.aspx</a>. If you click on the link for an event, it includes the type of the event handler for that event.</p>
http://stackoverflow.com/questions/1254633/is-there-an-itemscontrol-equivalent-for-text-content/1257272#12572720Answer by Andy for Is there an ItemsControl equivalent for text content?Andy2009-08-10T21:19:23Z2009-08-10T21:19:23Z<p>Instead of using a <code>FlowDocument</code>, you can use an <code>ItemsControl</code> and change the panel used to display items to a <a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.wrappanel.aspx" rel="nofollow">WrapPanel</a>. This will allow you use the <code>ItemsControl</code> as you want, but change its display semantics to a <code>WrapPanel</code> (which I believe functions like a <code>FlowDocument</code>. You'd do it something like this:</p>
<pre><code><ItemsControl>
<ItemsControl.ItemsPanelTemplate>
<WrapPanel />
</ItemsControl.ItemsPanelTemplate>
</ItemsControl>
</code></pre>
<p>You can set any properties on the inner <code>WrapPanel</code> as you desire.</p>
http://stackoverflow.com/questions/1257214/why-cant-i-access-the-class-internals-of-listt-when-i-derive-from-it/1257237#12572372Answer by Andy for Why can't I access the class internals of List<T> when I derive from it?Andy2009-08-10T21:10:17Z2009-08-10T21:10:17Z<p><code>List<T></code> isn't designed to be a base class. You should use one of the classes in <a href="http://msdn.microsoft.com/en-us/library/system.collections.objectmodel.aspx" rel="nofollow">System.Collections.ObjectModel</a> instead.</p>
http://stackoverflow.com/questions/1252904/strange-vs-2005-break-point-is-not-being-hit/1252919#12529190Answer by Andy for Strange! VS 2005 -Break Point is not being hit Andy2009-08-10T02:44:34Z2009-08-10T02:44:34Z<p>If you hover over the breakpoint in Visual Studio, does it indicate an error? Common problems are that the code hasn't been built, or the DLL that contains the code isn't loaded into the debugged process.</p>
http://stackoverflow.com/questions/1700219/property-binding-across-controls-in-wpfComment by Andy on Property binding across controls in WPFAndy2009-11-09T13:43:38Z2009-11-09T13:43:38ZAs @Groky said, it would be helpful to see the code for the SelectedItem property.http://stackoverflow.com/questions/1699018/member-modifier-static-must-precede-the-member-type-and-name-error-cComment by Andy on "Member modifier 'static' must precede the member type and name" Error C#Andy2009-11-09T03:57:29Z2009-11-09T03:57:29ZWhich line is line 21? It might work better to only show the relevant snippet of code that is causing the problem.http://stackoverflow.com/questions/1457627/global-previewkeydown-handler-vs-local-previewkeydown-handler/1457907#1457907Comment by Andy on Global PreviewKeyDown handler vs local PreviewKeyDown handlerAndy2009-09-22T18:25:25Z2009-09-22T18:25:25ZI think that would work, but I'm not sure. It's definitely worth a try.http://stackoverflow.com/questions/1456544/unable-to-set-initial-value-when-databinding-combobox-to-dictionarychar-string/1457918#1457918Comment by Andy on Unable to set initial value when databinding combobox to Dictionary<char,string>Andy2009-09-22T18:24:54Z2009-09-22T18:24:54ZYou should mark this answer as accepted if it answered your question so that the question no longer shows up as not having an accepted answer.http://stackoverflow.com/questions/1456928/wpf-take-screenshot-from-other-thread-than-main-threadComment by Andy on WPF Take screenshot from other thread than main threadAndy2009-09-22T02:53:22Z2009-09-22T02:53:22ZAre you sure that it's the screenshot code that's failing? Could it be possible that you're updating the WPF UI from the non-UI thread, and that is raising the exception?http://stackoverflow.com/questions/1433162/vc-win32-or-wpf-for-developing-a-text-editor/1434858#1434858Comment by Andy on VC (win32) or WPF for developing a text editorAndy2009-09-17T12:24:41Z2009-09-17T12:24:41ZThe nice thing about WPF is that if it doesn't have a feature built in, it's very easy to add it yourself. IMO it's much easier to make a complex and pretty UI in WPF than in Win32. Maybe do some small test projects in WPF to see if it can do what you need to do?http://stackoverflow.com/questions/1429802/wpf-mixing-bound-and-fixed-text-in-a-textbox/1429830#1429830Comment by Andy on WPF Mixing Bound and Fixed text in a TextBoxAndy2009-09-15T22:48:57Z2009-09-15T22:48:57Z+1 for StringFormat. Agree with @Pavel - don't create a property with this text in it.http://stackoverflow.com/questions/1416568/wpf-treeview-doesnt-display-object-hierarchy/1416642#1416642Comment by Andy on WPF TreeView doesnt display Object HierarchyAndy2009-09-13T03:54:08Z2009-09-13T03:54:08ZCould you post the updated code? That might help to debug the issue.http://stackoverflow.com/questions/1416568/wpf-treeview-doesnt-display-object-hierarchyComment by Andy on WPF TreeView doesnt display Object HierarchyAndy2009-09-13T01:58:33Z2009-09-13T01:58:33Z@David: I fixed that to avoid confusion.http://stackoverflow.com/questions/1405537/how-to-select-file-menu-items-using-keyboard-in-wpf-and-c/1405598#1405598Comment by Andy on How to select File Menu Items using Keyboard in WPF and C#? Andy2009-09-10T17:12:55Z2009-09-10T17:12:55ZYes, that is correct. If you search for ICommand on MSDN, I think it might have some samples of how to set this up.http://stackoverflow.com/questions/1384369/mvvm-binding-to-listbox-selecteditem/1384747#1384747Comment by Andy on MVVM: Binding to ListBox.SelectedItem?Andy2009-09-06T03:01:27Z2009-09-06T03:01:27ZTo help you find these problems sooner, if you debug your app you should see a WPF binding error in the Output window of Visual Studio, indicating that the property "Selectedtem" doesn't exist. Hopefully that would help you to track down this sort of error quicker in the future.http://stackoverflow.com/questions/1319425/application-level-shortcut-keys-in-wpf/1319505#1319505Comment by Andy on Application Level shortcut keys in WPFAndy2009-08-24T11:52:45Z2009-08-24T11:52:45ZDo you mean XAML rather than MXML? I think MXML is for Flex.http://stackoverflow.com/questions/1316601/implementing-smart-pointer-storing-template-class-in-vector/1316624#1316624Comment by Andy on Implementing Smart Pointer - storing template class in vectorAndy2009-08-22T18:16:25Z2009-08-22T18:16:25Z+1 for not writing your own smart pointer class.http://stackoverflow.com/questions/686482/c-accessing-inherited-private-instance-members-through-reflection/686507#686507Comment by Andy on C#: Accessing Inherited Private Instance Members Through ReflectionAndy2009-08-19T02:24:48Z2009-08-19T02:24:48ZThe instance of B may have A's private members, but the Type of B has no knowledge of such members.http://stackoverflow.com/questions/842057/how-do-i-convert-a-timespan-to-a-formatted-string/842067#842067Comment by Andy on How do I convert a TimeSpan to a formatted string?Andy2009-08-16T17:51:29Z2009-08-16T17:51:29ZI got the same, searched again and updated the link. Does this one work for you?