Joe White
|
Registered User
|
|
Dec 8 |
accepted | Should I change the naming convention for my unit tests? |
|
Dec 8 |
awarded | ● Nice Answer |
|
Dec 7 |
comment |
Why does UseLayoutRounding not seem to work with Viewbox? 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? |
|
Dec 7 |
asked | Why does UseLayoutRounding not seem to work with Viewbox? |
|
Dec 6 |
awarded | ● Mortarboard |
|
Dec 3 |
asked | WiX uninstaller: restart service if present |
|
Nov 10 |
revised |
Why does GroupBox not have a MouseMove event? Fixed formatting that worked in the previewer, but not in the page itself |
|
Nov 10 |
asked | Why does GroupBox not have a MouseMove event? |
|
Nov 6 |
awarded | ● Necromancer |
|
Oct 27 |
awarded | ● Popular Question |
|
Oct 17 |
comment |
How to set WPF window’s startup ClientSize? I finally got back to a project where I needed this, and your first solution does exactly what I want. Thanks! |
|
Oct 16 |
awarded | ● Necromancer |
|
Oct 13 |
comment |
Stepping into a P/Invoke call in disassemby view I know pretty much nothing about writing C++/CLI code... got any links that could help get me started with this strategy? |
|
Oct 12 |
asked | Stepping into a P/Invoke call in disassemby view |
|
Oct 5 |
comment |
Remove DotNET menu dropdown grey area for icons Usual first question: WinForms or WPF? |
|
Oct 1 |
comment |
System wide keyboard hook on Vista and later According to pinvoke.net/default.aspx/Enums/…, yes, WH_KEYBOARD_LL is 13. |
|
Sep 28 |
asked | Icons on MainMenu/ContextMenu without losing theming |
|
Sep 21 |
accepted | A concise way to define properties for MVVM data binding in C# WPF |
|
Sep 15 |
comment |
C# Video Playback 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. |
|
Sep 15 |
comment |
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? 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: "The calling thread cannot access this object because a different thread owns it." 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. |
|
Sep 15 |
comment |
A property question about WPF This could also (and usually would) be rewritten as: <TextBlock Text="{Binding Path=Something}"/> |
|
Sep 12 |
comment |
Why is a Nullable<T> not a valid Custom Attribute Paramater when T is? The question wasn't "how do I do this", the question was "why". This in no way answers the why. |
|
Sep 4 |
comment |
Why can’t I use the Name attribute on UserControl in the same assembly? 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. |
|
Sep 3 |
comment |
Dependency Property correct usage Of course, if you did that, you wouldn't be able to use databinding or animation on the parent's property. |
|
Aug 30 |
comment |
Passing parameters to a WPF Page via its Uri 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? |
|
Aug 29 |
asked | Passing parameters to a WPF Page via its Uri |
|
Aug 28 |
comment |
What are Code Smells? What is the best way to correct them? 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 that's a smell.) So reading a property repeatedly won't be a problem in the vast majority of cases. In the rest, profile, then fix. |
|
Aug 28 |
comment |
Notify parent thread when child has performed a certain action [C#] 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. |
|
Aug 28 |
answered | A concise way to define properties for MVVM data binding in C# WPF |
|
Aug 28 |
answered | A concise way to define properties for MVVM data binding in C# WPF |
|
Aug 28 |
answered | Notify parent thread when child has performed a certain action [C#] |
|
Aug 28 |
answered | Convert a positive number to negative in C# |
|
Aug 16 |
awarded | ● Tumbleweed |
|
Aug 16 |
comment |
Under what conditions will a TForm fire OnResize on show? 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. |
|
Aug 15 |
comment |
stability of quicksort! If it's not stable when all elements are the same, then it's not stable. |
|
Aug 15 |
revised |
Delphi certifications Corrected 'certificate' to 'certification' |
|
Aug 13 |
comment |
Another question about premature optimization @Mark, he said 97%. Your die roll would give 99.99934375%. Knuth would know to use percentile dice. |
|
Aug 13 |
answered | What is your preferred style of product version number and why? |
|
Aug 12 |
comment |
Automating Visual Studio instance from separate process I probably could make a VS add-in if that's the only way to do it, but I'd feel silly going to that much pain, and restarting VS that many times, if there's already a way to automate VS from outside. |
|
Aug 12 |
comment |
Automating Visual Studio instance from separate process Yes, but (a) I want Visual Studio to know it's been rebuilt so that a subsequent Run would start immediately, and (b) Build was just an example -- it's not the only command I want to issue. I also eventually want to query things out of VS, like editor save status and so on. But a simple question like "issue commands by name" seemed like the best place to start. |
|
Aug 12 |
asked | Automating Visual Studio instance from separate process |
|
Aug 12 |
comment |
Automate Windows From Button Windows Forms is unrelated to ASP.NET. Which do you want to know about? |
|
Aug 12 |
answered | Why can static classes not implement interfaces? |
|
Aug 12 |
comment |
Is there an ItemsControl equivalent for text content? Awesome. The article won't work with <List> but it only took a small tweak to extend it -- see my edit to the question. Thanks! |
|
Aug 12 |
revised |
Is there an ItemsControl equivalent for text content? Added details on making the article's code work with List. |
|
Aug 11 |
comment |
Will stock WPF get a menustrip control? What do you need that the WPF Menu can't already do? |
|
Aug 11 |
comment |
Subversion - should anyone be developing off the trunk? @Aiden, what do you mean? You can't commit to the working copy. If you're doing extensive development, sooner or later you'll want to commit, and if that commit is going to destabilize the code, it makes sense to be committing to a branch instead of to trunk. |
|
Aug 11 |
comment |
Is there an ItemsControl equivalent for text content? Sure, I got that. But if I'm generating a bulleted list, I don't want to replace the StackPanel with a WrapPanel. |
|
Aug 11 |
comment |
Using XAML + designer to edit Plain Old CLR Objects? I was hoping to be able to see the designer as I edited the POCO, whereas this would require me to Ctrl+Tab back and forth between the ResourceDictionary.xaml and the ScratchControl.xaml. But it may be the best VS can do. |
|
Aug 10 |
comment |
Detect whether a font supports variants (like superscript and subscript) Wow. So the variant actually causes my "2" (or "th" or whatever else) to be replaced by different characters from the same font? The documentation doesn't even hint about how it works. |
