WPF: Eliminate transparency between grid cells. - Stack Overflow most recent 30 from stackoverflow.com2009-11-08T23:14:17Zhttp://stackoverflow.com/feeds/question/267364http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://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/267364/wpf-eliminate-transparency-between-grid-cells/267378#2673781Answer by Todd White for WPF: Eliminate transparency between grid cells.Todd White2008-11-06T01:16:55Z2008-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#2679541Answer by Donnelle for WPF: Eliminate transparency between grid cells.Donnelle2008-11-06T08:36:01Z2008-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><Grid Background="Transparent">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="3*" />
<RowDefinition Height="3*" />
<RowDefinition Height="3*" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Label Grid.Column="0" Grid.Row="0" Background="PaleGoldenrod" />
<Label Grid.Column="1" Grid.Row="0" Background="White" />
<Label Grid.Column="2" Grid.Row="0" Background="PaleGoldenrod" />
<Label Grid.Column="0" Grid.Row="1" Background="White" />
<!-- This is in the significant cell -->
<Label Grid.Column="1" Grid.Row="1" x:Name="SizeChangeLabel" Background="PaleGoldenrod">
Watch this cell
</Label>
<Label Grid.Column="2" Grid.Row="1" Background="White" />
<Label Grid.Column="0" Grid.Row="2" Background="PaleGoldenrod" />
<Label Grid.Column="1" Grid.Row="2" Background="White" />
<Label Grid.Column="2" Grid.Row="2" Background="PaleGoldenrod" />
<Button x:Name="ReduceContentSize" Grid.Row="3" Grid.Column="0" Click="ReduceContentSize_Click">Reduce</Button>
<Button x:Name="IncreaseContentSize" Grid.Row="3" Grid.Column="1" Click="IncreaseContentSize_Click">Increase</Button>
<TextBlock Grid.Row="3" Grid.Column="2" Foreground="White">
The window is black
</TextBlock>
</Grid>
</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 > 150)
SizeChangeLabel.MinWidth = SizeChangeLabel.ActualWidth - _sizeChangeAmount;
if (SizeChangeLabel.MinHeight > 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>