MyControl.Margin.Left = 10 ;
// Error
// "Cannot modify the return value of 'System.Windows.FrameworkElement.Margin' because it is not a variable"
|
|
MyControl.Margin.Left = 10 ; // Error
|
|||
|
|
|
|
The problem is that Even though you can change the value of the Instead, you'll need to set the
As a note for library design, I would have vastly preferred it if
No worrying about odd behaviour of mutable value types, nice and readable, all one expression... |
||||||||||
|
|
|
See this MSDN social page with a very similar query - it looks like it has to do with structs versus classes. Good luck! |
||
|
|
|
|
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
|
||
|
|
|
|
|
||||||
|
|
|
The (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
If you are going to set all the margins, just create a
|
||
|
|