User Joel B Fant - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T19:55:41Z http://stackoverflow.com/feeds/user/22211 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/134068/listboxwrappanel-arrow-key-navigation 2 ListBox+WrapPanel arrow key navigation Joel B Fant 2008-09-25T15:39:19Z 2009-12-18T14:47:16Z <p>I'm trying to achieve the equivalent of a WinForms <code>ListView</code> with its <code>View</code> property set to <code>View.List</code>. Visually, the following works fine. The file names in my <code>Listbox</code> go from top to bottom, and then wrap to a new column.</p> <p>Here's the basic XAML I'm working with:</p> <pre><code>&lt;ListBox Name="thelist" IsSynchronizedWithCurrentItem="True" ItemsSource="{Binding}" ScrollViewer.VerticalScrollBarVisibility="Disabled"&gt; &lt;ListBox.ItemsPanel&gt; &lt;ItemsPanelTemplate&gt; &lt;WrapPanel IsItemsHost="True" Orientation="Vertical" /&gt; &lt;/ItemsPanelTemplate&gt; &lt;/ListBox.ItemsPanel&gt; &lt;/ListBox&gt; </code></pre> <p>However, default arrow key navigation does not wrap. If the last item in a column is selected, pressing the down arrow does not go to the first item of the next column.</p> <p>I tried handling the <code>KeyDown</code> event like this:</p> <pre><code>private void thelist_KeyDown( object sender, KeyEventArgs e ) { if ( object.ReferenceEquals( sender, thelist ) ) { if ( e.Key == Key.Down ) { e.Handled = true; thelist.Items.MoveCurrentToNext(); } if ( e.Key == Key.Up ) { e.Handled = true; thelist.Items.MoveCurrentToPrevious(); } } } </code></pre> <p>This produces the last-in-column to first-in-next-column behavior that I wanted, but also produces an oddity in the left and right arrow handling. Any time it wraps from one column to the next/previous using the up/down arrows, a single subsequent use of the left or right arrow key moves the selection to the left or right of the item that was selected just before the wrap occured.</p> <p>Assume the list is filled with strings "0001" through "0100" with 10 strings per column. If I use the down arrow key to go from "0010" to "0011", then press the right arrow key, selection moves to "0020", just to the right of "0010". If "0011" is selected and I use the up arrow key to move selection to "0010", then a press of the right arrow keys moves selection to "0021" (to the right of "0011", and a press of the left arrow key moves selection to "0001".</p> <p>Any help achieving the desired column-wrap layout and arrow key navigation would be appreciated.</p> <p>(Edits moved to my own answer, since it technically is an answer.)</p> http://stackoverflow.com/questions/134068/listboxwrappanel-arrow-key-navigation/135908#135908 2 Answer by Joel B Fant for ListBox+WrapPanel arrow key navigation Joel B Fant 2008-09-25T20:40:36Z 2009-12-18T14:45:29Z <p>It turns out that when it wraps around in my handling of the <code>KeyDown</code> event, selection changes to the correct item, but focus is on the old item.</p> <p>Here is the updated <code>KeyDown</code> eventhandler. Because of Binding, the <code>Items</code> collection returns my actual items rather than <code>ListBoxItem</code>s, so I have to do a call near the end to get the actual <code>ListBoxItem</code> I need to call <code>Focus()</code> on. Wrapping from last item to first and vice-versa can be achieved by swapping the calls of <code>MoveCurrentToLast()</code> and <code>MoveCurrentToFirst()</code>.</p> <pre><code>private void thelist_KeyDown( object sender, KeyEventArgs e ) { if ( object.ReferenceEquals( sender, thelist ) ) { if ( thelist.Items.Count &gt; 0 ) { switch ( e.Key ) { case Key.Down: if ( !thelist.Items.MoveCurrentToNext() ) { thelist.Items.MoveCurrentToLast(); } break; case Key.Up: if ( !thelist.Items.MoveCurrentToPrevious() ) { thelist.Items.MoveCurrentToFirst(); } break; default: return; } e.Handled = true; ListBoxItem lbi = (ListBoxItem) thelist.ItemContainerGenerator.ContainerFromItem( thelist.SelectedItem ); lbi.Focus(); } } } </code></pre> http://stackoverflow.com/questions/1183167/exposing-c-struct-to-com-breaks-for-vb6-app 1 Exposing C# struct to COM breaks for VB6 app Joel B Fant 2009-07-25T21:55:13Z 2009-10-11T15:25:39Z <p><strong>Last Updated:</strong> 2009-08-11 2:30pm EDT</p> <p>A few days ago I posted <a href="http://stackoverflow.com/questions/1159728/compiling-vb6-app-w-net-interop-only-runs-if-compiled-on-my-machine">this question</a> about some very strange problems. Well, I figured out what specifically was causing a build on one machine to not run on others and even came up with a work-around, but now it leaves me with a nice, specific question: Why?</p> <p>To reproduce the problem, I create a new InteropUserControl and do the following:</p> <ol> <li>Add a new <code>public struct MyStruct</code>:</li> <li>Give it a GUID and <code>ComVisible</code> attributes</li> <li>Add a <code>GetMyStruct</code> member to the <code>_InteropUserControl</code> interface and implement it in <code>InteropUserControl</code>.</li> </ol> <p><code>MyStruct</code>:</p> <pre><code>[Guid("49E803EC-BED9-4a08-B42B-E0499864A169")] [ComVisible(true)] public struct MyStruct { public int mynumber; } </code></pre> <p><code>_InteropUserControl.GetMyStruct()</code>:</p> <pre><code>[DispId(7)] void getMyStruct( int num, ref MyStruct data ); </code></pre> <p>(I have tried returning <code>MyStruct</code> instead of passing by reference, as well.)</p> <p><code>InteropUserControl.GetMyStruct()</code> implementation:</p> <pre><code>public void getMyStruct( int num, ref MyStruct data ) { data = new MyStruct(); data.mynumber = num * 2; } </code></pre> <p>I also sign the assembly and install it to the GAC and register with Regasm. Upon adding it to a new VB6 project and adding a call to <code>GetMyStruct()</code> and compiling on our build machine, it refuses to run on other machines.</p> <p>To get around this, I had to expose a class to COM instead of the struct, and basically change <code>GetMyStruct</code> to this:</p> <pre><code>public void GetMyData( int num, MyClass data ) { data.mynumber = num * 2; } </code></pre> <p>In my actual project, I retrieve the struct internally, and then copy all the field values from the struct to the matching members on the instance of the class passed to the method by the client.</p> <p>So why did a struct cause this behavior and a class worked fine? Is there some magic to exposing a struct to COM for using in VB6?</p> <p>I think it may have something to do with OLE Automation.</p> <p>Note: I also tried returning the struct rather than using a <code>ref</code> parameter, but that did not change the behavior.</p> <p><strong>Edit to add link to project template:</strong></p> <p><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=934DE3C5-DC85-4065-9327-96801E57B81D&amp;displaylang=en" rel="nofollow">Interop Forms Toolkit 2.0</a> is the original VB.NET project template and dll. I don't reference the dll, so you may not need to install this.</p> <p><a href="http://www.codeproject.com/KB/vb-interop/VB6InteropToolkit2.aspx" rel="nofollow">C# Translations of templates on CodeProject</a> is what I used to create mine (the project template, not the item template). The VB.NET version generates the <code>__InteropUserControl</code> event interface, the <code>_InteropUserControl</code> interface, and a few relevant attributes automagically. Those are explicitly coded in the C# version, and that's about all that's different between the two.</p> http://stackoverflow.com/questions/1302756/why-is-the-buttons-background-changing/1306626#1306626 1 Answer by Joel B Fant for Why is the Button's Background changing? Joel B Fant 2009-08-20T14:35:07Z 2009-08-20T14:35:07Z <p><em>Charlie's answer is good. I simply want to supplement with an explanation of what was going on, and a comment didn't seem the place.</em></p> <p>The reason why it was green for an instant and then was blue is because the default theme's <code>ControlTemplate</code> for <code>Button</code> already had an <code>IsMouseOver</code> <code>Trigger</code> to change the background. </p> <p>Then you added another in your <code>Style</code>. This doesn't replace the existing one because you could have multiple <code>Trigger</code>s on the same property and value that have very different <code>Setter</code>s and do completely different things.</p> <p>So it was trying to do both, and did the green one first.</p> http://stackoverflow.com/questions/1159549/retaining-font-size-when-loading-saving-rtf-in-wpf/1302188#1302188 1 Answer by Joel B Fant for Retaining font size when loading/saving RTF in WPF Joel B Fant 2009-08-19T19:36:30Z 2009-08-20T13:12:16Z <p>All of WPF's measurement is in pixels (although not exactly screen pixels). Even when you specify the <code>FontSize</code> of a <code>TextRange</code>.</p> <p>Internally, when you specify something like <code>FontSize="14pt"</code> in XAML, WPF uses <code>LengthConverter</code> and changes that qualified double based on a factor associated with the unit of measurement you give. So 11 gets multiplied by 1.3333333, approximately. So if you feed a plain double value to a <code>FontSize</code> property, the unit is pixels.</p> <p>However, if you use <code>FontSize="14.0001pt"</code>, or multiply the points by 1.3333334, or maybe even just add 0.0001 to the pixel measurement, it offsets things just enough that you actually get \fs22 or \fs28 (rather than \fs21 or \fs27, respectively). This is for when you're setting a size in WPF.</p> <p>The reason you have \fs22, Load(), Save(), and then have \fs21 has to do with the same thing. A parser takes the RTF and converts it into WPF objects. So 22 half-points become something like 14.666666666667 pixels. When you Save() again, those pixels get converted back to a different unit, but not very correctly. 14.666666666667 pixels become 21 half points, but 14.6666674 pixels become 22 half points, which is what you wanted.</p> <p>Maybe this information will give you an idea how to get RTF differently. Maybe you can get XAML out instead and convert it. Maybe there's a nice free third-part XAML-to-RTF converter that doesn't have annoying rounding errors.</p> http://stackoverflow.com/questions/1299706/creating-selectionborder-bit-in-the-face-by-decimal-rounding/1301367#1301367 1 Answer by Joel B Fant for Creating SelectionBorder: Bit in the face by decimal rounding? Joel B Fant 2009-08-19T17:15:37Z 2009-08-19T19:38:13Z <p>You could make more than one corner "un-matched" in that regard. For example, instead of having one point be the "source" and "destination" of the animated dashes, you could pick 2 points. One would be the "source", dashes appearing to march away from it in 2 directions, and another point be the "destination", where dashes converge and disappear.</p> <p>GIMP, for example, animates selection dashed lines in this way and seems to pick a point closest to the lower-left for the "source" and a point closest to the upper-right for the "destination".</p> <p>You could come up with some other scheme, as well.</p> <p>Just remember that while it may look disturbing to you, most users will not care.</p> http://stackoverflow.com/questions/1301397/font-size-mismatch-between-richtextbox-and-word/1301408#1301408 1 Answer by Joel B Fant for Font size mismatch between RichTextBox and Word Joel B Fant 2009-08-19T17:21:23Z 2009-08-19T17:21:23Z <p>Using <code>FontSize</code> and assigning a simple number means the unit is pixels. Try setting <code>Fontsize="14pt"</code> instead.</p> <p>Other units: <code>px</code>, <code>in</code>, <code>cm</code>.</p> http://stackoverflow.com/questions/1293883/putting-listbox-in-scrollviewer-mouse-wheel-does-not-work/1294786#1294786 2 Answer by Joel B Fant for Putting ListBox in ScrollViewer: mouse wheel does not work Joel B Fant 2009-08-18T15:52:37Z 2009-08-19T14:29:42Z <p>Firstly, I think you need to elaborate on what your limitations are and what you're trying to achieve. Without that, I can only explain why what you're doing isn't working. Somebody may even have a better idea about how to get the result you're after.</p> <p>If you put <code>ListBox</code> inside a <code>ScrollViewer</code>, then the <a href="http://msdn.microsoft.com/en-us/library/aa970773.aspx" rel="nofollow">control template</a> for <code>ListBox</code> still has its own <code>ScrollViewer</code> inside. When the mouse cursor is over the <code>ListBox</code> and you scroll the mousewheel, that event bubbles up until it reaches the <code>ScrollViewer</code> that's part of <code>ListBox</code>. That one handles it by scrolling and marks the event as handled, so then the <code>ScrollViewer</code> you put the <code>ListBox</code> inside of ignores the event.</p> <p>If you make the <code>ListBox</code> taller and narrower than the outer <code>ScrollViewer</code>, and give it enough items so that the <code>ListBox</code> itself can scroll the items, you'll see 2 vertical scroll bars: 1 in the <code>ListBox</code>, and 1 outside the <code>ListBox</code> for your outer <code>ScrollViewer</code>. When the mouse cursor is inside the <code>ListBox</code>, the <code>ListBox</code> will scroll the items with its internal <code>ScrollViewer</code>, and its <code>Border</code> will stay in place. When the mouse cursor is outside the <code>ListBox</code> and inside the outer <code>ScrollViewer</code>, that <code>ScrollViewer</code> will scroll its contents -- the <code>ListBox</code> -- which you can verify by noting that the <code>ListBox</code>'s <code>Border</code> changes position.</p> <p>If you want an outer <code>ScrollViewer</code> to scroll the entire <code>ListBox</code> control (including the <code>Border</code> and not just the items), you'll need to re-style the <code>ListBox</code> so that it does not have an internal <code>ScrollViewer</code>, but you'll also need to make sure it automatically gets bigger according to its items.</p> <p>I don't recommend this approach for a couple reasons. It might make sense if there are other controls inside the <code>ScrollViewer</code> along with the <code>ListBox</code>, but your sample does not indicate that. Also, if you're going to have a lot of items in the <code>ListBox</code>, you'll be creating <code>ListBoxItem</code>s for every single one, eliminating any advantage that the default, non-re-styled <code>ListBox</code> gives you due to the default <code>VirtualizingStackPanel</code>.</p> <p>Please let us know what your actual requirements are.</p> <p><hr /></p> <p><strong>Edit:</strong> Ok, now I have a little better idea, with the addition of those images. The effect you're getting is that when there are enough items to scroll and the scrollbar appears, the available area has to shrink a bit horizontally because the <code>ScrollViewer</code>'s template uses a <code>Grid</code>. These seem to be your options, in order of lesser-to-better:</p> <ol> <li>Re-style the <code>ListBox</code> to not have a <code>ScrollViewer</code> and use your re-styled <code>ScrollViewer</code> outside the <code>ListBox</code>. You'd then also have to force the <code>ListBox</code> to also be tall enough to show every item in that same <code>Style</code>, and now you've lost UI virtualization. If you're going to be showing hundreds of items in the list, you <em>definitely</em> don't want to lose that.</li> <li>Re-style the <code>ListBox</code> and set the <code>ControlTemplate</code> to use a <code>ScrollViewer</code> with the style you already created for it that puts the scrollbar over the content rather than in a separate column. This one's ok (<code>ListBox</code> gets to limit its height and use a <code>VirtualizingStackPanel</code>, yay), but as you said, it necessitates awareness of that in your <code>DataTemplate</code>.</li> <li>Re-style the <code>ScrollViewer</code> to leave space for vertical scrollbar even when it is not visible. Here's what this option looks like:</li> </ol> <p>By default, <code>ScrollViewer</code> uses 2 columns in a <code>Grid</code> equivalent to this:</p> <pre><code>&lt;Grid.ColumnDefinitions&gt; &lt;ColumnDefinition Width="*" /&gt; &lt;ColumnDefinition Width="Auto" /&gt; &lt;/Grid.ColumnDefinitions&gt; </code></pre> <p>So the <code>Width</code> of the scrollbar's column is 0 when the scrollbar is not visible since <code>Width="Auto"</code>. To leave space for the scrollbar even when it is hidden, we bind the <code>Width</code> of that column to the <code>Width</code> of the vertical scroll bar:</p> <pre><code>&lt;Grid.ColumnDefinitions&gt; &lt;ColumnDefinition Width="*" /&gt; &lt;ColumnDefinition Width="{Binding ElementName=PART_VerticalScrollBar, Path=Width}" /&gt; &lt;/Grid.ColumnDefinitions&gt; </code></pre> <p>So now the <code>ControlTemplate</code> in the custom <code>Style</code> for <code>ScrollViewer</code> might look like this:</p> <pre><code>&lt;ControlTemplate TargetType="{x:Type ScrollViewer}"&gt; &lt;Grid&gt; &lt;Grid.ColumnDefinitions&gt; &lt;ColumnDefinition /&gt; &lt;ColumnDefinition Width="{Binding ElementName=PART_VerticalScrollBar, Path=Width}" /&gt; &lt;/Grid.ColumnDefinitions&gt; &lt;Grid.RowDefinitions&gt; &lt;RowDefinition /&gt; &lt;RowDefinition Height="Auto" /&gt; &lt;/Grid.RowDefinitions&gt; &lt;ScrollContentPresenter /&gt; &lt;ScrollBar Grid.Column="1" Name="PART_VerticalScrollBar" Value="{TemplateBinding VerticalOffset}" Maximum="{TemplateBinding ScrollableHeight}" ViewportSize="{TemplateBinding ViewportHeight}" Visibility="{TemplateBinding ComputedVerticalScrollBarVisibility}" /&gt; &lt;ScrollBar Name="PART_HorizontalScrollBar" Orientation="Horizontal" Grid.Row="1" Value="{TemplateBinding HorizontalOffset}" Maximum="{TemplateBinding ScrollableWidth}" ViewportSize="{TemplateBinding ViewportWidth}" Visibility="{TemplateBinding ComputedHorizontalScrollBarVisibility}" /&gt; &lt;/Grid&gt; &lt;/ControlTemplate&gt; </code></pre> <p>You could even make the content column a fixed size and the scrollbar column <code>Width="*"</code>, which might work better in the long run if your image is not stretched. Now the <code>DataTemplate</code> does not have to compenstate for the width of a scrollbar, as it gets a consistent area to use whether the scrollbar is visible or not.</p> <p>You'll probably want to check out the rest of the <a href="http://msdn.microsoft.com/en-us/library/aa970847.aspx" rel="nofollow">example <code>ControlTemplate</code> for <code>ScrollViewer</code></a>, but those examples are not the default styles. <em>Note that the example puts the vertical scrollbar on the left! Also note the comment at the bottom about <code>ContentScrollPresenter</code>.</em></p> http://stackoverflow.com/questions/1295913/reference-nested-type-in-objectdataprovider-markup/1296284#1296284 1 Answer by Joel B Fant for Reference nested type in ObjectDataProvider markup Joel B Fant 2009-08-18T20:24:18Z 2009-08-18T20:29:44Z <p>One way to work around <code>x:Type</code> references to nested types is to define a new markup extension and use it instead of the <code>x:Type</code> markup extension. I posted information about one such, including source for the <code>Type2Extension</code> class, in <a href="http://stackoverflow.com/questions/1220196/wpf-binding-a-combobox-to-an-enum-nested-in-a-class/1220266#1220266">this answer</a>.</p> <p>The <code>Type2Extension</code> will not produce designer errors like the <code>TypeExtension</code> does. <strike>Perhaps this will not occur in VS 2010.</strike></p> <p>The only caveat is that the original <code>TypeExtension</code> you use with <code>{x:Type</code> <em>typename</em><code>}</code> is a little more robust than <code>Type2Extension</code> (e.g., checking if arguments are null and throwing exceptions).</p> http://stackoverflow.com/questions/1295431/wpf-anyone-know-why-i-cant-get-this-binding-to-reference/1295484#1295484 2 Answer by Joel B Fant for WPF -- Anyone know why I can't get this binding to reference? Joel B Fant 2009-08-18T17:52:17Z 2009-08-18T19:10:29Z <p>To be able to address the object as a <code>StaticResource</code>, it needs to be in a resource dictionary. However, since you're creating the object in <code>MainWindow</code>'s constructor, you can set the <code>DataContext</code> in the code-behind like so.</p> <pre><code>oPatients = new clsPatients(true); stkWaitingPatients.DataContext = oPatients; </code></pre> <p>And then change the <code>Binding</code> to this:</p> <pre><code>{Binding Mode=OneWay} </code></pre> <p>This is an ok practice if you're not going to be changing the <code>DataContext</code> again, otherwise you'd want a more flexible solution.</p> <p><strong>Edit:</strong> You mentioned <code>ObjectDataProvider</code> in your comment. Here's how you'd do that. First, add an <code>xmlns:sys</code> to the <code>Window</code> for the <code>System</code> namespace (I'm assuming you already have one for <code>xmlns:local</code>):</p> <pre><code>xmlns:sys="clr-namespace:System;assembly=mscorlib" </code></pre> <p>Then you can add an <code>ObjectDataProvider</code> to your resource dictionary like this:</p> <pre><code>&lt;Window.Resources&gt; &lt;ObjectDataProvider x:Key="bindingPatients" ObjectType="{x:Type local:clsPatients}"&gt; &lt;ObjectDataProvider.ConstructorParameters&gt; &lt;sys:Boolean&gt;True&lt;/sys:Boolean&gt; &lt;/ObjectDataProvider.ConstructorParameters&gt; &lt;/ObjectDataProvider&gt; &lt;/Window.Resources&gt; </code></pre> <p>And refer to it in a <code>Binding</code> with the <code>StaticResource</code> markup like this, using the same string we specified in the <code>x:Key</code> attached property we gave it in the dictionary:</p> <pre><code>{Binding Source={StaticResouce bindingPatients}, Mode=OneWay} </code></pre> <p><strong>Edit 2:</strong> Ok, you posted more code in your answer, and now I know why it's throwing an exception during the constructor. You're attempting to do this...</p> <pre><code>lstWaitingPatients.DataContext = oPatients; </code></pre> <p>... but <code>lstWaitingPatients</code> doesn't actually exist until after <code>this.InitializeComponent()</code> finishes. <code>InitializeComponent()</code> loads the XAML and does a bunch of other things. Unless you really need to do something before all of that, put custom startup code <strong>after</strong> the call to <code>InitalizeComponent()</code> or in an event handler for <code>Window</code>'s <code>Loaded</code> event.</p> http://stackoverflow.com/questions/1279102/how-do-you-set-the-frameworkelement-width-property-to-the-value-of-a-qualifieddou/1279304#1279304 2 Answer by Joel B Fant for How do you set the FrameworkElement.Width property to the value of a qualifiedDouble, in the code-behind? Joel B Fant 2009-08-14T18:08:44Z 2009-08-14T18:52:59Z <p>What coincidence, I had to do this earlier today. The qualified doubles end up going through a factor conversion based on the unit you give it, but as part of <code>LengthConverter</code>.</p> <pre><code>LengthConverter lc = new LengthConverter(); string qualifiedDouble = "10pt"; double converted = lc.ConvertFrom( qualifiedDouble ); </code></pre> <p>Alternate:</p> <pre><code>double original = 10.0; double converted = original * 1.333333333; // px-to-pt conversion </code></pre> <p>This will transform "10pt" to 13.3333333, for example. You could also use the conversion factors the article supplies, but I prefer to use the above since the factors are built into the class.</p> <p><strong>Edited:</strong> In response to comment about strings...</p> <p>String conversion makes perfect sense for what it was intended for. They use XAML because it is so much easier to express some things in XAML than in C# or VB. In XAML, all the values are strings, so you have <code>TypeConverter</code>s automatically selected to convert the string to the target type. <code>FontSizeConverter</code> for example, calls an internal static method on <code>LengthConverter</code>. (You could also instantiate <code>FontSizeConverter</code> instead.) There are also converters for <code>GridLength</code>s like "4*" and <code>Width</code>s like "Auto". Or, like I said, you can create your own class to convert without strings.</p> <p><a href="http://blogs.windowsclient.net/rob%5Frelyea/archive/2008/04/10/strings-to-things-or-how-xaml-interprets-attribute-values.aspx" rel="nofollow">This article</a> recommends, for code-behind, to use the factor directly, so I supplied an alternate example above.</p> http://stackoverflow.com/questions/1218332/how-to-toggle-a-wpf-grid-column-visibility/1267327#1267327 3 Answer by Joel B Fant for How to toggle a WPF Grid column visibility Joel B Fant 2009-08-12T16:41:21Z 2009-08-14T16:55:06Z <p>As I read your requirements, instead of thinking of a <code>Grid</code>, I think of a <code>DockPanel</code>.</p> <pre><code>&lt;DockPanel&gt; &lt;Grid Name="right" DockPanel.Dock="Right" MinWidth="100" /&gt; &lt;Grid Name="Left" DockPanel.Dock="Left" MinWidth="100" /&gt; &lt;Grid Name="middle" /&gt; &lt;/DockPanel&gt; </code></pre> <p>If you make a way to resize <code>right</code>, then <code>middle</code> will change as <code>right</code> is resized. If you resize the window, only <code>middle</code> will change. Storing and setting the <code>Width</code> of <code>right</code> is up to you, but shouldn't be hard.</p> <p>As for allowing the user to resize <code>right</code>, that will a bit trickier, but I found <a href="http://www.windows-now.com/blogs/ndunlap/pages/2505.aspx" rel="nofollow">this article</a> that should help. <a href="http://www.codeproject.com/KB/WPF/DockPanelSplitter.aspx" rel="nofollow">This other article</a> might help even more.</p> <p>For the visibility of <code>right</code>, you can set its <code>Visibility</code> to <code>Collapsed</code> to hide it and restore it by setting it to <code>Visible</code>.</p> <p>Note: The panels inside don't have to be <code>Grid</code>s, but you will want to use some sort of <code>Panel</code> for each. Whatever you have inside your current <code>Grid</code> columns should work just fine.</p> http://stackoverflow.com/questions/1278024/mixing-c-vb-in-the-same-project/1278052#1278052 5 Answer by Joel B Fant for Mixing C# & VB In The Same Project Joel B Fant 2009-08-14T14:06:14Z 2009-08-14T14:11:43Z <p>No, you can't. An assembly/project (each project compiles to 1 assembly usually) has to be one language. However, you can use multiple assemblies, and each can be coded in a different language because they are all compiled to MSIL.</p> <p>It compiled fine and didn't complain because a VB.NET project will only actually compile the .vb files and a C# project will only actually compile the .cs files. It was ignoring the other ones, therefore you did not receive errors.</p> <p><strong>Edit:</strong> If you add a .vb file to a C# project, select the file in the Solution Explorer panel and then look at the Properties panel, you'll notice that the Build Action is 'Content', not 'Compile'. It is treated as a simple text file and doesn't even get embedded in the compiled assembly as a binary resource.</p> http://stackoverflow.com/questions/1274370/wpf-toolbar-separator-shrinks-to-nothing-when-inside-a-stackpanel/1274444#1274444 0 Answer by Joel B Fant for WPF ToolBar Separator shrinks to nothing when inside a StackPanel Joel B Fant 2009-08-13T20:40:06Z 2009-08-13T20:40:06Z <p>The <code>StackPanel</code> is changing the orientation of the <code>Separator</code> somehow. Note that if you explicitly tell the <code>Separator</code> to be 20 units wide, the <code>Separator</code> will be a horizontal line instead of a vertical line. That's part of what's going on.</p> <p>If you apply a <code>LayoutTransform</code> to the <code>Separator</code>, it undoes whatever the <code>StackPanel</code> is doing.</p> <pre><code>&lt;Separator&gt; &lt;Separator.LayoutTransform&gt; &lt;RotateTransform Angle="90" /&gt; &lt;/Separator.LayoutTransform&gt; &lt;/Separator&gt; </code></pre> <p>I don't understand the need for a <code>StackPanel</code>, though.</p> http://stackoverflow.com/questions/1273659/virtualizingstackpanel-mvvm-multiple-selection/1273987#1273987 0 Answer by Joel B Fant for VirtualizingStackPanel + MVVM + multiple selection Joel B Fant 2009-08-13T19:08:13Z 2009-08-13T19:08:13Z <p>Apart from not using <code>VirtualizingStackPanel</code>, the only thing I can think of is to capture those keyboard shortcuts and have methods for modifying a certain range of your <code>ViewModel</code> items so that their <code>IsSelected</code> property is set to <code>True</code> (e.g., <code>SelectAll()</code>, <code>SelectFromCurrentToEnd()</code>). Basically bypassing the <code>Binding</code> on <code>ListViewItem</code> for controlling the selection for such cases.</p> http://stackoverflow.com/questions/1268149/wpf-string-formatting-not-numbers-or-dates/1268162#1268162 0 Answer by Joel B Fant for wpf string formatting NOT numbers or dates Joel B Fant 2009-08-12T19:18:08Z 2009-08-13T17:18:59Z <p><code>StringFormat</code> will work if the target type is <code>string</code>. However, the type of <code>Label</code>'s <code>Content</code> property is object. That is why the <code>StringFormat</code> has no effect. If you put a <code>TextBlock</code> inside the <code>Label</code> (or only use a <code>TextBlock</code>) and bind the <code>Textblock</code>'s <code>Text</code> property, it should work fine.</p> <pre><code>&lt;Label&gt; &lt;TextBlock Text="{Binding obj.field, StringFormat=\{0\} suffix}" /&gt; &lt;/Label&gt; </code></pre> <p>If you have other reasons to want to bind the value to the <code>Label</code>, you could also do the following.</p> <pre><code>&lt;Label DataContext="{Binding obj.field}"&gt; &lt;TextBlock Text="{Binding ., StringFormat=\{0\} suffix}" /&gt; &lt;/Label&gt; </code></pre> <p><strong>Related question:</strong> I can't think of any reason why normal format strings that you can supply to <code>string.Format()</code> wouldn't work. They all should, both the standard and custom string. <a href="http://blogs.msdn.com/llobo/archive/2008/05/19/wpf-3-5-sp1-feature-stringformat.aspx" rel="nofollow">Here</a> is a page with multiple examples. If there are any you find are not working, please provide examples.</p> http://stackoverflow.com/questions/1272049/how-to-dynamically-change-converterparameter-or-any-property-of-a-multibinding/1272527#1272527 0 Answer by Joel B Fant for How to dynamically change ConverterParameter (or any) property of a MultiBinding (or any other) resource at runtime? Joel B Fant 2009-08-13T14:59:53Z 2009-08-13T15:04:54Z <p>To be able to change the display mode used on each instance, I think I would have done it something like this:</p> <ul> <li>Create a <code>UserControl</code> with 3 <code>TextBlock</code>s for displaying the 3 parts of the name.</li> <li>Add properties to the above for the parts of the name to be targets of binding.</li> <li>Add a property for the mode in which to display (<em>FirstNameFirst</em>, <em>LastNameFirst</em>, etc.)</li> </ul> <p>The above requires a binding for each of the pieces of the name, so one way to simplify that would be to make a single property on the <code>UserControl</code> of a type <code>NameData</code> declared as a struct with <code>First</code>, <code>Middle</code>, and <code>Last</code> properties. Then you could still use a single <code>MultiBinding</code> to that property. The difference would be that your <code>NameConverter</code> would take the 3 pieces and return a new <code>NameData</code> struct instead of a formatted string.</p> <pre><code>&lt;NameTextBlock NameData="{DynamicResource CustomerFullNameBinding}" NameDisplayMode="LastNameFirst" /&gt; &lt;NameTextBlock NameData="{DynamicResource CustomerFullNameBinding}" NameDisplayMode="FirstNameFirst" /&gt; &lt;NameTextBlock NameData="{DynamicResource CustomerFullNameBinding}" NameDisplayMode="Initials" /&gt; &lt;!-- and so on... --&gt; </code></pre> <p>The idea is to decouple the formatting from the data.</p> <p>The part that tripped things up was declaring one <code>MultiBinding</code> as a resource. Usually, there would be a <code>MultiBinding</code> on each <code>TextBlock</code> you are binding to so that you can change the <code>ConverterParameter</code> for each case.</p> <p><strong>Edit:</strong> I know you wanted to be able to change <code>ConverterParameter</code>, but that's not really possible due to the 1 instance of <code>MultiBinding</code> and <code>ConverterParameter</code> being a plain property rather than a <code>DependencyProperty</code>, which would be required to be the target of a <code>DynamicResource</code> or <code>Binding</code>.</p> http://stackoverflow.com/questions/1055670/deactivate-focusvisualstyle-globally/1268791#1268791 1 Answer by Joel B Fant for Deactivate FocusVisualStyle globally Joel B Fant 2009-08-12T21:21:36Z 2009-08-12T21:21:36Z <p>I know it sounds tedious, but you'll probably have to do the same thing for all the other control types, individually. Making a list of them and doing a couple simple Find/Replace operations should get you what you need, though.</p> http://stackoverflow.com/questions/1267687/how-to-move-all-coordonate-from-a-wpf-polyline-object/1268148#1268148 2 Answer by Joel B Fant for How to move all coordonate from a WPF PolyLine object? Joel B Fant 2009-08-12T19:14:17Z 2009-08-12T19:43:44Z <p>Well, the <code>Point</code> is a struct, so the overhead of creating new ones shouldn't be bad. Doing the following...</p> <pre><code>Point p = this.myPolyline.Points[i]; p.X -= 50; this.myPolyline.Points[i] = p; </code></pre> <p>...would really be no different, simply because structs are passed around by value.</p> <p>You are pretty much stuck with a <code>for</code> loop and reassigning to <code>myPolyline.Points[i]</code>, considering the circumstances:</p> <ol> <li>You have to modify the <code>Point</code> with a different <code>X</code> value.</li> <li>You can't modify the variable of a <code>foreach</code> loop, so you have to use a <code>for</code> loop.</li> <li><code>myPolyline.Points[i].X -= 50</code> won't work because of the way the <code>Point</code> struct is retrieved from the array and then not re-assigned automatically.</li> </ol> <p><em>If you simply wanted to move the whole <code>PolyLine</code>, I might have suggested a <code>LayoutTransform</code> or <code>RenderTransform</code>, but you're moving a subset of <code>Point</code>s and then will add others.</em></p> <p><strong>Edit:</strong> If you really want to refactor that operation, you could create an extension method on <code>PointCollection</code> for the <code>for</code> loop and point tweaking like this:</p> <pre><code>static public void ChangePoints( this PointCollection pc, Vector v ) { for (int i = 0; i &lt; pc.Count; i++ ) { pc[i] += v; // the above works on the indexer because you're doing an operation on the // Point rather than on one of the Point's members. } } </code></pre> <p>Usage:</p> <pre><code>myPolyline.Points.ChangePoints( new Vector( -50, 0 ) ); </code></pre> <p>You still have to change the <code>Point</code>s in the same way, but it's refactored elsewhere so that the usage is more readable. And usage of <code>Vector</code> makes it more readable, too.</p> http://stackoverflow.com/questions/1261962/how-to-disable-appearance-change-events-in-wpf/1262095#1262095 1 Answer by Joel B Fant for How to disable appearance change events in WPF? Joel B Fant 2009-08-11T18:19:37Z 2009-08-11T18:19:37Z <p>If your app needs to have a consistent look regardless of what theme is set in the OS, then you probably need to re-style everything at the application level so that the default theme styles are overridden.</p> <p><a href="http://msdn.microsoft.com/en-us/library/aa970773.aspx" rel="nofollow">ControlTemplate Examples</a> should be a good place to start.</p> http://stackoverflow.com/questions/1235797/net-controls-event-not-working-in-com-on-windows-embedded-for-pos 0 .NET control's event not working in COM on Windows Embedded for POS Joel B Fant 2009-08-05T21:15:13Z 2009-08-10T13:59:13Z <p>I have an InteropUserControl in a .NET assembly that works fine in other operating systems such as Windows XP and Windows 2000. My company sells hardware along with the software we develop, and we get different types of all-in-one touchscreen workstations. <strike>Some</strike> All of one particular brand installed with Windows Embedded for Point of Sale are demonstrating a strange problem.</p> <p>On the InteropUserControl, I expose an event in this way:</p> <pre><code>[ComVisible( true )] [Guid( OrdCtl.EventsId )] [InterfaceType( ComInterfaceType.InterfaceIsIDispatch )] public interface __IControlEvents { [DispId( 1 )] void ItemSelected( int someid1, int someid2 ); } </code></pre> <p>And the event delegate and main control (including raising the event) look like this:</p> <pre><code>[ComVisible( false )] public delegate void ItemSelectedEventHandler( int someid1, int someid2 ); [Guid( MyControl.ClassId )] [ClassInterface( ClassInterfaceType.None )] [ComSourceInterfaces( "MyInteropControl.__IControlEvents" )] [ComClass( MyControl.ClassId, MyControl.InterfaceId, MyControl.EventsId )] public partial class MyControl : UserControl, _IMyControl { public const string ClassId = "... guid ..."; public const string InterfaceId = "... guid ..."; public const string EventsId = "... guid ..."; public event ItemSelectedEventHandler ItemSelected; void OnItemSelected( int someid1, int someid2 ) { var del = this.ItemSelected; if ( del != null ) { del( someid1, someid2 ); } } ... } </code></pre> <p>This control is used in a VB6 app, and the event handler there is also as one would expect:</p> <pre><code>Private Sub MyControl_ItemSelected(ByVal someid1 As Long, ByVal someid2 As Long) 'react to item selection event End Sub </code></pre> <p>However, on the machine's demonstrating incorrect behavior, the <code>ItemSelected</code> event is <code>null</code> in the control's code, and so can't be raised. So I <em>know</em> when it won't work and could use a workaround instead.</p> <p>The event works correctly on Windows XP and Windows 2000, with .NET 2.0 Framework or .NET 3.5 Framework (the project targets 2.0). I had one XP machine demonstrating the same behavior but it had a wonky installation of .NET 3.5. Reinstalling .NET fixed that machine. I thought that was the cause, so I decided to reinstall on the faulty machines.</p> <p>On one of the faulty machines with Embedded for POS, I ran the 2.0 setup (OS not supported by the 3.5) and selected Repair. This did not fix the problem. Tomorrow morning I plan to try an actual uninstall and reinstall, just to be sure. <strike>Some of the machines with this OS work fine, some do not. I suspect the tech who did the setup of these machines did something different on this most recent batch of machines.</strike> The information I was given is wrong. I checked myself and all machines with this strange version of Windows are demonstrating the same problem.</p> <p>What probably (or even just possible) causes could be at fault for the event not getting 'wired up' correctly through the COM-callable wrapper? <strong>Added</strong>: How might I get it to work on Windows Embedded for Point of Sale?</p> <p>I'm also taking suggestions for workarounds, hoping to hear one that sounds decent.</p> http://stackoverflow.com/questions/1235797/net-controls-event-not-working-in-com-on-windows-embedded-for-pos/1241434#1241434 0 Answer by Joel B Fant for .NET control's event not working in COM on Windows Embedded for POS Joel B Fant 2009-08-06T21:02:52Z 2009-08-10T13:59:13Z <p>It turns out that there is a <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=B0AACB27-707D-4ED1-8BD9-25A821096281&amp;displaylang=en" rel="nofollow">Service Pack 3 for WEPOS</a>. After installing this, .NET Framework 3.5 would install. After installing that, the event worked fine.</p> <p>The Lesson: Make sure everything is up-to-date.</p> http://stackoverflow.com/questions/1243786/mesureoverride-to-return-more-than-the-availablesize/1244770#1244770 0 Answer by Joel B Fant for MesureOverride to return more than the availableSize? Joel B Fant 2009-08-07T13:44:39Z 2009-08-09T21:41:12Z <p>A child element <em>can</em> ask for more space. Whether that is honored by the parent element is up to the parent element.</p> <p>MeasureCore only calls MeasureOverride on <code>this</code>. You're only getting a very small part of the story. <a href="http://msdn.microsoft.com/en-us/library/ms745058.aspx" rel="nofollow">The Layout System</a> starts with calling <code>Measure</code> on the topmost <code>Panel</code> in the tree of elements, which calls <code>MeasureCore</code> on <code>this</code>. However, <code>MeasureCore</code> in <code>FrameworkElement</code> calls <code>MeasureOverride</code> in a couple of places.</p> <p><strike>Where are you seeing it cap between 0 and availableSize?</strike></p> <p><strong>Edit:</strong> Re: "well, the last line of MeasureCore..."</p> <p>Like I said, you're looking at a small part of all that goes on.</p> <ol> <li>All controls have 1 very common way to request more space than they actually need: <code>Margin</code>. You'd have to write a custom control to request even more space than that.</li> <li>The constraints you see in <code>MeasureCore</code>, from what I can tell, have to do with the <code>MinWidth</code>/<code>MinHeight</code> and <code>MaxWidth</code>/<code>MaxHeight</code> limits, if they are set.</li> </ol> <p>So yeah, a control -- like the documentation says -- can request more space than is needed. None of the default controls seem to do this aside from their <code>Margin</code>s, and containers such as panels don't have to respect it. Most circumstances don't take advantage of what you read in the documentation because in most circumstances, it wouldn't make sense from either the perspective of the parent of the child.</p> <p>If you created a <code>UserControl</code>, got rid of the <code>Width</code> and <code>Height</code> values in the XAML and override <code>MeasureOverride</code> to return an arbitrary <code>Size</code>, then place an instance of it in a <code>Canvas</code>, you would see it display at the <code>Size</code> you returned.</p> <p>This feature of the layout system may be of use if you are creating custom panels and custom controls or user controls, but otherwise probably not. But it is there. The documentation is correct.</p> http://stackoverflow.com/questions/1252047/removing-wpf-listview-gridview-highlight-chrome/1252184#1252184 0 Answer by Joel B Fant for Removing WPF ListView/GridView highlight chrome Joel B Fant 2009-08-09T20:24:03Z 2009-08-09T20:24:03Z <p>Using your code, I'm not seeing any line at all. What's your default theme right now? Luna, Aero, etc.? It could be that yours is different than mine, therefore a difference in chrome. Are there any other particular settings on your <code>ListView</code>?</p> <p><a href="http://arbel.net/blog/archive/2006/11/05/Revamped-Style-Snooper.aspx" rel="nofollow">Style Snooper</a> or <a href="http://www.sellsbrothers.com/tools/" rel="nofollow">Show Me The Template</a> might help you track down the visual element responsible for the line you're seeing. You may also be interested in <a href="http://msdn.microsoft.com/en-us/library/ms788747.aspx" rel="nofollow">re-templating</a> your <code>ListView</code> to get the effect you want.</p> http://stackoverflow.com/questions/1244953/c-internal-abstract-class-how-to-hide-usage-outside-assembly/1246109#1246109 0 Answer by Joel B Fant for c# internal abstract class, how to hide usage outside assembly Joel B Fant 2009-08-07T17:48:28Z 2009-08-07T17:48:28Z <p>As far as I'm concerned, this is a non-problem. Observe:</p> <pre><code>public abstract class Foo { public void virtual Bar() { // default implementation } } public class NormalFoo : Foo { } public class SpecialFoo : Foo { public override void Bar() { // special implementation } } var foolist = new List&lt;Foo&gt;(); foolist.Add( new NormalFoo() ); foolist.Add( new SpecialFoo() ); foreach (var f in foolist) { f.Bar(); } </code></pre> <p>The above wouldn't work at all without polymorphism -- being able to refer to instances of different derived classes through their common interface, the abstract base class. What you want to do is take that away and cripple the usability of your class hierarchy. I don't think you should continue down this path.</p> http://stackoverflow.com/questions/1244578/best-way-to-implement-remember-me-check-box-in-winforms-wpf/1244882#1244882 2 Answer by Joel B Fant for Best way to implement "Remember Me" check box in WinForms / WPF Joel B Fant 2009-08-07T14:03:51Z 2009-08-07T17:26:04Z <p>You could also store it in <a href="http://msdn.microsoft.com/en-us/library/3ak841sy.aspx" rel="nofollow">Isolated Storage</a> or create a User setting in your application's Settings.</p> <p><strong>Edit:</strong> Oren's suggestion of using DPAPI to protect information is well and good, but it doesn't store anything:</p> <blockquote> <p>An important point to remember is that DPAPI merely applies cryptographic protection to the data. It does not store any of the protected data; therefore applications calling DPAPI must implement their own storage of the protected data.</p> </blockquote> http://stackoverflow.com/questions/1241591/wpf-triggers-affecting-values-set-in-code-not-xaml/1242243#1242243 2 Answer by Joel B Fant for WPF triggers affecting values set in code, not XAML. Joel B Fant 2009-08-07T00:19:27Z 2009-08-07T13:58:54Z <p>Once you set the <code>DropShadowEffect</code> on the <code>Button</code>, you are setting the local value of the <code>Button</code>'s <code>Effect</code> property, which is a <code>DependencyProperty</code> (<code>Button.EffectProperty</code>). The local value overrides any other possible value until it is cleared like this:</p> <pre><code>button1.ClearValue( Button.EffectProperty ); </code></pre> <p>However, that just makes the workings a bit more convoluted, because you also have to make sure you clear it if was set before and hasn't been cleared yet.</p> <p>Instead, you could create an AttachedProperty <code>PreviouslyUsed</code> to put on the <code>ToggleButton</code>s and use <code>Bindings</code> so they get their value a bit more automagically. Then refer to this AttachedProperty value in your triggers and you'll have one drop shadow for <code>PreviouslyUsed</code>, and another for <code>IsChecked</code>.</p> <p>The part you'll have to wire up is the binding, and you'll probably have to use an <code>IValueConverter</code> somewhere to turn <code>mViews[i].LocalizedName</code> into a <code>true</code> or <code>false</code> for <code>PreviouslyUsed</code>.</p> <p>Unfortunately, I don't know enough about your setup with <code>mViews</code> and such to offer more advice about that. I don't know whether your <code>ToggleButtons</code> are part of databinding or not. I suspect that they are not, as you seem to be iterating an array of them. If you bound your <code>mViews</code> objects to the <code>ItemsSource</code> of a <code>ListBox</code>, for example, you could create a <code>DataTemplate</code> that generates the <code>ToggleButtons</code> with the AttachedProperty already in place. That would also simplify your <code>IsChecked</code> situation by binding it to whether or not that item is selected in the <code>ListBox</code>, and then the <code>ListBox</code> takes care of making sure that only one is selected.</p> http://stackoverflow.com/questions/1239157/adding-a-visual-behavior-to-multiple-forms/1239237#1239237 0 Answer by Joel B Fant for Adding a visual behavior to multiple forms Joel B Fant 2009-08-06T14:26:11Z 2009-08-06T14:26:11Z <p>You could create a base <code>BalloonTipForm</code> that your other forms inherit from with the elements that you need. You still wouldn't be able to handle validation events for specific controls in it, but you could certainly have general methods for displaying it.</p> <p>And I'm sure there's some sort of way you could rig it to observe your actual validation so that you may not have to explicitly call the balloon show/hide methods. (I don't know whether the actual validation in your presenters would require multiple such calls or can be just a few.)</p> <p>Your own solution doesn't look too bad, either. You could easily mix the 2.</p> http://stackoverflow.com/questions/1213997/is-there-a-generic-type-safe-bitarray-in-net/1214012#1214012 5 Answer by Joel B Fant for Is there a generic (type-safe) BitArray in .NET? Joel B Fant 2009-07-31T18:06:43Z 2009-08-05T13:59:35Z <p><strike>No, there isn't.</p> <p>I'm not even sure what part of a BitArray would be generic if there were one.</strike></p> <p>It wouldn't be hard to create an extension method to take the <code>BitArray</code> and return a <strike><code>bool[]</code> or</strike> <code>List&lt;bool&gt;</code> using a <code>for</code> loop on the <code>BitArray</code>. The <code>for</code> loop would not involve boxing since you would be using the <code>BitArray</code>'s indexer, and the <strike><code>bool[]</code></strike> <code>List&lt;bool&gt;</code> could be enumerated without boxing as well.</p> <p>Example extension method:</p> <pre><code>static List&lt;bool&gt; ToList( this BitArray ba ) { List&lt;bool&gt; l = new List&lt;bool&gt;(ba.Count); for ( int i = 0 ; i &lt; ba.Count ; i++ ) { l.Add( ba[ i ] ); } return l; } </code></pre> <p>What I found from a quick benchmark (curiosity overcame me) was that <code>foreach (bool b in myBitArray.ToList())</code> took 75% to 85% of the time that <code>foreach (bool b in myBitArray)</code>. That creates the list each time. Creating the list once and iterating over it many times took 20% to 25% of the time that <code>foreach (bool b in myBitArray)</code> took. You could only take advantage of that if you need to iterate over the <code>bool</code> values multiple times and <em>know</em> that they won't have changed from the time you called <code>myBitArray.ToList()</code>.</p> <p><code>foreach (bool b in Enumerable.Cast&lt;bool(myBitArray))</code> took 150% of the time that <code>foreach (bool b in myBitArray)</code> took.</p> <p><strong>Yet another edit:</strong> I'd say that since it is a game, it probably does make sense for you to do whatever it takes to have a very lean iteration with no boxing/unboxing, even if that means writing your own <code>BitArray</code>. You could save time and use <a href="http://www.red-gate.com/products/reflector/" rel="nofollow">Reflector</a> to <strike>copy most of</strike> study <code>BitArray</code>'s code since the class is sealed (can't inherit and add functionality), just in case there are bit-twiddling optimizations to learn from.</p> <p><strong>Edit:</strong> Struck the suggestion to copy code out of Reflector. Some things, like iterators and closures, yield weird generated code that you don't want to copy directly anyway.</p> http://stackoverflow.com/questions/1224379/exporting-mercurial-patch-against-an-old-revision/1224445#1224445 2 Answer by Joel B Fant for exporting mercurial patch against an old revision Joel B Fant 2009-08-03T20:28:51Z 2009-08-03T20:28:51Z <pre><code>hg export -a -o FILENAME x:y </code></pre> <p>Where x is the first revision and y is the last. All it really does is concatenate diffs of each revision in the range into the same file.</p> <p>Run <code>hg help export</code> for more information.</p> http://stackoverflow.com/questions/210922/how-do-i-get-an-animated-gif-to-work-in-wpf/213786#213786 Comment by Joel B Fant on How do I get an animated gif to work in WPF? Joel B Fant 2009-12-15T18:58:19Z 2009-12-15T18:58:19Z @Junior: Yeah, you can set <code>AllowTransparency=&quot;True&quot;</code>. Whether or not that will produce the results you have in mind is another matter. I haven't tried it, myself, but I would bet that the <code>WindowsFormsHost</code> would not become transparent at all. The rest of the <code>Window</code> might. You'll simply have to try it, I think. http://stackoverflow.com/questions/1183167/exposing-c-struct-to-com-breaks-for-vb6-app/1548731#1548731 Comment by Joel B Fant on Exposing C# struct to COM breaks for VB6 app Joel B Fant 2009-10-16T19:49:16Z 2009-10-16T19:49:16Z Interesting. I'll have to try setting such a test project up again and calling from a module in VB6. Unfortunately, that won't help in my app because the main interop object is a control which has to reside on the form (visual display). But, this is a very interesting bit of information. http://stackoverflow.com/questions/1159549/retaining-font-size-when-loading-saving-rtf-in-wpf Comment by Joel B Fant on Retaining font size when loading/saving RTF in WPF Joel B Fant 2009-08-23T18:55:41Z 2009-08-23T18:55:41Z Well, one thing I considered as a possibility was this: 1. Get XAML from the <code>RichTextBox</code>; 2. Modify it by adding 0.001 to each font size; 3. Use code (easily found) to convert XAML to RTF with the built-in classes. That way you're tweaking the input so your output is what you want. http://stackoverflow.com/questions/1302756/why-is-the-buttons-background-changing/1306626#1306626 Comment by Joel B Fant on Why is the Button's Background changing? Joel B Fant 2009-08-20T18:51:02Z 2009-08-20T18:51:02Z Re-templating is the only way, as far as I know. http://stackoverflow.com/questions/1304448/escape-from-datacontext Comment by Joel B Fant on Escape from DataContext Joel B Fant 2009-08-20T13:43:06Z 2009-08-20T13:43:06Z Another question: You are changing the <code>DataContext</code> by assigning an entirely new object to it, yes? http://stackoverflow.com/questions/1304448/escape-from-datacontext Comment by Joel B Fant on Escape from DataContext Joel B Fant 2009-08-20T13:28:08Z 2009-08-20T13:28:08Z I'm not experiencing any problem. What actually happens when you change the <code>Window</code>'s <code>DataContext</code>? Are you changing <code>TestTextBlock.Text</code> programmatically ever? http://stackoverflow.com/questions/1301397/font-size-mismatch-between-richtextbox-and-word/1301408#1301408 Comment by Joel B Fant on Font size mismatch between RichTextBox and Word Joel B Fant 2009-08-19T19:14:35Z 2009-08-19T19:14:35Z WPF takes the qualified double (such as &quot;14pt&quot;) and converts it a normal WPF pixel by multiplying by a factor. For points, the factor is 1.3333333 (sortof). It turns out that if you make it slightly larger (add 0.0001, multiply by 1.33333334 instead, set the <code>FontSize</code> to &quot;14.001pt&quot;), then it crosses a slight boundary and you get correct results when it parses the contents to RTF (which is what happens when you copy to the clipboard). http://stackoverflow.com/questions/1301397/font-size-mismatch-between-richtextbox-and-word/1301408#1301408 Comment by Joel B Fant on Font size mismatch between RichTextBox and Word Joel B Fant 2009-08-19T18:23:09Z 2009-08-19T18:23:09Z @divo: I don't know. There are other questions about RTF and font sizes around here on SO. RTF just seems to do what it wants. It may even have to do with what system dll is being used for the RTF. http://stackoverflow.com/questions/1295431/wpf-anyone-know-why-i-cant-get-this-binding-to-reference/1295826#1295826 Comment by Joel B Fant on WPF -- Anyone know why I can't get this binding to reference? Joel B Fant 2009-08-18T19:15:23Z 2009-08-18T19:15:23Z As sixlettervariables notes in his answer, you don't need some of the bindings you're doing on the <code>ListBox</code>. http://stackoverflow.com/questions/1295431/wpf-anyone-know-why-i-cant-get-this-binding-to-reference/1295484#1295484 Comment by Joel B Fant on WPF -- Anyone know why I can't get this binding to reference? Joel B Fant 2009-08-18T18:41:28Z 2009-08-18T18:41:28Z And which one did you try? Assigning <code>DataContext</code> in code-behind? http://stackoverflow.com/questions/1295431/wpf-anyone-know-why-i-cant-get-this-binding-to-reference/1295484#1295484 Comment by Joel B Fant on WPF -- Anyone know why I can't get this binding to reference? Joel B Fant 2009-08-18T18:40:11Z 2009-08-18T18:40:11Z That means you have an exception occuring during <code>Window</code>'s constructor, probably due to a bug in the XAML. Sending you more code won't help, seeing your code will. Did you put <code>xmlns:sys</code> inside the <code>Window</code> tag? Was there already a <code>&lt;Window.Resources&gt;</code> and now there are 2? There's a lot of things it could be. http://stackoverflow.com/questions/1295431/wpf-anyone-know-why-i-cant-get-this-binding-to-reference Comment by Joel B Fant on WPF -- Anyone know why I can't get this binding to reference? Joel B Fant 2009-08-18T17:56:26Z 2009-08-18T17:56:26Z Your username shows as &quot;unknown&quot;, you might want to edit your user profile. http://stackoverflow.com/questions/1295431/wpf-anyone-know-why-i-cant-get-this-binding-to-reference/1295447#1295447 Comment by Joel B Fant on WPF -- Anyone know why I can't get this binding to reference? Joel B Fant 2009-08-18T17:53:27Z 2009-08-18T17:53:27Z -1: How will that make <code>{StaticResource}</code> resolve, Scott? http://stackoverflow.com/questions/1294432/bind-textbox-to-large-string-in-wpf-using-mvvm Comment by Joel B Fant on Bind TextBox to large string in WPF using MVVM Joel B Fant 2009-08-18T16:09:58Z 2009-08-18T16:09:58Z How large of a string? Is there any difference if you change <code>Output</code> to type <code>string</code> and return <code>&#95;output.ToString()</code> instead of returning <code>&#95;output</code> directly? http://stackoverflow.com/questions/1218332/how-to-toggle-a-wpf-grid-column-visibility Comment by Joel B Fant on How to toggle a WPF Grid column visibility Joel B Fant 2009-08-17T15:40:24Z 2009-08-17T15:40:24Z With an automatic pick, the answerer only gets half the bounty, though. The automatic pick also only happens if the time on the bounty runs out and no answer has been chosen.