User Jeff B - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T19:22:54Zhttp://stackoverflow.com/feeds/user/25879http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1717098/how-to-listen-for-affectsparentarrange-events-when-youre-not-the-parent1How to listen for AffectsParentArrange events when you're not the parentJeff B2009-11-11T18:13:55Z2009-11-13T17:02:14Z
<p>There is an attribute "AffectsParentArrange" that implicitly invalidates the parent's layout - but I want to attach an event handler to the "event" triggered by that attribute.</p>
<p>When a child property with the attribute changes, the parent's arrangement is invalidated.</p>
<p>I have a custom control (which is not the immediate parent) that needs to receive an event.</p>
<p>Does anyone know of an event that can be used here?</p>
<p>Do I need to provide a custom parent that overrides a method and fires an event?</p>
http://stackoverflow.com/questions/1715716/wpf-listboxitem-not-aligning-items-properly/1717277#17172770Answer by Jeff B for WPF Listboxitem not aligning items properlyJeff B2009-11-11T18:47:16Z2009-11-11T18:47:16Z<p>None of the DataTemplate examples I can find state this explicitly, but it <em>appears</em> to be the case that DataTemplates only apply when your list items come from an ItemsSource binding. If you directly populate the Items collection, the DataTemplate isn't used.</p>
<p>Adding an ItemTemplate in Expression Blend, the command text reads "Generated Item Template" - which seems to mean the template is only used when the item is generated indirectly.</p>
<p>And <em>every</em> example I can find uses a data binding for the item source.</p>
http://stackoverflow.com/questions/1107334/using-a-xaml-file-as-a-vector-image-source/1575486#15754860Answer by Jeff B for Using a XAML file as a vector Image SourceJeff B2009-10-15T22:28:25Z2009-10-15T22:28:25Z<p>Embed the XAML resource (DrawingImage) with type 'Resource'. It is then not a separate file and can be directly referenced via a URI, as in your original example -- BUT the URI is non-trivial. You have to figure out Microsoft's "pack" URI syntax and use that.</p>
http://stackoverflow.com/questions/300656/change-font-increment-for-wpf-richtextbox0Change font increment for WPF RichTextBoxJeff B2008-11-19T00:25:51Z2009-08-20T16:00:03Z
<p>I'm using a WPF RichTextBox control to input some text with user formatting capability, including font size adjustment. The built-in commands for IncreaseFontSize and DecreaseFontSize will adjust the font size by 0.75pt each time the command is executed. I would like to increase the granularity to 2pt.</p>
<p>Can this be done without implementing my own custom commands?</p>
http://stackoverflow.com/questions/1211308/why-would-my-visual-studio-2008-close-everytime-i-open-a-xaml-file/1213184#12131842Answer by Jeff B for Why would my Visual Studio 2008 close everytime I open a .xaml file?Jeff B2009-07-31T15:28:02Z2009-07-31T15:28:02Z<p>I've been getting the same issue whenever I try to access project settings for a C# project.</p>
<p>Found additional information about this:</p>
<p>Here: <a href="http://blog.fryhard.com/archive/2008/11/26/visual-studio-2008-closes-at-build-outlook-2007-add-in.aspx" rel="nofollow">http://blog.fryhard.com/archive/2008/11/26/visual-studio-2008-closes-at-build-outlook-2007-add-in.aspx</a></p>
<p>And here: <a href="http://social.msdn.microsoft.com/Forums/en-US/vsto/thread/99e124d0-c5d7-49c0-b1dd-71328f9a6571/" rel="nofollow">http://social.msdn.microsoft.com/Forums/en-US/vsto/thread/99e124d0-c5d7-49c0-b1dd-71328f9a6571/</a></p>
<p>Apparently it's a bug in the core CLR engine that causes the entire CLR to crash if certain types of assemblies are loaded in a certain order.</p>
<p>Most of the time it appears to be directly related to the Visual Studio add-in called PowerCommands - uninstalling PowerCommands will make the problem go away.</p>
<p>And (we hope) it's supposed to be fixed for .Net 4.</p>
http://stackoverflow.com/questions/1155285/xaml-tooltips-are-being-clipped/1165641#11656410Answer by Jeff B for XAML tooltips are being clippedJeff B2009-07-22T14:23:54Z2009-07-22T14:23:54Z<p>Ok- here's what I found as a workaround:</p>
<p>The problem with ToolTips goes away when the window is also made TopMost.</p>
<p>But I don't want my window to be topmost, so I only do it when my window has keyboard focus:</p>
<pre><code>private void Window_GotKeyboardFocus(object sender, KeyboardFocusChangedEventArgs e)
{
this.Topmost = true;
}
private void Window_LostKeyboardFocus(object sender, KeyboardFocusChangedEventArgs e)
{
this.Topmost = false;
}
</code></pre>
<p>Then I use a binding to enable each ToolTip only when my window is Topmost:</p>
<pre><code>ToolTipService="{Binding ElementName=MainWindow, Path=Topmost}"
</code></pre>
<p>This turns off the ToolTip except when it works right.
Don't really need tooltips when my window isn't in focus anyway.</p>
<p>Only annoying thing now is that the on/off binding has to be done on every element that defines a Tooltip.</p>
http://stackoverflow.com/questions/1155285/xaml-tooltips-are-being-clipped0XAML tooltips are being clippedJeff B2009-07-20T19:00:34Z2009-07-22T14:23:54Z
<p>I am trying to make a WPF app (regular Windows app, not XBAP or Silverlight).
I want the main app window to support transparency, and show through the desktop below.</p>
<p>But when I specify ToolTip text on a Button, the ToolTip appears <em>beneath</em> (z-order) the main window!</p>
<p>I have a screenshot where:
* Another app overlapps and blocks view of the partially transparent main window.
* The tooltip from my button appears in front of the other app.
* Where the tooltip is not in front of the other app, it is <em>behind</em> the partial transparency.</p>
<p>I read elsewhere that this is a known problem with the WPF engine for 32-bit XP and does not occur in Vista.</p>
<p>What I am looking for is a fix/workaround.</p>
http://stackoverflow.com/questions/182112/what-are-some-funny-loading-statements-to-keep-users-amused/183312#18331248Answer by Jeff B for What are some funny loading statements to keep users amused?Jeff B2008-10-08T15:12:01Z2009-03-10T21:34:16Z<p>"Are we there yet?"</p>
<p>"Insert quarter"</p>
<p>"1,000,000 bottles of beer on the wall..."</p>
<p>"Hang on a sec, I know your data is here somewhere"</p>
<p>"Well, what are you waiting for?"</p>
<p>"Are we there yet?"</p>
<p>"Have you lost weight?"</p>
<p>"Congratulations!"</p>
<p>"Are we there yet?"</p>
http://stackoverflow.com/questions/342116/aligning-content-in-a-wpf-viewbox1Aligning content in a WPF ViewboxJeff B2008-12-04T21:16:46Z2008-12-22T19:29:06Z
<p>I have a Viewbox that is using Stretch=Uniform in order to not distort the content.
However... when the frame window is wider or taller than the content, the Viewbox content is always centered.</p>
<p>I cannot seem to find any content alignment options on the Viewbox.</p>
<p>Is there a way to do this?</p>
http://stackoverflow.com/questions/342037/testing-classes/342066#3420661Answer by Jeff B for testing classesJeff B2008-12-04T21:06:09Z2008-12-04T21:06:09Z<p>Those are good. I have usually also wanted the test class to not only be spearate from the original, but also in a complete different DLL/EXE, as well as testing the "real" compiled class from the "real" DLL/EXE into which it was compiled.</p>
<p>The one additional technique I've found is to re-define the class within the testing tool. Copy the class definition exactly, but make everything public. This allows the test tool to have 'white-box' access to the class, but the actual implementation is still from the real class code.</p>
<p>i.e.</p>
<pre><code>class myClass
{
private:
int foo;
public:
myClass() { foo = 0; }
}
</code></pre>
<p>and then:</p>
<pre><code>class test_myClass
{
public:
int foo;
public:
test_myClass();
};
void test()
{
myClass *c = new myClass();
test_myClass *t = (test_myClass*)c;
// All methods are called on c.
// White-box access is available through t.
};
</code></pre>
<p>Oh... and DevStudio 2008 now has some really cool unit testing capabilities, including the ability to declare a 'friend' <em>assembly</em>, which allows white-box access to all your internal classes in the assembly being tested.</p>
http://stackoverflow.com/questions/300660/how-to-find-the-index-of-the-first-char-in-a-string-that-is-not-in-a-list/300689#3006895Answer by Jeff B for How to find the index of the first char in a string that is not in a list.Jeff B2008-11-19T00:46:01Z2008-11-19T00:55:07Z<p>This works:</p>
<pre><code>public static char FindFirstNotAny(this string value, params char[] charset)
{
return value.TrimStart(charset)[0];
}
</code></pre>
http://stackoverflow.com/questions/270250/help-getting-qtp-to-identify-a-control1Help getting QTP to identify a controlJeff B2008-11-06T20:58:19Z2008-11-07T17:05:34Z
<p>We're trying to use QTP (QuickTest Professional) to auto-test a legacy C++ application.</p>
<p>However, the main window for the app is composed of several IDENTICAL panels. Each panel has a unique title.</p>
<p>If I view the window in Spy++ (comes with DevStudio), I see:</p>
<pre><code>+ Window <hwnd> "Window Title" taskwindowclass
+ Window <hwnd> "Panel A" childwindowclass
+ Window <hwnd> "OK" Button
+ Window <hwnd> "Panel B" childwindowclass
+ Window <hwnd> "OK" Button
</code></pre>
<p>In QTP's Object Spy however, the hierarchy shows as:</p>
<pre><code>+ Window: Window Title
+ WinButton: OK
</code></pre>
<p>It doesn't even show that there is an intermediate panel.</p>
<p>Does anybody know a way to get the window "path" in order to identify each control?
i.e. so the controls identify as:</p>
<pre><code>Button A: "Window Title/Panel A/OK"
Button B: "Window Title/Panel B/OK"
</code></pre>
http://stackoverflow.com/questions/270263/converting-to-int16-int32-int64-how-do-you-know-which-one-to-choose/270273#2702730Answer by Jeff B for Converting to int16, int32, int64 - how do you know which one to choose?Jeff B2008-11-06T21:06:07Z2008-11-06T21:06:07Z<p>All computers are finite. You need to define an upper limit based on what you think your users requirements will be.</p>
<p>If you really have no upper limit and want to allow 'unlimited' values, try adding the .Net Java runtime libraries to your project, which will allow you to use the java.math.BigInteger class - which does math on nearly-unlimited size integer.</p>
<p>Note: The .Net Java libraries come with full DevStudio, but I don't think they come with Express.</p>
http://stackoverflow.com/questions/205782/how-to-fix-code-complete-in-visual-studio-20081How to fix code-complete in Visual Studio 2008Jeff B2008-10-15T18:04:19Z2008-11-02T00:49:32Z
<p>The code-complete feature in Visual Studio is very useful, and it still works for C# and C++ code - but no longer works for XAML (XML) editing.</p>
<p>Is there a setting somewhere that can re-enable this? My co-workers still have it working.</p>
http://stackoverflow.com/questions/184292/wpf-routed-events-across-element-tree-branches/184383#1843832Answer by Jeff B for WPF Routed Events Across Element Tree BranchesJeff B2008-10-08T19:10:05Z2008-10-08T19:10:05Z<p>The best mechanism is to refactor and separate the data view from the data model.</p>
<p>Create a data model that provides DependencyProperty properties (rather than standard C# properties) for each data point, but does not provide a UI. The values in the data model can affect each other when modified.</p>
<p>You can then bind each WPF element to the appropriate DependencyProperty from the data model. Modify the value in one element and all other elements are updated to reflect any data model changes in the bound properties.</p>
http://stackoverflow.com/questions/184265/what-system-do-you-use-to-encrypt-files-for-a-group-of-people-os-agnostic-prefer/184308#1843080Answer by Jeff B for What system do you use to encrypt files for a group of people (OS agnostic prefered)?Jeff B2008-10-08T18:56:09Z2008-10-08T18:56:09Z<p>The difficulty of this problem is why many businesses default to using OS-specific solutions, such as Active Directory.</p>
<p>For OS-agnostic, you have to re-create a lot of user-management stuff that the specific OS and/or Network vendors have already built.</p>
<p>But it can be done. For the encryption itself - go with AviewAnew's answer.</p>
http://stackoverflow.com/questions/183656/how-to-digitally-sign-a-document/183760#1837602Answer by Jeff B for How to Digitally "Sign" a documentJeff B2008-10-08T16:51:33Z2008-10-08T16:51:33Z<p>Each person who might sign a digital document needs a public/private key pair assigned to them, that cannot be forged.</p>
<p>Then you've got to find a way to keep each person's private key secure - how can that person use it, but nobody else? There is a lot of creative work going on in this area right now. Some of it requires each person to carry a hardware key (card, thumb drive, whatever) which must be used to sign each document. Sometimes the private keys are stored in a database and the signer must provide a password to sign a document.</p>
<p>A key pair is applied to a document by creating a hash of the document and then encrypting the hash using the private key. The encrypted hash is the 'digital signature' and is attached to the document. Since nobody other than the signer can use the private key (supposedly) you know that the signature is authentic.</p>
<p>You can verify the signature by decrypting the hash using the public key, which is available to everyone. If the decrypted hash does not match, then either the document was modified after it was signed, or it was signed by someone else.</p>
http://stackoverflow.com/questions/182600/should-one-use-or-in-a-for-loop/183266#1832661Answer by Jeff B for Should one use < or <= in a for loopJeff B2008-10-08T15:03:41Z2008-10-08T15:03:41Z<p>The '<' and '<=' operators are exactly the same performance cost.</p>
<p>The '<' operator is a standard and easier to read in a zero-based loop.</p>
<p>Using ++i instead of i++ improves performance in C++, but not in C# - I don't know about Java.</p>
http://stackoverflow.com/questions/183108/is-object-code-generated-for-unused-template-class-methods/183157#1831571Answer by Jeff B for Is object code generated for unused template class methods?Jeff B2008-10-08T14:46:44Z2008-10-08T14:46:44Z<p>Usually, yes.</p>
<p>All the compiler really knows is that your program can create at least one instance of each class. But it doesn't know what you will do with those instances. So the code will almost certain be generated.</p>
<p>That said, if the methods in question are <em>not</em> virtual, and are never called, the <em>linker</em> can remove them with its normal dead code removal features. So the generated (and compiled) code won't be in the final EXE.</p>
<p>Also this will largely depend on the C++ compiler being used because they're not all the same.</p>
http://stackoverflow.com/questions/183033/speeding-up-c/183098#1830981Answer by Jeff B for Speeding Up C#Jeff B2008-10-08T14:39:35Z2008-10-08T14:39:35Z<ul>
<li><p>Use StringBuilder rather than lots of string concatenation. String objects are atomic, and <em>any</em> modification (appending, to-upper, padding, etc) actually generate a completely new string object rather than modifying the original. Each new string must be allocated and eventually garbage collected.</p></li>
<li><p>A generalization of the prior statement: Try to reuse objects rather than creating lots and lots of them. Allocation and garbage collection may be easy to do, but they hit your performance.</p></li>
<li><p>Be sure to use the provided Microsoft libraries for most things. The classes provided by the Framework often use features that are unavailable or difficult to access from your own C# code (i.e. making calls out to the native Windows API). The built-in libraries are not <em>always</em> the most efficient, but more often than not.</p></li>
<li><p>Writing asynchronous apps has never been easier. Look into things like the BackgroundWorker class.</p></li>
<li><p>Try not to define Structs unless you <em>really</em> need them. Class instance variables each hold a reference to the actual instance, while struct instance variables each hold a separate copy.</p></li>
</ul>
http://stackoverflow.com/questions/182988/how-to-draw-argb-bitmap-using-gdi/183029#1830291Answer by Jeff B for How to draw ARGB bitmap using GDI+?Jeff B2008-10-08T14:22:02Z2008-10-08T14:22:02Z<p>Ah... but .Net doesn't use HBITMAP and GDI+ is a C++ library atop the basic Windows GDI, so I'm assuming you're using non-.Net C++.</p>
<p>GDI+ has a Bitmap class, which has a FromHBITMAP() method.</p>
<p>Once you have the GDI+ Bitmap instance, you can use it with the GDI+ library.</p>
<p>Of course, if you can write your program in C# using .Net it will be a lot easier.</p>
http://stackoverflow.com/questions/182976/what-is-more-efficient-for-parsing-xml-xpath-with-xmldocuments-xslt-or-linq/183000#1830001Answer by Jeff B for What is more efficient for parsing Xml, XPath with XmlDocuments, XSLT or Linq?Jeff B2008-10-08T14:15:55Z2008-10-08T14:15:55Z<p>I haven't actually tested it, but Linq is primarily a compiler code-gen type feature, and so it should be comparable to using an XmlDocument and XPath queries.</p>
<p>The primary value of Linq is that it provides compile-time verification of your query statements, which neither XPath nor XSLT can provide.</p>
<p>I would think that if performance is a concern, your decision would be based on the task at hand. For example, retrieving a single value from an XML document might be fastest using a single XPath query, but translating XML data into an HTML page would be faster using XSLT.</p>
http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/180740#18074020Answer by Jeff B for What's the most egregious pop culture perversion of programming?Jeff B2008-10-07T22:49:13Z2008-10-07T22:49:13Z<p>I love that ROBOCOP runs on DOS.
In the <em>first</em> movie, where he's being built, they show a boot-up sequence, where he has to load CONFIG.SYS to run.</p>
http://stackoverflow.com/questions/180573/visual-studio-express-any-good/180673#1806732Answer by Jeff B for Visual Studio Express any good ?Jeff B2008-10-07T22:16:56Z2008-10-07T22:16:56Z<p>It has been suggested that VS Express cannot be used for commercial interest:</p>
<p>See <a href="http://www.microsoft.com/express/support/faq/" rel="nofollow">Microsofts FAQ page for VS Express</a> - specifically question #7:</p>
<blockquote>
<p>'7. <strong>Can I use Express Editions for commercial use?</strong>
Yes, there are no licensing restrictions for applications built using Visual Studio Express Editions.</p>
</blockquote>
http://stackoverflow.com/questions/86562/what-is-missing-in-the-visual-studio-express-editions/180639#1806390Answer by Jeff B for What is "missing" in the Visual Studio Express Editions?Jeff B2008-10-07T22:02:38Z2008-10-07T22:02:38Z<p>Add-ins <em>are</em> allowed in VS express. The most notable one is straight from Microsft: XNA Game Studio works as a VS express add-in.</p>
<p>There's even a project type (maybe only available in full VS) that lets you build your own VS express add-ins!</p>
http://stackoverflow.com/questions/180573/visual-studio-express-any-good/180631#1806312Answer by Jeff B for Visual Studio Express any good ?Jeff B2008-10-07T22:00:03Z2008-10-07T22:00:03Z<p>VS Express <em>can</em> be extended - and has extensions available. There is even a project type for specifically building Express extensions. What this means is that anybody making a VS extension would have to make two packages: One for VS and one for VS express. Nearly everybody just makes the VS extensions - could be a Microsoft licensing issue.</p>
<p>The most notable VS express extension: XNA Game Studio - works with VS Express 2005, but NOT full VS 2005.</p>
<p>The two weaknesses of VS Express are therefore:
1. The <em>lack</em> of extensions (but there are some available).
2. The inability to mix languages in a single workspace, because each language uses a separate IDE.</p>
http://stackoverflow.com/questions/180119/designing-game-objects/180591#1805914Answer by Jeff B for Designing Game ObjectsJeff B2008-10-07T21:47:29Z2008-10-07T21:47:29Z<p>Not only is the number of constructors a potential issue (especially having to re-define them for each derived class) - but the number of parameters to the constructor can become an issue. Even if you make the optional parameters nullable, it becomes difficult to read and maintain the code later.</p>
<p>If I write:</p>
<pre><code>new Ship(content, "resource", true, null, null, null, null);
</code></pre>
<p>What does the second NULL do?</p>
<p>It makes code more readable (but more verbose) to use a structure to hold your parameters if the parameter list goes beyond four or five parameters:</p>
<pre><code>GameObjectParams params(content, "resource");
params.IsAlive = true;
new Ship(params);
</code></pre>
<p>There are a lot of ways this can be done.</p>
http://stackoverflow.com/questions/180320/are-c-templates-just-macros-in-disguise/180539#1805398Answer by Jeff B for Are C++ Templates just Macros in disguise?Jeff B2008-10-07T21:34:37Z2008-10-07T21:34:37Z<p>There's a lot of comments here trying to differentiate macros and templates.</p>
<p>Yes - they are both the same thing: Code generation tools.</p>
<p>Macros are a primitive form, without much compiler enforcement (like doing Objects in C - it can be done, but it's not pretty). Templates are more advanced, and have a lot better compiler type-checking, error messages, etc.</p>
<p>However, each has strengths that the other does not.</p>
<p>Templates can only generate dynamic class types - macros can generate almost any code you want (other than another macro definition). Macros can be very useful to embed static tables of structured data into your code.</p>
<p>Templates on the other hand can accomplish some truly FUNKY things that are not possible with macros. For example:</p>
<pre><code>template<int d,int t> class Unit
{
double value;
public:
Unit(double n)
{
value = n;
}
Unit<d,t> operator+(Unit<d,t> n)
{
return Unit<d,t>(value + n.value);
}
Unit<d,t> operator-(Unit<d,t> n)
{
return Unit<d,t>(value - n.value);
}
Unit<d,t> operator*(double n)
{
return Unit<d,t>(value * n);
}
Unit<d,t> operator/(double n)
{
return Unit<d,t>(value / n);
}
Unit<d+d2,t+t2> operator*(Unit<d2,t2> n)
{
return Unit<d+d2,t+t2>(value + n.value);
}
Unit<d-d2,t-t2> operator/(Unit<d2,t2> n)
{
return Unit<d-d2,t-t2>(value + n.value);
}
etc....
};
#define Distance Unit<1,0>
#define Time Unit<0,1>
#define Second Time(1.0)
#define Meter Distance(1.0)
void foo()
{
Distance moved1 = 5 * Meter;
Distance moved2 = 10 * Meter;
Time time1 = 10 * Second;
Time time2 = 20 * Second;
if ((moved1 / time1) == (moved2 / time2))
printf("Same speed!");
}
</code></pre>
<p>The template allows the compiler to dynamically create and use type-safe instances of the template on-the-fly. The compiler actually does the template-parameter math at compile time, creating separate classes where needed for each unique result. There is an implied Unit<1,-1> (distance / time = velocity) type that is created and compared within the conditional, but never explicitly declared in code.</p>
<p>Apparently, someone at a university has defined a template of this sort with 40+ parameters (need a reference), each representing a different physics unit type. Think about the type-safety of that sort of class, just for your numbers.</p>
http://stackoverflow.com/questions/179500/isnt-saying-c-c-wrong/179604#17960412Answer by Jeff B for Isn't saying "C/C++" wrong?Jeff B2008-10-07T17:48:09Z2008-10-07T17:48:09Z<p>Please remember that the original implementations of C++ were simply as a pre-compiler that output C code for the 'real' compiler. All C++ cancepts can be manually coded (but not compiler-enforced) in plain C.</p>
<p>"C/C++" is also valid when referring to compilers and other language/programming tools. Virtually every C++ compiler available will compile either - and are thus referred to as "C/C++" compilers. Most have options on whether to treat .C and .CPP files based on the extension, or compile all of them as C or all of them as C++.</p>
<p>Also note that mixing C and C++ source in a single compiler project was possible from the very first C/C++ compiler. This is probably the key factor in blurring the line between the languages.</p>
<p>Many language/programming tools that are created for C++ also work on C because the language syntax is virtually identical. Many language tools have separate Java, C#, Python versions - but they have a single "C/C++" version that works for C and C++ due to the strong similarities.</p>
http://stackoverflow.com/questions/179460/correct-behavior-for-interface-methods-that-cant-be-implemented/179567#1795675Answer by Jeff B for Correct behavior for interface methods that can't be implementedJeff B2008-10-07T17:40:58Z2008-10-07T17:40:58Z<p>That read-only collection already provided by Java throw the UnsupportedOperationException during write operations is already an unfortunate design hack. The collection classes should have been written with separate read-only and write-only interfaces that are both inherited by the full read-write interface. Then you know what you're getting.</p>
http://stackoverflow.com/questions/1717098/how-to-listen-for-affectsparentarrange-events-when-youre-not-the-parent/1720822#1720822Comment by Jeff B on How to listen for AffectsParentArrange events when you're not the parentJeff B2009-11-13T14:53:09Z2009-11-13T14:53:09ZProblem is that ArrangeOverride can't differentiate between top-down and bottom-up. Sending an event from there would send every time the arrangement is invalidated from any source. Unfortunately, one of the side-effects of my event handler is to cause the control to be rearranged.http://stackoverflow.com/questions/1715716/wpf-listboxitem-not-aligning-items-properly/1717277#1717277Comment by Jeff B on WPF Listboxitem not aligning items properlyJeff B2009-11-12T16:51:03Z2009-11-12T16:51:03ZJust that your code examples didn't show where the Listbox was getting its items. If you were directly populating the Items list, then that could have been the problem.http://stackoverflow.com/questions/1155285/xaml-tooltips-are-being-clipped/1155308#1155308Comment by Jeff B on XAML tooltips are being clippedJeff B2009-07-22T14:05:05Z2009-07-22T14:05:05ZDoesn't work when I'm not using a Canvas to render the window.http://stackoverflow.com/questions/1155285/xaml-tooltips-are-being-clipped/1155682#1155682Comment by Jeff B on XAML tooltips are being clippedJeff B2009-07-21T13:59:16Z2009-07-21T13:59:16ZMy impression is that its not in the XP graphics layer at all - it looks more like WPF draws an entire second desktop layer atop the native XP (Win32) graphics - but clips it to fit where WPF should be 'visible'. This is the way early 3D and movie accellerators worked if they were 'windowed'.http://stackoverflow.com/questions/896574/forcing-a-wpf-tooltip-to-stay-on-the-screen/896805#896805Comment by Jeff B on Forcing a WPF tooltip to stay on the screenJeff B2009-07-21T13:53:56Z2009-07-21T13:53:56ZAlso beware that Popups are always on top of all desktop objects - even if you switch to another program, the popup will be visible and obscure part of the other program.http://stackoverflow.com/questions/342116/aligning-content-in-a-wpf-viewbox/342142#342142Comment by Jeff B on Aligning content in a WPF ViewboxJeff B2008-12-04T21:31:24Z2008-12-04T21:31:24ZI can set HorizontalAlignment and VerticalAlignment on the child object and it still centers when the Viewbox scales it.http://stackoverflow.com/questions/342101/how-to-access-the-index-of-a-generic-list-by-reflection/342114#342114Comment by Jeff B on How to access the Index Of A Generic.List By Reflection??Jeff B2008-12-04T21:26:28Z2008-12-04T21:26:28ZAdd: if (actualList is IList)
http://stackoverflow.com/questions/342100/why-would-guid-newguid-be-generating-an-empty-guidComment by Jeff B on Why would Guid.NewGuid() be generating an empty guid?Jeff B2008-12-04T21:24:26Z2008-12-04T21:24:26ZWhat is the string result of rowPointer.ToString()?
Or are you getting a null reference error?http://stackoverflow.com/questions/342037/testing-classes/342065#342065Comment by Jeff B on testing classesJeff B2008-12-04T21:19:39Z2008-12-04T21:19:39Z@eJames: Yes, but often times those more practical parts are still private/internal to the library and not to be exposed to the consumer of the primary interface. It gets tricky to test the library-internal objects when the test code is in a separate library.http://stackoverflow.com/questions/342037/testing-classes/342065#342065Comment by Jeff B on testing classesJeff B2008-12-04T21:10:44Z2008-12-04T21:10:44ZBut at the same time, sometimes you want to examine the internal state of the object. Or unit-test a private method to ensure that it works properly "as a unit" - without the "system test" of the public methods that call the private method.http://stackoverflow.com/questions/182600/should-one-use-or-in-a-for-loop/184166#184166Comment by Jeff B on Should one use < or <= in a for loopJeff B2008-10-08T18:50:28Z2008-10-08T18:50:28ZThis only matters if your loop count is dynamic (i.e. array length). In the original example, he was using a fixed constant - which eliminates the subtraction operation.http://stackoverflow.com/questions/182600/should-one-use-or-in-a-for-loop/183343#183343Comment by Jeff B on Should one use < or <= in a for loopJeff B2008-10-08T18:47:20Z2008-10-08T18:47:20ZAssembly CMP is used by both. Assembly JL (<) or JLE (<=) is used for the branching - and JL and JLE have the <i>exact same CPU cycle count</i>. For clock cycle counts, see: <a href="http://home.comcast.net/~fbui/intel_j.html#jxx" rel="nofollow">home.comcast.net/~fbui/intel_j.html#jxx</a>http://stackoverflow.com/questions/182976/what-is-more-efficient-for-parsing-xml-xpath-with-xmldocuments-xslt-or-linq/183000#183000Comment by Jeff B on What is more efficient for parsing Xml, XPath with XmlDocuments, XSLT or Linq?Jeff B2008-10-08T15:29:23Z2008-10-08T15:29:23ZMicrosofts stated purpose of Linq was to provide compile-time validation of the expression statement (for XPath, SQL, etc) as well as a single generic query syntax - not verification against the data source.http://stackoverflow.com/questions/180320/are-c-templates-just-macros-in-disguise/180539#180539Comment by Jeff B on Are C++ Templates just Macros in disguise?Jeff B2008-10-08T15:23:10Z2008-10-08T15:23:10ZDeclare two variables:
Distance d;
Time t;
If Distance and Time are both doubles, the statement (d = t) and the expression (d == t) are both valid. The template prevents this - providing type safety for numeric values.http://stackoverflow.com/questions/182600/should-one-use-or-in-a-for-loop/182684#182684Comment by Jeff B on Should one use < or <= in a for loopJeff B2008-10-08T14:58:10Z2008-10-08T14:58:10ZThis also requires that you not modify the collection size during the loop.