vote up 1 vote down star

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.

Does anyone know how this could possibly be fixed?

Edit: Meant to mention it in my question, but I've tried enabling SnapsToDevicePixels anywhere and everywhere I can, to no avail.

flag

44% accept rate

2 Answers

vote up 1 vote down

Without seeing any code my guess is that you need SnapsToDevicePixels on the elements in the grid.

link|flag
I had this same issue too... if that works... rock on! – Timothy Khouri Nov 6 '08 at 1:24
Meant to mention it in my question, but I've tried enabling SnapsToDevicePixels anywhere and everywhere I can, to no avail. – Daniel Jennings Nov 6 '08 at 1:48
Can you provide a sample of that code? – Todd White Nov 6 '08 at 1:53
Ugh, I tried to write a sample but it doesn't capture the problem so I'll have to try to get more out from the "real" application to write a sample. – Daniel Jennings Nov 6 '08 at 2:09
Can you pin it down to particular cell content? Does forcing a redraw (minimise etc) remove the issue? Is it possible you accidentally have an empty column/row at that point? – Donnelle Nov 6 '08 at 3:36
show 4 more comments
vote up 1 vote down

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.

<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>

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.

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;
	}

Is this a reasonable approximation that can help lead to a solution?

link|flag
That'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. – Daniel Jennings Nov 6 '08 at 16:49
Interesting-- I put SnapsToDevicePixels on the window, the grid, all the labels, the buttons and the TextBlock, and I still get those lines. What size-related properties are you using on the window? (SizeToContent etc). – Donnelle Nov 6 '08 at 20:11
You could hack it by making the margins on the content -1. But I hate that. :( – Donnelle Nov 6 '08 at 20:20
The window is SizeToContent="WidthAndHeight". I'll try the Margins technique just for the hell of it. – Daniel Jennings Nov 7 '08 at 0:28
Did the margins fix it? – Donnelle Nov 19 '08 at 1:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.