User Daniel Jennings - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T07:51:56Zhttp://stackoverflow.com/feeds/user/3641http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/711779/template-meta-programming-with-char-arrays-as-parameters3Template Meta-programming with Char Arrays as Parameters.Daniel Jennings2009-04-02T21:59:19Z2009-10-22T17:21:36Z
<p>I'm playing around with TMP in GCC 4.3.2's half-implementation of C++0x, and I was wondering if there was a way to somehow do the following:</p>
<pre><code>template <char x, char... c>
struct mystruct {
...
};
int main () {
mystruct<"asdf">::go();
}
</code></pre>
<p>It obviously won't let me do it just like that, and I thought I'd get lucky by using user-defined literals to transform the "asdf" string during compile-time, but GCC 4.3 doesn't support user-defined literals... </p>
<p>Any suggestions? I'd prefer to not do 'a','s','d','f', since this severely hampers my plans for this project.</p>
http://stackoverflow.com/questions/855826/c-winforms-transparent-control-allowing-clickthrough0C# Winforms Transparent Control allowing ClickthroughDaniel Jennings2009-05-13T02:46:47Z2009-09-17T01:00:01Z
<p>I have a Winforms control that starts off completely transparent, but then lines are drawn on it for stuff. I want mouse events to completely ignore the control and instead go to the stuff (buttons and all that junk) below.</p>
<p>Is there any way to do this? P/Invoking stuff would be fine, by the way.</p>
http://stackoverflow.com/questions/1349880/vs2008-prevent-attempting-to-link-if-any-projects-fail0VS2008: Prevent attempting to link if any projects fail.Daniel Jennings2009-08-28T23:31:45Z2009-08-30T11:35:58Z
<p>In VS2008, when you build a big solution with many projects, if one of the projects fails with an Error, it still attempts to link the startup project, which obviously is unnecessary in most cases because if a project fails you'll need to fix that error first before running the program.</p>
<p>Does anyone know how to get VS2008 to not try to link if there was an error in any of the projects?</p>
http://stackoverflow.com/questions/47107/clickonce-disallow-publishing-of-debug-builds3ClickOnce disallow publishing of Debug buildsDaniel Jennings2008-09-05T23:57:14Z2009-05-14T21:17:30Z
<p>Is there any way to disallow publishing of debug builds with ClickOnce? I only want to allow Release builds through, but right now human error causes a debug build to slip in once in a while. </p>
<p>Edit: Sorry, should've mentioned that we're publishing the build from within Visual Studio.</p>
http://stackoverflow.com/questions/795326/force-vmware-workstation-6-5-to-run-32-bit-host0Force VMWare Workstation 6.5 to run 32-bit HostDaniel Jennings2009-04-27T21:19:40Z2009-04-28T00:15:47Z
<p>I'm on Vista 64-bit, and I need to have VMWare Workstation run as a 32-bit process for reasons outside of the scope of this problem. Right now when I run VMWare, it starts it as a 64-bit process, and I have no idea how to make it run as a 32-bit process instead.</p>
<p>The guest OS is Windows XP (32-bit) if that matters, but I doubt it does.</p>
http://stackoverflow.com/questions/736345/handle-new-top-level-window-events-in-xlib-xt2Handle "new top level window" events in Xlib/XtDaniel Jennings2009-04-10T00:25:55Z2009-04-22T16:46:11Z
<p>So I'm in a situation where I need to know when a top level window gets created. I'm working at the Xlib/Xt level and on a Window Manager that doesn't support the EWMH specification. My idea is to hook into the root window's SubstructureNotify events. But things are not as simple as just that. </p>
<p>The problem is that not every CreateNotify event corresponds to the creation of a [b]top level[/b] window. So what I think I need to do is test the window I get from the event somehow to confirm that it is a top level window. I've got close, but some spurious windows still make it through my net. For example, in a GTK application if you have a dropdown box and you click it, a new window is created that I can't figure out how to catch and ignore. Such a window is troublesomely indistinguishable from a typical top level application window.</p>
<p>Here's what I have so far:</p>
<pre><code>// I am omiting (tons of) cleanup code and where I set the display and toplevel variables.
Display* display;
Widget toplevel;
bool has_name(Window window)
{
XTextProperty data = XTextProperty ();
return (!XGetWMName (display, window, &data));
}
bool has_client_leader(Window window)
{
unsigned long nitems = 0;
unsigned char* data = 0;
Atom actual_type;
int actual_format;
unsigned long bytes;
// WM_CLIENT_LEADER is an interned Atom for the WM_CLIENT_LEADER property
int status = XGetWindowProperty (display, window, WM_CLIENT_LEADER, 0L, (~0L), False,
AnyPropertyType, &actual_type, &actual_format, &nitems, &bytes, &data);
if (status != Success || acutal_type == None) return false;
Window* leader = reinterpret_cast<Window*> (data);
return (*leader != 0);
}
bool has_class(Window window)
{
XClassHint data = XClassHint ();
return (!GetClassHint (display, window, &data));
}
void handle_event(Widget widget, XtPointer, XEvent* event, Boolean*)
{
if (event->type != CreateNotify) return;
Window w = event->xcreatewindow.window;
// confirm window has a name
if (!has_name (w)) return;
// confirm window is a client window
Window client = XmuClientWindow (display, w);
if (!client || client != w) return;
// confirm window has a client leader that is not 0x0
if (!has_client_leader (client)) return;
// confirm window has a class
if (!has_class (client)) return;
// The window has passed all our checks!
// Go on to do stuff with the window ...
}
int main(int argc, char* argv[])
{
// ...
// Setting up the event handler for SubstructureNotify on root window
Window root_window = XDefaultRootWindow (display);
Widget dummy = XtCreateWidget ("dummy", coreWidgetClass, toplevel, 0, 0);
XtRegisterDrawable (display, root_window, dummy);
XSelectInput (display, root_window, SubstructureNotifyMask);
XtAddRawEventHandler (dummy, SubstructureNotifyMask, False, handle_event, 0);
// ...
}
</code></pre>
<p>A long shot, but does anyone have any ideas I could try? I can't think of much else I can really do here.</p>
http://stackoverflow.com/questions/736792/is-there-an-expiry-on-bit-ly-or-tinyurl-urls/736794#7367943Answer by Daniel Jennings for Is there an expiry on bit.ly or tinyurl URLs?Daniel Jennings2009-04-10T05:32:02Z2009-04-10T05:32:02Z<p>No. They'll remain valid as long as the service remains up.</p>
http://stackoverflow.com/questions/371883/treelistview-with-columns-generated-and-populated-by-observablecollection/736784#7367841Answer by Daniel Jennings for TreeListView with Columns generated and populated by ObservableCollectionDaniel Jennings2009-04-10T05:25:10Z2009-04-10T05:25:10Z<p>You can't do it. Sorry.</p>
http://stackoverflow.com/questions/466354/how-can-i-tell-if-a-window-has-focus-win32-api2How can I tell if a Window has focus? (Win32 API)Daniel Jennings2009-01-21T18:02:03Z2009-01-22T11:10:16Z
<p>Using the Win32 API (in C, but that's inconsequential) how can I tell if a given window (identified by HWND) has focus? I'm hooking an application watching for an event, and when that event occurs I want to check if the application already has focus. If it doesn't, I want to flash the window until they give focus to it.</p>
<p>Alternately, does the FlashWindowEx struct flag FLASHW_TIMERNOFG that flashes until the window has focus just not flash if the window already has focus? I cannot test this now since I am not in my development environment, but I was under the impression that it would flash anyways, which is what I'm trying to avoid.</p>
<p><strong>Edit:</strong> Also, if it matters, the application uses DirectX in this window.</p>
http://stackoverflow.com/questions/422620/how-to-gracefully-abandon-an-open-source-project/422634#4226340Answer by Daniel Jennings for How to gracefully abandon an open-source project?Daniel Jennings2009-01-07T23:34:42Z2009-01-07T23:34:42Z<p>Link to this page.</p>
http://stackoverflow.com/questions/377094/gdi-dithering-problem2GDI+ Dithering ProblemDaniel Jennings2008-12-18T07:10:10Z2009-01-03T22:57:08Z
<p>I have a C++ application that uses the Win32 API for Windows, and I'm having a problem with GDI+ dithering, when I don't know why it should be.</p>
<p>I have a custom control (custom window). When I receive the WM_PAINT message, I draw some Polygons using FillPolygon on a Graphics device. This Graphics device was created using the HDC from BeginPaint.</p>
<p>When the polygons appear on the screen, though, they are dithered instead of transparent, and only seem to show few colors (maybe 256?) When I do the same thing in C# using the .NET interface into GDI+, it works fine, which is leaving me wondering what's going on.</p>
<p>I'm not doing anything special, this is a simple example that should work fine, as far as I know. Am I doing something wrong?</p>
<p>Edit: Nevermind. It only happens over Remote Desktop, even though the C# example doesnt Dither over remote desktop. Remote Desktop is set at 32-bit color, so I don't know what's up with that.</p>
http://stackoverflow.com/questions/267364/wpf-eliminate-transparency-between-grid-cells1WPF: Eliminate transparency between grid cells.Daniel Jennings2008-11-06T01:06:55Z2008-11-06T08:36:01Z
<p>I have a Grid in WPF. The Grid has a transparent background (necessary) and each of the cells potentially has a different colored solid background, or maybe no background. When I put arbitrary content in these cells, when two adjacent cells both have colored backgrounds (same or different color, it doesn't matter) there is often (and unpredictably) a thin transparent line separating them, allowing you to see through the grid at that line.</p>
<p>Does anyone know how this could possibly be fixed?</p>
<p>Edit: Meant to mention it in my question, but I've tried enabling SnapsToDevicePixels anywhere and everywhere I can, to no avail.</p>
http://stackoverflow.com/questions/47107/clickonce-disallow-publishing-of-debug-builds/47135#471350Answer by Daniel Jennings for ClickOnce disallow publishing of Debug buildsDaniel Jennings2008-09-06T00:31:36Z2008-11-06T02:16:50Z<p>I've thought about that, but right now it's as simple as clicking on the project and clicking Publish. The only modification to the current project I'd like would be to have it verify that it's not a Debug build.</p>
<p>Edit: Also, it's not that ClickOnce isn't happy with a Debug build, but that we use a Debug build to signal the availability of certain debug options. </p>
http://stackoverflow.com/questions/45097/how-do-i-know-if-javascript-has-been-turned-off-inside-browser/45102#451025Answer by Daniel Jennings for How do I know if Javascript has been turned off inside browser?Daniel Jennings2008-09-05T02:06:20Z2008-10-17T21:00:25Z<p>Use the <noscript> HTML tags.</p>
http://stackoverflow.com/questions/68072/how-would-i-host-an-external-application-in-wpf/68090#680901Answer by Daniel Jennings for How would I host an external application in WPF?Daniel Jennings2008-09-16T00:01:55Z2008-09-16T00:01:55Z<p>Use a HwndHost to host the outside window in your application.</p>
http://stackoverflow.com/questions/50098/comparing-two-collections-for-equality/50154#501544Answer by Daniel Jennings for Comparing two collections for equalityDaniel Jennings2008-09-08T17:00:55Z2008-09-08T17:00:55Z<p>Create a Dictionary "dict" and then for each member in the first collection, do dict[member]++;</p>
<p>Then, loop over the second collection in the same way, but for each member do dict[member]--.</p>
<p>At the end, loop over all of the members in the dictionary:</p>
<pre><code> private bool SetEqual (List<int> left, List<int> right) {
if (left.Count != right.Count)
return false;
Dictionary<int, int> dict = new Dictionary<int, int>();
foreach (int member in left) {
if (dict.ContainsKey(member) == false)
dict[member] = 1;
else
dict[member]++;
}
foreach (int member in right) {
if (dict.ContainsKey(member) == false)
return false;
else
dict[member]--;
}
foreach (KeyValuePair<int, int> kvp in dict) {
if (kvp.Value != 0)
return false;
}
return true;
}
</code></pre>
<p>Edit: As far as I can tell this is on the same order as the most efficient algorithm. This algorithm is O(N), assuming that the Dictionary uses O(1) lookups.</p>
http://stackoverflow.com/questions/44220/difference-between-foreach-and-for-loops-over-an-ienumerable-class-in-c/44225#442253Answer by Daniel Jennings for Difference between foreach and for loops over an IEnumerable class in C#Daniel Jennings2008-09-04T17:22:27Z2008-09-04T17:22:27Z<p>foreach creates an instance of an enumerator (returned from GetEnumerator) and that enumerator also keeps state throughout the course of the foreach loop. It then repeatedly calls for the Next() object on the enumerator and runs your code for each object it returns.</p>
<p>They don't boil down to the same code in any way, really, which you'd see if you wrote your own enumerator.</p>
http://stackoverflow.com/questions/40939/best-screencasting-program-for-windows-that-has-an-api/40960#409600Answer by Daniel Jennings for Best Screencasting Program For Windows That Has An APIDaniel Jennings2008-09-03T00:25:36Z2008-09-03T00:25:36Z<p>Here's an open source screen recording program that might help: <a href="http://taksi.sourceforge.net/" rel="nofollow">http://taksi.sourceforge.net/</a></p>
http://stackoverflow.com/questions/40733/disable-wpf-label-accelerator-key-text-underscore-is-missing/40740#407404Answer by Daniel Jennings for Disable WPF label accelerator key (text underscore is missing)Daniel Jennings2008-09-02T21:36:34Z2008-09-02T21:36:34Z<p>Is there a reason you want to use a Label as opposed to a TextBlock?</p>
http://stackoverflow.com/questions/40161/does-c-have-built-in-support-for-parsing-page-number-strings/40165#401656Answer by Daniel Jennings for Does C# have built-in support for parsing page-number strings?Daniel Jennings2008-09-02T17:55:52Z2008-09-02T17:55:52Z<p>It doesn't have a built-in way to do this, but it would be trivial to do using String.Split.</p>
<p>Simply split on ',' then you have a series of strings that represent either page numbers or ranges. Iterate over that series and do a String.Split of '-'. If there isn't a result, it's a plain page number, so stick it in your list of pages. If there is a result, take the left and right of the '-' as the bounds and use a simple for loop to add each page number to your final list over that range.</p>
<p>Can't take but 5 minutes to do, then maybe another 10 to add in some sanity checks to throw errors when the user tries to input invalid data (like "1-2-3" or something.)</p>
http://stackoverflow.com/questions/40107/using-attributes-to-cut-down-on-enum-to-enum-mapping-and-enum-const-to-action-swi/40131#401310Answer by Daniel Jennings for Using attributes to cut down on enum to enum mapping and enum/const to action switch statments Daniel Jennings2008-09-02T17:44:12Z2008-09-02T17:44:12Z<p>Here are the rules for the types that can be included as Attribute parameters:</p>
<p><a href="http://tinyurl.com/59blgw" rel="nofollow">http://tinyurl.com/59blgw</a></p>
http://stackoverflow.com/questions/38960/how-to-find-out-if-a-file-exists-in-c-net/38962#3896211Answer by Daniel Jennings for How to find out if a file exists in C# / .NET?Daniel Jennings2008-09-02T07:19:51Z2008-09-02T07:24:55Z<p>Use:</p>
<pre><code>File.Exists(path)
</code></pre>
<p>MSDN: <a href="http://msdn.microsoft.com/en-us/library/system.io.file.exists.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.io.file.exists.aspx</a></p>
<p>Edit: In System.IO</p>
http://stackoverflow.com/questions/37468/how-to-determine-the-installed-asp-net-version-of-host-from-a-web-page/37470#374700Answer by Daniel Jennings for How to Determine the Installed ASP.NET Version of Host from a Web PageDaniel Jennings2008-09-01T05:07:22Z2008-09-01T05:07:22Z<p>One way is to throw an exception in Page Load, but don't catch it. At the bottom of the page, you'll see the version number.</p>
http://stackoverflow.com/questions/36563/is-there-an-easy-way-to-do-transparent-forms-in-a-vb-net-app/36597#365970Answer by Daniel Jennings for Is there an easy way to do transparent forms in a VB .NET app?Daniel Jennings2008-08-31T03:02:17Z2008-08-31T03:02:17Z<p>I don't know exactly what you mean by transparent, but if you use WPF you can set AllowTransparency=true on your form and then remove the form's style/border and then set the background to a color that has a zero alpha channel. Then, you can draw on the form all you want and the background will be see-through and the other stuff will be fully visible. Additionally, you could set the background to a low-opacity layer so you can half see through the form.</p>
http://stackoverflow.com/questions/36575/add-service-reference-to-amazon-service-fails/36591#365911Answer by Daniel Jennings for Add service reference to Amazon service failsDaniel Jennings2008-08-31T02:50:00Z2008-08-31T02:50:00Z<p>This can happen if ASP.NET isn't installed. Go to Add/Remove Windows Components and look under IIS; make sure that ASP.NET is checked (meaning that it's installed.) That should clear up your problem!</p>
http://stackoverflow.com/questions/35637/asp-net-mvc-route-help-2-routes-1-with-a-category-url-structure-and-the-other-f/35656#356560Answer by Daniel Jennings for ASP.NET MVC Route Help, 2 routes, 1 with a category url structure and the other for content pageDaniel Jennings2008-08-30T03:37:39Z2008-08-30T03:37:39Z<p>What's the question?</p>
http://stackoverflow.com/questions/35178/regex-to-replace-boolean-with-bool/35203#352031Answer by Daniel Jennings for Regex to replace Boolean with boolDaniel Jennings2008-08-29T20:12:20Z2008-08-29T20:12:20Z<pre><code>s/[^:]\bBoolean\b[^"]/bool/g
</code></pre>
<p>Edit: Rats, beaten again. +1 for beating me, good sir.</p>
http://stackoverflow.com/questions/35120/image-processing-in-silverlight-2/35131#351312Answer by Daniel Jennings for Image processing in Silverlight 2Daniel Jennings2008-08-29T19:38:18Z2008-08-29T19:38:18Z<p>I know this doesn't directly answer your question, but what if you do all of the clipping on the client side to crop the image, then send the server the original image and the coordinates for clipping. Then on the server side, which will probably more suited for image manipulation like this (e.g. PHP it's very easy) you'll do the actual cropping of the image and storing the cropped version.</p>
http://stackoverflow.com/questions/35011/register-multiple-assemblies-to-the-gac-in-vista/35064#350641Answer by Daniel Jennings for Register Multiple Assemblies to the GAC in VistaDaniel Jennings2008-08-29T19:07:26Z2008-08-29T19:14:24Z<p>Here is the script you would put into a batch file to register all of the files in the current directory with Gacutil. You don't need to put it in a batch file (you can just copy/paste it to a Command Prompt) to do it.</p>
<pre><code>FOR %1 IN (*) DO Gacutil /i %1
</code></pre>
<p>Edit: Bah, sorry I was late. I didn't see the previous post when I posted mine.</p>
http://stackoverflow.com/questions/35017/file-database-suggestion-with-support-for-multiple-concurent-users/35051#350514Answer by Daniel Jennings for File database suggestion with support for multiple concurent users.Daniel Jennings2008-08-29T19:03:04Z2008-08-29T19:03:04Z<p>I would suggest <a href="http://www.sqlite.org/index.html" rel="nofollow">SQLite</a> because the entire database is stored in a single file, and it quite safely handles multiple users accessing it at the same time. There are several different libraries that you can use for your client application and there is no server software needed.</p>
<p>One of the strengths is that it mimics SQL servers so closely that if you need to convert from using a database file to a full-fledged SQL Server, most of your queries in your client won't need to change. You'll just need to migrate the data over to the new server database (which I wouldn't be surprised if there are programs to convert SQLite databases to MySQL databases, for example.)</p>
http://stackoverflow.com/questions/1269950/how-to-set-gtext-style-to-bold-font-in-a-windows-gadgetComment by Daniel Jennings on How to set g:text style to bold font in a Windows Gadget?Daniel Jennings2009-08-13T04:03:58Z2009-08-13T04:03:58ZUpvoting you totally in a not-ironic way.http://stackoverflow.com/questions/855826/c-winforms-transparent-control-allowing-clickthroughComment by Daniel Jennings on C# Winforms Transparent Control allowing ClickthroughDaniel Jennings2009-05-13T04:49:45Z2009-05-13T04:49:45ZIf it helps, I'm trying to draw an overlay on top of a Flash control in my forum (using the COM Flash control.)http://stackoverflow.com/questions/795326/force-vmware-workstation-6-5-to-run-32-bit-hostComment by Daniel Jennings on Force VMWare Workstation 6.5 to run 32-bit HostDaniel Jennings2009-04-27T21:29:34Z2009-04-27T21:29:34ZControl of the VMWare process by tools that were written for 32-bit processes.http://stackoverflow.com/questions/795326/force-vmware-workstation-6-5-to-run-32-bit-hostComment by Daniel Jennings on Force VMWare Workstation 6.5 to run 32-bit HostDaniel Jennings2009-04-27T21:26:52Z2009-04-27T21:26:52ZAll I know is that it has a x64 folder, and that is what's running the VM, when I don't want the VM to run in a 64-bit host.http://stackoverflow.com/questions/711779/template-meta-programming-with-char-arrays-as-parameters/712221#712221Comment by Daniel Jennings on Template Meta-programming with Char Arrays as Parameters.Daniel Jennings2009-04-03T01:42:46Z2009-04-03T01:42:46ZI really appreciate the link to the thread. It covered exactly what I'm wanting to do.http://stackoverflow.com/questions/711779/template-meta-programming-with-char-arrays-as-parameters/711854#711854Comment by Daniel Jennings on Template Meta-programming with Char Arrays as Parameters.Daniel Jennings2009-04-02T22:31:09Z2009-04-02T22:31:09ZThis is what I mean by with user-defined literals: <a href="http://stackoverflow.com/questions/537303/binary-literals/538101#538101" rel="nofollow" title="binary literals">stackoverflow.com/questions/537303/…</a>http://stackoverflow.com/questions/711779/template-meta-programming-with-char-arrays-as-parameters/711854#711854Comment by Daniel Jennings on Template Meta-programming with Char Arrays as Parameters.Daniel Jennings2009-04-02T22:25:30Z2009-04-02T22:25:30ZIt is possible in the proposed C++0x standard, but the only way I've seen so far is with user-defined literals, and I was hoping there was a different way to do it without a compiler that supports user-defined literals.http://stackoverflow.com/questions/711779/template-meta-programming-with-char-arrays-as-parameters/711826#711826Comment by Daniel Jennings on Template Meta-programming with Char Arrays as Parameters.Daniel Jennings2009-04-02T22:19:28Z2009-04-02T22:19:28ZI want to take a literal string, like "asdf" and pass it into a template's parameter list as 'a','s','d','f' would.http://stackoverflow.com/questions/466354/how-can-i-tell-if-a-window-has-focus-win32-apiComment by Daniel Jennings on How can I tell if a Window has focus? (Win32 API)Daniel Jennings2009-01-21T18:19:53Z2009-01-21T18:19:53ZI noted in a comment below that this application will only have one Window.http://stackoverflow.com/questions/466354/how-can-i-tell-if-a-window-has-focus-win32-api/466363#466363Comment by Daniel Jennings on How can I tell if a Window has focus? (Win32 API)Daniel Jennings2009-01-21T18:09:00Z2009-01-21T18:09:00ZThe application will only ever have one Window, no sub-Windows or child windows.http://stackoverflow.com/questions/377094/gdi-dithering-problem/377130#377130Comment by Daniel Jennings on GDI+ Dithering ProblemDaniel Jennings2008-12-18T07:49:02Z2008-12-18T07:49:02ZRemote Desktop allows you to set your color depth, I have set it to 32-bit. Additionally, nothing else is dithered, only this application I'm working on. The C# version works fine.http://stackoverflow.com/questions/270874/is-it-possible-to-share-a-datatrigger/270904#270904Comment by Daniel Jennings on Is it possible to share a DataTrigger?Daniel Jennings2008-11-07T00:59:24Z2008-11-07T00:59:24ZI don't think this is a preferable answer because Styling should be left for real styling, not Data driven logic. You'd run into a problem here if you decided later to style your entire application; you'd have to provide special cases of styles that merge the Style and the logic behavior.http://stackoverflow.com/questions/267364/wpf-eliminate-transparency-between-grid-cells/267954#267954Comment by Daniel Jennings on WPF: Eliminate transparency between grid cells.Daniel Jennings2008-11-07T00:28:07Z2008-11-07T00:28:07ZThe window is SizeToContent="WidthAndHeight". I'll try the Margins technique just for the hell of it.http://stackoverflow.com/questions/267364/wpf-eliminate-transparency-between-grid-cells/267954#267954Comment by Daniel Jennings on WPF: Eliminate transparency between grid cells.Daniel Jennings2008-11-06T16:49:50Z2008-11-06T16:49:50ZThat's very similar to an approximation I tried, but this problem is solved via adding SnapsToDevicePixels=true on all of the elements (not sure where exactly it's necessary, so I put it on everything even though I think it trickles down.) I swear I have the problem even with SnapsToDevicePixels on.http://stackoverflow.com/questions/267364/wpf-eliminate-transparency-between-grid-cells/267378#267378Comment by Daniel Jennings on WPF: Eliminate transparency between grid cells.Daniel Jennings2008-11-06T03:45:58Z2008-11-06T03:45:58ZI see the problem when one of the cells has content that varies. This is in a subclassed Window, and you can set the Content of one specific cell. Different sizes of Content (which stretch the cell and window) cause different lines to appear.