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?