vote up 20 vote down star

MyControl.Margin.Left = 10 ;

// Error
// "Cannot modify the return value of 'System.Windows.FrameworkElement.Margin' because it is not a variable"

flag

5 Answers

vote up 11 vote down check

The problem is that Margin is a property, and its type (Thickness) is a value type. That means when you access the property you're getting a copy of the value back.

Even though you can change the value of the Thickness.Left property for a particular value (grr... mutable value types shouldn't exist), it wouldn't change the margin.

Instead, you'll need to set the Margin property to a new value. For instance (coincidentally the same code as Marc wrote):

Thickness margin = MyControl.Margin;
margin.Left = 10;
MyControl.Margin = margin;

As a note for library design, I would have vastly preferred it if Thickness were immutable, but with methods that returned a new value which was a copy of the original, but with one part replaced. Then you could write:

MyControl.Margin = MyControl.Margin.WithLeft(10);

No worrying about odd behaviour of mutable value types, nice and readable, all one expression...

link|flag
kudos for looking up the actual type... I confess to cheating with var - ahem, sorry; I mean "using an appropriate language feature" ;-p – Marc Gravell Jun 16 at 20:35
It helped that the error message contained the fully qualified type name. With a quick bookmark for MSDN, I just needed "msdn System.Windows.FrameworkElement.Margin" on the address bar to get to the right page... – Jon Skeet Jun 16 at 20:36
coincidentally huh? ;) – zvolkov Jun 16 at 20:42
Marc, zvolkov has discovered our secret! It turned out it was way too easy to get 200 in a day, so I thought I'd set myself more of a challenge and try to get the top 2 users. Getting "Marc" as a moderator was just a bonus... ;) – Jon Skeet Jun 16 at 20:52
But what about the others of us? I mean me? do they know about the "legion" script yet? – Marc Gravell Jun 16 at 23:09
show 1 more comment
vote up 1 vote down

See this MSDN social page with a very similar query - it looks like it has to do with structs versus classes. Good luck!

link|flag
vote up 4 vote down

One would guess that (and my WPF is a little rusty right now) that Margin takes an object and cannot be directly changed.

e.g

MyControl.Margin = new Margin(10,0,0,0);
link|flag
vote up 2 vote down

Margin is returning a struct, which means that you are editing a copy. You will need something like:

var margin = MyControl.Margin;
margin.Left = 10;
MyControl.Margin = margin;
link|flag
MyControl.Margin = margin; – TheMissingLINQ Jun 16 at 20:33
(cheers, fixed some time ago... I expect you needed a page refresh ;-p) – Marc Gravell Jun 16 at 20:37
Heh, if only we had Ajax comment updates so I didn't look like a tool... – TheMissingLINQ Jun 16 at 20:48
vote up 2 vote down

The Margin property returns a Thickness structure, of which Left is a property. What the statement does is copying the structure value from the Margin property and setting the Left property value on the copy. You get an error because the value that you set will not be stored back into the Margin property.

(Earlier versions of C# would just let you do it without complaining, causing a lot of questions in newsgroups and forums on why a statement like that had no effect at all...)

To set the property you would need to get the Thickness structure from the Margin property, set the value and store it back:

Thickness m = MyControl.Margin;
m.Left = 10;
MyControl.Margin = m;

If you are going to set all the margins, just create a Thickness structure and set them all at once:

MyControl.Margin = new Thickness(10, 10, 10, 10);
link|flag

Your Answer

Get an OpenID
or

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