Question

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'   
Était-ce utile?

La solution

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);
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top