Maybe it is sizeable (I've never tried it), so try to play with mouse on the bottom of the event if it can change to resize cursor and if so, try to drag the panel up.
I don't know a way how you coudl replace it, especialy not in third party controls. You can only use it in your own controls (controls in your project) instead the standard one. Just drag and drop it...
It is not a debugger issue, but a compiler issue. I gues, that because your local machine is 64-bit, the compiler is looking for the referenced assemblies in wrong location. Try to force compilation...
It is because generics in C# don't support covariance and contravariance (althought CLR does). You can cast the instance to IElementUpdater<FooBar>, but not to...
If you declare it as Color[,,], is is allocated as one big portion of memory. I would try to declare it as so called "jagged arrays" as Color[][][], which needs more work to deal with, but splits the...
But it is question how clear is internaly implemented. I don't know, but I can imagine (althought it doens't semm to be smart) that clear just new internal array[] as a storage without leaven the...
It si because serialization of generics are gliched. To overcome it, you have to implement ISerializable interface, but in your case, it should be sufficient to change the type of the collection from...
Generally, the monitoring program must support it by not locking the file (it has to open it in shared mode). This OS/file system matter, so your options are limited. If it is possible, it would be...
Visual inheritance was allways trouble in VisualStudio, so I would prefere composition of user controls over inheritance. But if you really need it, check the z-order of the controls in the designer,...