User Joe White - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T23:29:02Z http://stackoverflow.com/feeds/user/87399 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1857289/why-does-uselayoutrounding-not-seem-to-work-with-viewbox 0 Why does UseLayoutRounding not seem to work with Viewbox? Joe White 2009-12-07T01:25:50Z 2009-12-07T01:52:18Z <p>I'm trying to write a tile-based game in WPF 4. I want the game board to scale to fit the window, so I'm using a Viewbox; but I want each tile to be on a nice, crisp pixel boundary. I might be wrong, but my understanding is that this is what the new UseLayoutRounding property is supposed to be for -- but it isn't working the way I expect.</p> <p>Here's a window that demonstrates the issue:</p> <pre><code>&lt;Window x:Class="Tyler.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Width="600" Height="400" Background="Black"&gt; &lt;Viewbox&gt; &lt;Canvas Width="1000" Height="1000"&gt; &lt;Rectangle Canvas.Left="100" Canvas.Top="100" Width="100" Height="100" Fill="Gray"/&gt; &lt;Rectangle Canvas.Left="200" Canvas.Top="100" Width="100" Height="100" Fill="Gray"/&gt; &lt;/Canvas&gt; &lt;/Viewbox&gt; &lt;/Window&gt; </code></pre> <p>The two rectangles are adjacent, but because of the sub-pixel coordinates (resulting from the Viewbox's scaling), I end up with a darker gray seam between them. That's what I'm trying to get rid of -- I want them to blend together seamlessly.</p> <p>But UseLayoutRounding doesn't seem to have this effect. I've tried setting <code>UseLayoutRounding="True"</code> on the Window, the Viewbox, the Canvas, the Rectangles -- I've even tried putting it on all of them at once. There's no effect on the seam.</p> <p>What am I missing (or misunderstanding)? How can I get layout rounding to work with a Viewbox?</p> http://stackoverflow.com/questions/1841962/wix-uninstaller-restart-service-if-present 0 WiX uninstaller: restart service if present Joe White 2009-12-03T18:36:38Z 2009-12-03T22:03:41Z <p>Part of our app involves registering a plug-in to a third-party product. While the third-party service is running, it has our DLL loaded, so the files on disk are locked.</p> <p>So when we uninstall our product, we need to begin by stopping the third-party service, and then restart it when we're done with the uninstall. (We also do the same stop/restart thing at install time, because if this is an upgrade, then the existing files are again locked.)</p> <p>WiX has a command that handles the happy path, no problem:</p> <pre><code>&lt;ServiceControl Id="SomeUniqueId" Name="NameOfTheirService" Start="both" Stop="both"/&gt; </code></pre> <p>I.e., stop the service at the beginning of both install and uninstall, and restart it at the end of both install and uninstall. So far so good.</p> <p>The problem comes if the end-user uninstalls the third-party app first, and then tries to uninstall our app. Our app won't work with the third-party service, but if the user wants to uninstall them both, there's nothing to force them to do it in a particular order. However, if the third-party service is no longer installed, then our uninstaller:</p> <ol> <li>Tries to stop the third-party service, fails because the service no longer exists, decides the failure isn't important, and continues.</li> <li>Uninstalls our product.</li> <li>Tries to restart the third-party service, fails because the service no longer exists, decides this failure <em>is</em> important, and brings up an error dialog saying, "Service 'NameOfTheirService' (NameOfTheirService) failed to start. Verify that you have sufficient privileges to start system services." (Retry / Cancel)</li> <li>If the user clicks Retry, goto 3.</li> <li>If the user clicks Cancel, roll back, and un-uninstall.</li> </ol> <p>In other words, WiX's error handling is wrong. Stopping a service should be failure-tolerant, and it is. Starting a service after <em>install</em> can be failure-intolerant; that's fine: fail my install if the service won't start. But starting a service after <em>uninstall</em> should be failure-tolerant, and it is not.</p> <p><strong>How can I restart a service after uninstall, without failing the uninstall if that service no longer exists?</strong></p> http://stackoverflow.com/questions/1557406/stepping-into-a-p-invoke-call-in-disassemby-view 0 Stepping into a P/Invoke call in disassemby view Joe White 2009-10-12T23:01:49Z 2009-11-26T08:00:06Z <p>My C# code is calling an unmanaged third-party library function via P/Invoke, and the unmanaged function is having some strange side effects. I want to debug into it and see what it's doing.</p> <p>If I debug my C# code, and try to "Step Into" the P/Invoke call, it steps over instead. No surprise there -- I expected that; it doesn't have the source for this DLL, and I didn't tell it I was okay with seeing the disassembly view.</p> <p>So I switch the debugger to disassembly view (Debug > Windows > Disassembly). Now I see the individual x86 instructions in my JITted code. Again I try to step into the P/Invoke call. Again, it steps over instead -- even though I clearly told it to Step Into an x86 CALL instruction. How hard is it to step into an x86 CALL?</p> <p>My Googling thus far has shown me a couple of options that can affect this, and I've already set them:</p> <ul> <li>In Tools > Options > Debugging > General, "Enable Just My Code" is unchecked.</li> <li>In Project > Properties > Debug tab, "Enable unmanaged code debugging" is checked.</li> </ul> <p>No good. Visual Studio still refuses to step in.</p> <p>I don't have a PDB for the third-party DLL, but that shouldn't matter. I don't care about source code or symbol information. (Well, actually they'd be really nice, but I already know I'm not going to get them.) Visual Studio can do x86 debugging (that's what the Disassembly view is <em>for</em>), and all I want to do is step into the x86 code.</p> <p>What else do I need to do to get VS to allow me to step into the x86 instructions inside a P/Invoke call?</p> http://stackoverflow.com/questions/1710795/why-does-groupbox-not-have-a-mousemove-event 1 Why does GroupBox not have a MouseMove event? Joe White 2009-11-10T20:03:26Z 2009-11-10T21:57:43Z <p>The WinForms GroupBox control doesn't support MouseMove (or at least, not consistently), and I don't understand why.</p> <p>Since it descends from Control, it does have a MouseMove event, but GroupBox explicitly reintroduces it with <code>Browsable(false)</code>, so it's not shown in the Property Grid. You can hook the MouseMove event at runtime, and sometimes it works -- as long as FlatStyle is left at Standard. If the GroupBox's FlatStyle is set to System, then no MouseMove events are fired at all.</p> <p>Reflector hasn't given me any clues. The GroupBox constructor doesn't seem to be setting any strange control styles, and GroupBox doesn't do anything silly like override MouseMove and fail to call base.</p> <p><s>This also appears to be a WinForms-specific limitation, because Delphi group boxes support OnMouseMove just fine.</s> <em>Correction: the comparison to Delphi isn't valid. Delphi group boxes aren't actually standard BM_GROUPBOX controls; they're just painted to <strong>look</strong> like group boxes, without actually inheriting strange groupbox behaviors like this. So this may well be a limitation of the Windows groupbox control, though I haven't seen it documented anywhere.</em></p> <p>Why does the WinForms GroupBox not support MouseMove?</p> http://stackoverflow.com/questions/1254570/how-can-i-hide-a-paragraph-in-a-flowdocument 0 How can I hide a Paragraph in a FlowDocument? Joe White 2009-08-10T12:24:26Z 2009-11-05T14:23:24Z <p>Is there any way to use databinding to show or hide a Paragraph within a FlowDocument? (I want to use MVVM, but with a FlowDocument as my view.)</p> <p>Paragraph doesn't have a Visibility property. I'm not sure what else to look for.</p> http://stackoverflow.com/questions/1351546/passing-parameters-to-a-wpf-page-via-its-uri 2 Passing parameters to a WPF Page via its Uri Joe White 2009-08-29T14:20:06Z 2009-10-21T20:58:20Z <p>In the context of a navigation-style WPF application (NavigationWindow, not XBAP):</p> <p>Is it possible for a Hyperlink's NavigateUri to contain extra parameters, like path data or a querystring? E.g., is there some way I could set my NavigateUri to <code>/Product.xaml/123</code> or <code>/Product.xaml?id=123</code>, and have my Product.xaml page be able to see that it was called with a parameter of <code>123</code>?</p> http://stackoverflow.com/questions/1107334/using-a-xaml-file-as-a-vector-image-source 1 Using a XAML file as a vector Image Source Joe White 2009-07-10T01:57:20Z 2009-10-15T22:28:25Z <p>I would like to be able to use vector graphics, preferably defined in XAML, as the Source of an Image control, just like I can currently use a raster image like a PNG. That way I could easily mix and match between bitmap and vector images, like this:</p> <pre><code>&lt;StackPanel&gt; &lt;Image Source="Images/Namespace.png"/&gt; &lt;Image Source="Images/Module.xaml"/&gt; &lt;/StackPanel&gt; </code></pre> <p>Module.xaml would most likely have <code>&lt;DrawingImage&gt;</code> as its root element instead of <code>&lt;UserControl&gt;</code>.</p> <p>Actually, what I'm really going for is this, so my ViewModel could select either a raster or vector image at its discretion:</p> <pre><code>&lt;Image Source="{Binding ImageUri}"/&gt; </code></pre> <p>Is this possible? Can Image.Source load XAML classes from a given URI? Or is it only able to load bitmap resources?</p> http://stackoverflow.com/questions/1023960/keybinding-a-relaycommand 4 Keybinding a RelayCommand Joe White 2009-06-21T13:58:49Z 2009-10-05T11:37:32Z <p>I'm using the <a href="http://msdn.microsoft.com/en-us/magazine/dd419663.aspx" rel="nofollow">RelayCommand</a> in my app. It's great for putting the code in the viewmodel, but how do I bind keystrokes to my command?</p> <p>RoutedUICommand has its InputGestures property, which makes the command automatically be invoked when I press the keystroke. (As an added bonus, it even makes the keystroke display in the MenuItem.) Unfortunately, there's no reusable interface for RoutedUICommand's extra properties, so I can't make a RelayUICommand that gets the same magic.</p> <p>I've already tried using InputBindings:</p> <pre><code>&lt;Window.InputBindings&gt; &lt;KeyBinding Key="PageUp" Command="{Binding SelectPreviousLayerCommand}"/&gt; &lt;/Window.InputBindings&gt; </code></pre> <p>But that gets me a runtime exception, because KeyBinding.Command isn't a dependency property. (Actually, what it complains about is that KeyBinding isn't even a DependencyObject.) And since my RelayCommand is a property on my ViewModel (as opposed to the static field that RoutedUICommand is designed for), databinding is the only way I know of to reference it from XAML.</p> <p>How have you guys solved this? What's the best way to bind a keystroke to a RelayCommand?</p> http://stackoverflow.com/questions/1488384/icons-on-mainmenu-contextmenu-without-losing-theming 0 Icons on MainMenu/ContextMenu without losing theming Joe White 2009-09-28T17:44:07Z 2009-09-28T17:44:07Z <p>I would like to use MainMenu and ContextMenu in my WinForms app, and put icons next to some of the menu items. But MenuItem doesn't have any way to specify an icon.</p> <p>It would be easy to add one with owner-draw, but then my menu looks owner-drawn -- I lose all of the default drawing from the XP/Vista theme.</p> <p>What's the best way to get icons on a MainMenu (or ContextMenu) and still play nice with theming?</p> <p>I'm not specifically attached to MainMenu; I'm also open to third-party menu replacements (including commercial ones), as long as they're high-quality and support hiding menu items at runtime. I am <em>not</em> open to MenuStrip because it satisfies neither of those criteria (see e.g. <a href="http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=136061" rel="nofollow">this bug that Microsoft refuses to fix</a>).</p> http://stackoverflow.com/questions/1254512/decrease-line-spacing-in-a-textblock-flowdocument 1 Decrease line spacing in a TextBlock / FlowDocument Joe White 2009-08-10T12:08:02Z 2009-09-17T20:14:08Z <p>Some fonts have a large amount of whitespace above and below the characters. Is there a way to correct for that, and tighten up the space between lines of a word-wrapped paragraph in WPF (in either a TextBlock or a FlowDocument)? Kind of like a negative margin between lines?</p> <p>There's a <code>LineHeight</code> property on <code>Paragraph</code> and <code>TextBlock</code>, but it only seems to let you <em>increase</em> the spacing -- if you set it to a smaller value than the default, it's simply ignored.</p> http://stackoverflow.com/questions/1348280/a-concise-way-to-define-properties-for-mvvm-data-binding-in-c-wpf/1348318#1348318 2 Answer by Joe White for A concise way to define properties for MVVM data binding in C# WPF Joe White 2009-08-28T17:14:25Z 2009-08-28T17:14:25Z <p>In C#, I like to make a base class and put some helper methods on it. Then I make my ViewModels descend from it. This is from memory, but it's something like this:</p> <pre><code>public class Observable : INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged; protected void SetProperty&lt;T&gt;(ref T backingField, T newValue, string propertyName) { if (Equals(backingField, newValue)) return; backingField = newValue; if (PropertyChanged != null) { PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); } } } </code></pre> <p>And, in usage:</p> <pre><code>public class MyClass : Observable { private bool m_someProperty; public bool SomeProperty { get { return m_someProperty; } set { SetProperty(ref m_someProperty, value, "SomeProperty"); } } } </code></pre> http://stackoverflow.com/questions/1348280/a-concise-way-to-define-properties-for-mvvm-data-binding-in-c-wpf/1348302#1348302 0 Answer by Joe White for A concise way to define properties for MVVM data binding in C# WPF Joe White 2009-08-28T17:09:44Z 2009-08-28T17:09:44Z <p>If you're using the Delphi Prism language (Pascal-based .NET language), you just add the <a href="http://74.125.155.132/search?q=cache:GOLWXxhYg9QJ:omnie.no-ip.org/movies/CodeGear%2520RAD%2520Studio%25202009/Delphi%2520Prism/Wiki/EN/Notify_%28keyword%29.html+%22notify+keyword%22+delphi+prism&amp;cd=10&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;client=firefox-a" rel="nofollow"><code>notify</code></a> keyword, and the compiler automatically implements INotifyPropertyChanged and writes all the boilerplate code for you:</p> <pre><code>property SomeProperty: bool; notify; </code></pre> http://stackoverflow.com/questions/1347940/notify-parent-thread-when-child-has-performed-a-certain-action-c/1348116#1348116 0 Answer by Joe White for Notify parent thread when child has performed a certain action [C#] Joe White 2009-08-28T16:30:00Z 2009-08-28T16:30:00Z <p>Is there a reason you're using explicit threads instead of BackgroundWorker? BackgroundWorker has built-in facilities for communicating progress back to the UI thread.</p> http://stackoverflow.com/questions/1348080/convert-a-positive-number-to-negative-in-c/1348106#1348106 6 Answer by Joe White for Convert a positive number to negative in C# Joe White 2009-08-28T16:28:17Z 2009-08-28T16:28:17Z <p>The same way you make anything else negative: put a negative sign in front of it.</p> <pre><code>var positive = 6; var negative = -positive; </code></pre> http://stackoverflow.com/questions/817610/wpf-and-initial-focus 3 WPF and initial focus Joe White 2009-05-03T17:59:08Z 2009-08-27T21:58:49Z <p>It seems that when a WPF application starts, nothing has focus.</p> <p>This is really weird. Every other framework I've used does just what you'd expect: puts initial focus on the first control in the tab order. But I've confirmed that it's WPF, not just my app -- if I create a new Window, and just put a TextBox in it, and run the app, the TextBox doesn't have focus until I click on it or press Tab. Yuck.</p> <p>My actual app is more complicated than just a TextBox. I have several layers of UserControls within UserControls. One of those UserControls has Focusable="True" and KeyDown/KeyUp handlers, and I want it to have the focus as soon as my window opens. I'm still somewhat of a WPF novice, though, and I'm not having much luck figuring out how to do this.</p> <p>If I start my app and press the Tab key, then focus goes to my focusable control, and it starts working the way I want. But I don't want my users to have to hit Tab before they can start using the window.</p> <p>I've played around with FocusManager.FocusedElement, but I'm not sure which control to set it on (the top-level Window? the parent that contains the focusable control? the focusable control itself?) or what to set it to.</p> <p>What do I need to do to get my deeply-nested control to have initial focus as soon as the window opens? Or better yet, to focus the first focusable control in the tab order?</p> http://stackoverflow.com/questions/1083224/pushing-read-only-gui-properties-back-into-viewmodel 2 Pushing read-only GUI properties back into ViewModel Joe White 2009-07-05T00:14:22Z 2009-08-20T12:53:36Z <p>I want to write a ViewModel that always knows the current state of some read-only dependency properties from the View.</p> <p>Specifically, my GUI contains a FlowDocumentPageViewer, which displays one page at a time from a FlowDocument. FlowDocumentPageViewer exposes two read-only dependency properties called CanGoToPreviousPage and CanGoToNextPage. I want my ViewModel to always know the values of these two View properties.</p> <p>I figured I could do this with a OneWayToSource databinding:</p> <pre><code>&lt;FlowDocumentPageViewer CanGoToNextPage="{Binding NextPageAvailable, Mode=OneWayToSource}" ...&gt; </code></pre> <p>If this was allowed, it would be perfect: whenever the FlowDocumentPageViewer's CanGoToNextPage property changed, the new value would get pushed down into the ViewModel's NextPageAvailable property, which is exactly what I want. Unfortunately, this doesn't compile: I get an error saying "'CanGoToPreviousPage' property is read-only and cannot be set from markup." Apparently read-only properties don't support <em>any</em> kind of databinding, not even databinding that's read-only with respect to that property.</p> <p>I could make my ViewModel's properties be DependencyProperties, and make a OneWay binding going the other way, but I'm not crazy about the separation-of-concerns violation (ViewModel would need a reference to the View, which MVVM databinding is supposed to avoid).</p> <p>FlowDocumentPageViewer doesn't expose a CanGoToNextPageChanged event, and I don't know of any good way to get change notifications from a DependencyProperty, short of creating another DependencyProperty to bind it to, which seems like overkill here.</p> <p>How can I keep my ViewModel informed of changes to the view's read-only properties?</p> http://stackoverflow.com/questions/1267827/automating-visual-studio-instance-from-separate-process 0 Automating Visual Studio instance from separate process Joe White 2009-08-12T18:19:19Z 2009-08-18T15:47:24Z <p>Is there a way to write an application that can connect to a running instance of Visual Studio and issue commands to it? For example, could I write a WPF app with a button that, when clicked, issues a "Build.BuildSolution" command to an already-open instance of Visual Studio, causing it to start a build?</p> <p>I'm sure I could use SendKeys to send Ctrl+Shift+B, but I want to know if there's a way to write to an actual API to automate Visual Studio, and invoke commands by name.</p> http://stackoverflow.com/questions/1240767/under-what-conditions-will-a-tform-fire-onresize-on-show 4 Under what conditions will a TForm fire OnResize on show? Joe White 2009-08-06T19:07:43Z 2009-08-15T21:51:54Z <p>As an extension of <a href="http://stackoverflow.com/questions/1239407/will-a-delphi-form-always-fire-onresize-when-its-shown">this question</a>:</p> <p>TForm.OnResize is sometimes fired before a form is first shown, but not always. For example, if BorderStyle is either bsDialog or bsNone, then OnResize will not fire. For all other BorderStyle values (and with all other properties at their defaults), OnResize does fire.</p> <p><strong>Are there other things that affect whether OnResize will fire before the form is shown?</strong> For example, other properties, or combinations of properties, that can affect this?</p> <p>The OnResize event is a result of the <code>ShowWindow</code> API function sending a <code>WM_SIZE</code> message to the window. That bears repeating: <strong>the message is coming from Windows, not from Delphi.</strong> It's a Windows function (<code>ShowWindow</code>) that's (sometimes) sending the message that triggers the event -- so the VCL source code is not really helpful in this case.</p> <p>Bonus points for definitive answers based on documented <code>ShowWindow</code> / <code>WM_SIZE</code> behavior, e.g. references to MSDN documentation or Petzold books.</p> http://stackoverflow.com/questions/1272918/what-is-your-preferred-style-of-product-version-number-and-why/1273005#1273005 0 Answer by Joe White for What is your preferred style of product version number and why? Joe White 2009-08-13T16:13:51Z 2009-08-13T16:13:51Z <p>We tend to do a major release each year, with minor releases in between. So our splash screen and About box display the program versions as "2009", "2009a", etc.</p> <p>We also have build numbers within that, which are incremented every time we do an automated daily build for QA. So our full version number might be something like 2009a.78.</p> <p>As far as Windows version resources go (the x.x.x.x format), our 2009a.78 would be 2009.1.78.* (where '*' is Visual Studio's "autonumber based on the current time within the day" -- something like 18230).</p> http://stackoverflow.com/questions/1266422/why-can-static-classes-not-implement-interfaces/1266442#1266442 8 Answer by Joe White for Why can static classes not implement interfaces? Joe White 2009-08-12T14:15:52Z 2009-08-12T14:15:52Z <p>Interfaces can't have static methods. A class that implements an interface needs to implement them all as instance methods. Static classes can't have instance methods. QED.</p> http://stackoverflow.com/questions/1254633/is-there-an-itemscontrol-equivalent-for-text-content 3 Is there an ItemsControl equivalent for text content? Joe White 2009-08-10T12:39:56Z 2009-08-12T00:33:39Z <p>I have some data that I want to present in a <code>FlowDocument</code>. This will basically be a view that explains the data in a friendly way, with section headers, paragraphs of text, etc., and which I will display in a FlowDocumentScrollViewer.</p> <p>To this end, I would like to create a bulleted list (<code>&lt;List&gt;</code>) out of the contents of an <code>ObservableCollection</code>. I know how to do that with <code>ItemsControl</code>, but how do I do it for <code>ListItem</code> elements in a <code>FlowDocument</code>, since they're part of the <code>TextElement</code> class hierarchy rather than the <code>Control</code> hierarchy? Is there an equivalent of <code>ItemsControl</code> for text content inside a <code>TextBlock</code> or <code>FlowDocument</code>?</p> <p><hr /></p> <p><strong>Edit:</strong> The <a href="http://msdn.microsoft.com/en-us/magazine/dd569761.aspx" rel="nofollow">article</a> Sergey linked to is the perfect starting point. The only problem is that the article's code can only use a <code>Section</code> or a <code>TableRowGroup</code> as the items panel, and doesn't yet support using a <code>&lt;List&gt;</code>. But that was trivial to fix -- just a matter of adding this code at the end of <code>ItemsContent.GenerateContent</code>, just before the final <code>else</code>:</p> <pre><code>else if (panel is List) ((List) panel).ListItems.Add((ListItem) element); </code></pre> http://stackoverflow.com/questions/1032336/using-xaml-designer-to-edit-plain-old-clr-objects 2 Using XAML + designer to edit Plain Old CLR Objects? Joe White 2009-06-23T12:43:41Z 2009-08-11T03:43:39Z <p>I want to write a <a href="http://en.wikipedia.org/wiki/Plain_Old_CLR_Object" rel="nofollow">POCO</a> in XAML, and use a DataTemplate to display that object in the GUI at runtime. So far, so good; I know how to do all that.</p> <p>Since I'll already have a DataTemplate that can transform my POCO into a WPF visual tree, is there any way to get the Visual Studio designer to play along, and <strong>have the Design View show me the POCO+DataTemplate's resulting GUI, as I edit the POCO's XAML?</strong> (Obviously the designer wouldn't know how to <em>edit</em> the "design view"; I wouldn't expect the Toolbox or click-and-drag to work on the design surface. That's fine -- I just want to see a preview as I edit.)</p> <p>If you're curious, the POCOs in question would be level maps for a game. (At this point, I'm not planning to ship an end-user map editor, so I'll be doing all the editing myself in Visual Studio.) So the XAML isn't WPF GUI objects like Window and UserControl, but it's still not something where I would want to blindly bang out some XAML and hope for the best. I want to see what I'm doing (the GUI map) as I'm doing it.</p> <p>If I try to make a XAML file whose root is my map object, the designer shows "Intentionally Left Blank - The document root element is not supported by the visual designer." It does this even if I've defined a DataTemplate in App.xaml's <code>&lt;Application.Resources&gt;</code>.</p> <p>But I know the designer <em>can</em> show my POCO, when it's inside a WPF object. One possible way of accomplishing what I want would be to have a ScratchUserControl that just contains a ContentPresenter, and write my POCO XAML inside that ContentPresenter's Content property, e.g.:</p> <pre><code>&lt;UserControl ...&gt; &lt;ContentPresenter&gt; &lt;ContentPresenter.Content&gt; &lt;Maps:Map .../&gt; &lt;/ContentPresenter.Content&gt; &lt;/ContentPresenter&gt; &lt;/UserControl&gt; </code></pre> <p>But then I would have to be sure to copy the content back out into its own file when I was done editing, which seems tedious and error-prone, and I don't like tedious and error-prone. And since I <em>can</em> preview my XAML this way, isn't there some way to do it without the UserControl?</p> http://stackoverflow.com/questions/1252161/detect-whether-a-font-supports-variants-like-superscript-and-subscript 0 Detect whether a font supports variants (like superscript and subscript) Joe White 2009-08-09T20:14:07Z 2009-08-10T22:15:15Z <p>WPF has the <a href="http://msdn.microsoft.com/en-us/library/system.windows.documents.typography.variants.aspx" rel="nofollow">Typography.Variants</a> attached property that lets you do superscript and subscript. However, it only works for some fonts. For other fonts, the variant is utterly ignored, and the text is shown normally. (Code sample and screenshot <a href="http://stackoverflow.com/questions/1252114/superscript-subscript-in-hyperlink-in-wpf">here</a>)</p> <p>Since it silently falls back to a no-op, I have no idea that anything went wrong; but my user will see lousy behavior.</p> <p><strong>Is there any way that I can programmatically detect whether a given font supports Typography.Variants?</strong> If so, I could provide more meaningful behavior if the user selected a non-variant-supporting font for something that needs superscripts/subscripts.</p> <p>I looked at <a href="http://msdn.microsoft.com/en-us/library/system.windows.media.glyphtypeface_members.aspx" rel="nofollow">GlyphTypeface</a>, since it's the one you use to query whether a font can be embedded, but I didn't see anything there about variants. I also didn't see anything obvious on <a href="http://msdn.microsoft.com/en-us/library/system.windows.media.fontfamily_members.aspx" rel="nofollow">FontFamily</a>, and the only thing I could find on <a href="http://msdn.microsoft.com/en-us/library/system.windows.documents.typography_members.aspx" rel="nofollow">Typography</a> was the Variants attached property itself (and its getters and setters).</p> http://stackoverflow.com/questions/1252889/changing-hyperlink-foreground-without-losing-hover-color 2 Changing Hyperlink foreground without losing hover color Joe White 2009-08-10T02:25:24Z 2009-08-10T02:36:24Z <p>I'm writing a WPF app, and I want some of my hyperlinks to be the default blue, and others to be green. No problem -- I can just set <code>Foreground</code>:</p> <pre><code>&lt;TextBlock&gt;&lt;Hyperlink Foreground="#0C0"&gt;Mark as done&lt;/Hyperlink&gt;&lt;/TextBlock&gt; </code></pre> <p>The trouble is, when I do this, the hover effect goes away. In a normal Hyperlink, when I move the mouse over the link, it turns red, and when I move the mouse away, it goes back to blue. But in a Hyperlink with the Foreground property assigned, it's always that color -- the red-on-hover is totally suppressed.</p> <p>How can I change a Hyperlink's color, without losing the default hover behavior and color?</p> http://stackoverflow.com/questions/1252507/making-part-of-a-flowdocument-non-selectable 0 Making part of a FlowDocument non-selectable Joe White 2009-08-09T22:38:39Z 2009-08-10T02:14:58Z <p>I want to make a FlowDocument that contains both user-specified content, and hyperlinks for manipulating that content. I want the user to be able to highlight the content with the mouse, and copy it to the clipboard. Is there any way to allow that, while preventing the user from highlighting and copying the hyperlinks?</p> <p>(Note that the user won't edit this FlowDocument directly -- it's just a nice means of displaying content they've entered elsewhere.)</p> <p>For example:</p> <pre><code>&lt;FlowDocumentScrollViewer&gt; &lt;FlowDocument&gt; &lt;Paragraph&gt; Blah blah blah blah, blah blah blah -- blah blah blah blah blah blah. Blah, blah blah Blah blah blah, blah blah blah blah-blah blah. (&lt;Hyperlink&gt;Edit&lt;/Hyperlink&gt; - &lt;Hyperlink&gt;Delete&lt;/Hyperlink&gt; &lt;/Paragraph&gt; &lt;/FlowDocument&gt; &lt;/FlowDocumentScrollViewer&gt; </code></pre> <p>The user can use the mouse to highlight the "Version 1.0" text, and copy it to the clipboard. This is good. However, they can also highlight the hyperlinks, and copy those. I'd rather avoid that, for two reasons:</p> <ul> <li>The hyperlinks aren't really part of the content, so what good are they on the clipboard or in another program?</li> <li>I also expect to have other hyperlinks on the form that <em>aren't</em> part of the FlowDocument, and it would be poor form for some hyperlinks to be highlightable and others not.</li> </ul> <p>I like having these hyperlinks word-wrap with the paragraph, and always appear just to the right of the last line of wrapped text. As far as I know, that means they need to be part of the FlowDocument. But that's just an artifact of layout -- I'd be just as happy having them outside if I could get the same layout. I don't want the hyperlinks to be highlightable, any more than I would want a dialog's OK and Cancel buttons to be highlightable. Is there any way to make that happen?</p> http://stackoverflow.com/questions/531621/how-to-make-a-simple-hyperlink-in-xaml/1252560#1252560 0 Answer by Joe White for How to make a simple hyperlink in XAML? Joe White 2009-08-09T23:06:57Z 2009-08-09T23:06:57Z <p>You can't add a Hyperlink to a StackPanel -- you'll get a runtime error. (Actually, I'm kinda surprised it's not a compile-time error.) That's because Hyperlink doesn't live in the "controls" side of WPF with <code>&lt;Button&gt;</code> and <code>&lt;StackPanel&gt;</code> and other things that are laid out on rectangular chunks of screen and descend from <code>UIElement</code>. Instead, it lives in the "text" side of things, with <code>&lt;Bold&gt;</code> and <code>&lt;Run&gt;</code> and <code>&lt;Paragraph&gt;</code> and other generally texty things that word-wrap and flow in lines and paragraphs and descend from <code>TextElement</code>.</p> <p>Once you realize that there are two separate class hierarchies with different layout behaviors, it makes sense that Hyperlink would be on the "text" side of things (makes it easy to e.g. have a paragraph with a hyperlink in the middle, and even for that hyperlink to wrap across a line break).</p> <p>But no, it's not so discoverable when you're starting out.</p> <p>To mix the two worlds, and use a hyperlink as a control, all you need to do is put it in a TextBlock. TextBlock is a control-ish thing (i.e., can go in a StackPanel) that contains text-ish things (i.e., can contain a Hyperlink):</p> <pre><code>&lt;TextBlock&gt;&lt;Hyperlink Click="buttonClose_Click"&gt;Close&lt;/Hyperlink&gt;&lt;/TextBlock&gt; </code></pre> http://stackoverflow.com/questions/1252114/superscript-subscript-in-hyperlink-in-wpf 1 Superscript / subscript in hyperlink in WPF Joe White 2009-08-09T19:59:56Z 2009-08-09T19:59:56Z <p>I'm trying to make a Hyperlink that contains text with super- and/or subscripts. I've found two ways to do this, and both of them suck.</p> <p>Solution #1: use <a href="http://msdn.microsoft.com/en-us/library/system.windows.documents.typography.variants.aspx" rel="nofollow">Typography.Variants</a>. This gives a terrific superscript... for some fonts.</p> <pre><code>&lt;StackPanel&gt; &lt;TextBlock FontFamily="Palatino Linotype" FontSize="30"&gt; &lt;Hyperlink&gt;R&lt;Run Typography.Variants="Superscript"&gt;2&lt;/Run&gt;&lt;/Hyperlink&gt; (Palatino Linotype) &lt;/TextBlock&gt; &lt;TextBlock FontFamily="Segoe UI" FontSize="30"&gt; &lt;Hyperlink&gt;R&lt;Run Typography.Variants="Superscript"&gt;2&lt;/Run&gt;&lt;/Hyperlink&gt; (Segoe UI) &lt;/TextBlock&gt; &lt;/StackPanel&gt; </code></pre> <blockquote> <p><img src="http://www.excastle.com/misc/wpf-superscript-fontvariants.png"/></p> </blockquote> <p>Looks beautiful in Palatino Linotype; but for fonts that don't support variants, it's simply ignored, no emulation is done, and the text is full-size, at-baseline, 100% normal. I would prefer to allow my end-users to select the font they want to use, and still have super/subscripts work.</p> <p>Solution #2: use <a href="http://msdn.microsoft.com/en-us/library/system.windows.documents.inline.baselinealignment.aspx" rel="nofollow">BaselineAlignment</a>. This raises or lowers the text appropriately, though unlike solution #1, I have to decrease the font size manually. Still, it's effective for all fonts. The problem is the Hyperlink's underline.</p> <pre><code>&lt;TextBlock FontSize="30" FontFamily="Palatino Linotype"&gt; &lt;Hyperlink&gt; R&lt;Run BaselineAlignment="Superscript" FontSize="12pt"&gt;2&lt;/Run&gt; &lt;/Hyperlink&gt; &lt;/TextBlock&gt; </code></pre> <blockquote> <p><img src="http://www.excastle.com/misc/wpf-superscript-baselinealignment.png"/></p> </blockquote> <p>The underline is raised and lowered along with the text, which looks pretty wretched. I'd rather have a continuous, unbroken underline under the whole Hyperlink. (And before anyone suggests a Border, I'd also like the Hyperlink to be able to word-wrap, with all of the words underlined, including the first row.)</p> <p>Is there any way to make superscript and subscript work in WPF, in any font, without looking laughably bad when underlined?</p> http://stackoverflow.com/questions/1239407/will-a-delphi-form-always-fire-onresize-when-its-shown 2 Will a Delphi form always fire OnResize when it's shown? Joe White 2009-08-06T14:50:33Z 2009-08-06T15:00:51Z <p>If I create a new Delphi form, hook its OnResize event, and run the app, OnResize is fired before the window is shown. What I don't know is whether this will always happen, for any window.</p> <p>(For anyone familiar with the Windows API, I've traced it to the ShowWindow call in TCustomForm.ShowingChanged (Forms.pas line 5503 in Delphi 2007), which apparently triggers a <code>WM_SIZE</code>... at least, for a new window with no other properties set. I haven't seen it documented that ShowWindow always fires <code>WM_SIZE</code>, so I don't know whether I can count on this or not.)</p> <p>So: <strong>Can I rely on a TForm <em>always</em> firing OnResize when it's first shown?</strong> Or are there circumstances (maybe if the window is non-resizable, maybe if the Position property has certain values, etc.) where OnResize might <em>not</em> fire before the window is first shown?</p> http://stackoverflow.com/questions/1227226/why-cant-i-call-a-method-in-my-views-code-behind-from-the-views-presenter/1227255#1227255 0 Answer by Joe White for Why can't I call a method in my View's code-behind from the view's presenter? Joe White 2009-08-04T12:35:50Z 2009-08-04T12:35:50Z <p>You don't show your PresenterBase class, but the PresenterBase.View property probably isn't of type SmartFormView. I'm not sure what type it is, but I'm guessing UserControl or one of its ancestors.</p> <p>Here are some options:</p> <ol> <li>Make a base class for all of your Views, put a virtual BeforeLoad method on that base class, and make your PresenterBase's View property be of that type.</li> <li>Insert a typecast, as Martin suggested (this is more of a hack than a solution, IMHO).</li> <li><p>Make your base class generic on the view type, so that in SmartFormPresenter, the View property really <em>can</em> be of type SmartFormView. E.g.:</p> <pre><code>public class PresenterBase&lt;T&gt; { ... public T View { get; set; } ... </code></pre></li> </ol> http://stackoverflow.com/questions/1163013/what-is-the-themeinfo-attribute-for 1 What is the ThemeInfo attribute for? Joe White 2009-07-22T04:07:38Z 2009-07-22T06:17:57Z <p>Whenever I create a new WPF application or WPF user control library, the <code>AssemblyInfo.cs</code> file includes the following attribute:</p> <pre><code>[assembly: ThemeInfo( ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located //(used if a resource is not found in the page, // or application resource dictionaries) ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located //(used if a resource is not found in the page, // app, or any theme specific resource dictionaries) )] </code></pre> <p>What is this <code>ThemeInfo</code> attribute for? Will I break anything if I remove it?</p> http://stackoverflow.com/questions/1857289/why-does-uselayoutrounding-not-seem-to-work-with-viewbox/1857359#1857359 Comment by Joe White on Why does UseLayoutRounding not seem to work with Viewbox? Joe White 2009-12-07T13:48:58Z 2009-12-07T13:48:58Z That does seem to do what I want, but why does UseLayoutRounding not do the same thing? I want to understand ULR so I can use Silverlight too. Isn't ULR supposed to round to the nearest pixel? http://stackoverflow.com/questions/1081580/how-to-set-wpf-windows-startup-clientsize/1134580#1134580 Comment by Joe White on How to set WPF window's startup ClientSize? Joe White 2009-10-17T22:00:24Z 2009-10-17T22:00:24Z I finally got back to a project where I needed this, and your first solution does exactly what I want. Thanks! http://stackoverflow.com/questions/1557406/stepping-into-a-p-invoke-call-in-disassemby-view/1557886#1557886 Comment by Joe White on Stepping into a P/Invoke call in disassemby view Joe White 2009-10-13T14:13:58Z 2009-10-13T14:13:58Z I know pretty much nothing about writing C++/CLI code... got any links that could help get me started with this strategy? http://stackoverflow.com/questions/1522855/remove-dotnet-menu-dropdown-grey-area-for-icons Comment by Joe White on Remove DotNET menu dropdown grey area for icons Joe White 2009-10-05T23:09:53Z 2009-10-05T23:09:53Z Usual first question: WinForms or WPF? http://stackoverflow.com/questions/1505983/system-wide-keyboard-hook-on-vista-and-later Comment by Joe White on System wide keyboard hook on Vista and later Joe White 2009-10-01T19:43:22Z 2009-10-01T19:43:22Z According to <a href="http://pinvoke.net/default.aspx/Enums/HookType.html" rel="nofollow">pinvoke.net/default.aspx/Enums/&hellip;</a>, yes, <code>WH&#95;KEYBOARD&#95;LL</code> is 13. http://stackoverflow.com/questions/1426827/c-video-playback Comment by Joe White on C# Video Playback Joe White 2009-09-15T13:27:44Z 2009-09-15T13:27:44Z If you're not set on WinForms, this seems like something WPF would be good at. You can have a brush whose contents are a video (which will magically keep playing wherever you use the brush), and you can do transforms, so I'd guess it wouldn't be too hard to have a control that's filled with a rectangular subset of the currently-playing video. http://stackoverflow.com/questions/1425969/what-if-i-need-to-use-the-ui-thread-of-a-wpf-application-to-do-a-long-processing/1426015#1426015 Comment by Joe White on What if I need to use the UI thread of a WPF application to do a long processing task on a UI element, but also update a progress bar on the same window? Joe White 2009-09-15T13:17:21Z 2009-09-15T13:17:21Z You can't create a control on thread A and then parent it to a control you created on thread B. If you try, you'll get an InvalidOperationException: &quot;The calling thread cannot access this object because a different thread owns it.&quot; Everything inside a window has to be on the same thread. That said, you could make this work if the progress bar thread had its own window. http://stackoverflow.com/questions/1426287/a-property-question-about-wpf Comment by Joe White on A property question about WPF Joe White 2009-09-15T13:04:40Z 2009-09-15T13:04:40Z This could also (and usually would) be rewritten as: <code>&lt;TextBlock Text=&quot;{Binding Path=Something}&quot;/&gt;</code> http://stackoverflow.com/questions/1416126/why-is-a-nullablet-not-a-valid-custom-attribute-paramater-when-t-is/1416175#1416175 Comment by Joe White on Why is a Nullable<T> not a valid Custom Attribute Paramater when T is? Joe White 2009-09-12T21:27:09Z 2009-09-12T21:27:09Z The question wasn't &quot;how do I do this&quot;, the question was &quot;why&quot;. This in no way answers the why. http://stackoverflow.com/questions/1380112/why-cant-i-use-the-name-attribute-on-usercontrol-in-the-same-assembly/1380207#1380207 Comment by Joe White on Why can't I use the Name attribute on UserControl in the same assembly? Joe White 2009-09-04T16:26:00Z 2009-09-04T16:26:00Z If you changed the name, you would still get the same error. Read the error message again. It has nothing to do with name collisions. http://stackoverflow.com/questions/1373077/dependency-property-correct-usage/1373194#1373194 Comment by Joe White on Dependency Property correct usage Joe White 2009-09-03T12:51:25Z 2009-09-03T12:51:25Z Of course, if you did that, you wouldn't be able to use databinding or animation on the parent's property. http://stackoverflow.com/questions/1351546/passing-parameters-to-a-wpf-page-via-its-uri/1352320#1352320 Comment by Joe White on Passing parameters to a WPF Page via its Uri Joe White 2009-08-30T12:03:04Z 2009-08-30T12:03:04Z Dude, did you post this in answer to the wrong question? I already know about commands. How does this let my new Page access its querystring? http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114530#114530 Comment by Joe White on What are Code Smells? What is the best way to correct them? Joe White 2009-08-28T17:48:54Z 2009-08-28T17:48:54Z Your sample code isn't reading properties, it's calling methods. In languages that have first-class properties (e.g. C#), the convention is that a property getter shouldn't do anything particularly expensive, and should never have side effects. (If it violates those conventions, then <i>that's</i> a smell.) So reading a property repeatedly won't be a problem in the vast majority of cases. In the rest, profile, then fix. http://stackoverflow.com/questions/1347940/notify-parent-thread-when-child-has-performed-a-certain-action-c/1348116#1348116 Comment by Joe White on Notify parent thread when child has performed a certain action [C#] Joe White 2009-08-28T17:19:22Z 2009-08-28T17:19:22Z Hmm. No idea; I've never tried it, and I don't know much about its implementation, so I couldn't say. So one of the other answers may be a better bet. http://stackoverflow.com/questions/1240767/under-what-conditions-will-a-tform-fire-onresize-on-show/1282955#1282955 Comment by Joe White on Under what conditions will a TForm fire OnResize on show? Joe White 2009-08-16T03:52:03Z 2009-08-16T03:52:03Z Oh man, that's a good point. Wouldn't be the first time we've had a bug that only manifests under the Classic theme in XP, and not in Luna.