This commit is contained in:
Steven Kirk 2014-06-24 07:32:31 +02:00
Родитель e26f8f88de
Коммит 5c140f549e
2 изменённых файлов: 24 добавлений и 0 удалений

Просмотреть файл

@ -96,5 +96,29 @@ namespace Perspex.Direct2D1.RenderTests.Controls
this.RenderToFile(target);
this.CompareImages();
}
[TestMethod]
public void Border_Padding_Offsets_Content()
{
Decorator target = new Decorator
{
Padding = new Thickness(8),
Width = 200,
Height = 200,
Content = new Border
{
BorderBrush = Brushes.Black,
BorderThickness = 2,
Padding = new Thickness(2),
Content = new Border
{
Background = Brushes.Red,
}
}
};
this.RenderToFile(target);
this.CompareImages();
}
}
}

Двоичный файл не отображается.

После

Ширина:  |  Высота:  |  Размер: 640 B