Вопрос

This is the property i want to change

This is what i have try:

CartesianGrid cartesianGrid = area.GetGrid<CartesianGrid>();
cartesianGrid.Size = 5;

And this is my error:

Cannot implicitly convert type 'int' to 'System.Drawing.Size'   
Это было полезно?

Решение

As the documentation you linked clearly states, the Size property is expecting an object of type System.Drawing.Size. You are giving it an integer.

Try making a Size object and setting it to that instead. Something like:

cartesianGrid.Size = new Size(5,5);
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top