WPF: Eliminate transparency between grid cells. - Stack Overflow most recent 30 from stackoverflow.com 2009-11-23T22:10:56Z http://stackoverflow.com/feeds/question/267364 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/267364/wpf-eliminate-transparency-between-grid-cells 1 WPF: Eliminate transparency between grid cells. Daniel Jennings 2008-11-06T01:06:55Z 2008-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/267364/wpf-eliminate-transparency-between-grid-cells/267378#267378 1 Answer by Todd White for WPF: Eliminate transparency between grid cells. Todd White 2008-11-06T01:16:55Z 2008-11-06T01:16:55Z <p>Without seeing any code my guess is that you need <a href="http://msdn.microsoft.com/en-us/library/system.windows.uielement.snapstodevicepixels.aspx" rel="nofollow">SnapsToDevicePixels</a> on the elements in the grid.</p> http://stackoverflow.com/questions/267364/wpf-eliminate-transparency-between-grid-cells/267954#267954 1 Answer by Donnelle for WPF: Eliminate transparency between grid cells. Donnelle 2008-11-06T08:36:01Z 2008-11-06T08:36:01Z <p>This produces the same issue, but it may not be the same exact cause. Still, if we can resolve this it might give a hint for your issue.</p> <p><code></p> <p></p> <pre><code>&lt;Grid Background="Transparent"&gt; &lt;Grid.ColumnDefinitions&gt; &lt;ColumnDefinition Width="*" /&gt; &lt;ColumnDefinition Width="*" /&gt; &lt;ColumnDefinition Width="*" /&gt; &lt;/Grid.ColumnDefinitions&gt; &lt;Grid.RowDefinitions&gt; &lt;RowDefinition Height="3*" /&gt; &lt;RowDefinition Height="3*" /&gt; &lt;RowDefinition Height="3*" /&gt; &lt;RowDefinition Height="*" /&gt; &lt;/Grid.RowDefinitions&gt; &lt;Label Grid.Column="0" Grid.Row="0" Background="PaleGoldenrod" /&gt; &lt;Label Grid.Column="1" Grid.Row="0" Background="White" /&gt; &lt;Label Grid.Column="2" Grid.Row="0" Background="PaleGoldenrod" /&gt; &lt;Label Grid.Column="0" Grid.Row="1" Background="White" /&gt; &lt;!-- This is in the significant cell --&gt; &lt;Label Grid.Column="1" Grid.Row="1" x:Name="SizeChangeLabel" Background="PaleGoldenrod"&gt; Watch this cell &lt;/Label&gt; &lt;Label Grid.Column="2" Grid.Row="1" Background="White" /&gt; &lt;Label Grid.Column="0" Grid.Row="2" Background="PaleGoldenrod" /&gt; &lt;Label Grid.Column="1" Grid.Row="2" Background="White" /&gt; &lt;Label Grid.Column="2" Grid.Row="2" Background="PaleGoldenrod" /&gt; &lt;Button x:Name="ReduceContentSize" Grid.Row="3" Grid.Column="0" Click="ReduceContentSize_Click"&gt;Reduce&lt;/Button&gt; &lt;Button x:Name="IncreaseContentSize" Grid.Row="3" Grid.Column="1" Click="IncreaseContentSize_Click"&gt;Increase&lt;/Button&gt; &lt;TextBlock Grid.Row="3" Grid.Column="2" Foreground="White"&gt; The window is black &lt;/TextBlock&gt; &lt;/Grid&gt; </code></pre> <p> </code></p> <p>The click events adjust the MinWidth of the label in the centre cell. When you bump it up, you get lines which I assume are the same as your issue.</p> <p><code></p> <pre><code>private const double _sizeChangeAmount = 150; private void IncreaseContentSize_Click(object sender, RoutedEventArgs e) { SizeChangeLabel.MinWidth = SizeChangeLabel.ActualWidth + _sizeChangeAmount; SizeChangeLabel.MinHeight = SizeChangeLabel.ActualHeight + _sizeChangeAmount; } private void ReduceContentSize_Click(object sender, RoutedEventArgs e) { if (SizeChangeLabel.MinWidth &gt; 150) SizeChangeLabel.MinWidth = SizeChangeLabel.ActualWidth - _sizeChangeAmount; if (SizeChangeLabel.MinHeight &gt; 150) SizeChangeLabel.MinHeight = SizeChangeLabel.ActualHeight - _sizeChangeAmount; } </code></pre> <p></code></p> <p>Is this a reasonable approximation that can help lead to a solution?</p>