How do I set the Size of a DockPanel in a docked state at runtime? Here's my simple code.
panel = new Telerik.WinControls.Docking.DockPanel();
panel.DockState = Telerik.WinControls.Docking.
DockState.Docked;
panel.Size = new Size(250, 250);
For some reason the Size is not set. It just remains the same.
Thanks,
Ryan
Hi,
Is there an easy way to have a method called every time the selection change (added or removed node) ? A function called SelectionChanged?
Actually the Selecting event is fired only when node are added. When you use multi select you can remove a node by clicking on it with the CTRL key down. In this case the Selecting event is not fired...
Do you plan to add this feature in a next release?
Thanks in advance,
Best regards,
Fred
radChart1.Skin = e.SkinName; |
radChart1.Refresh(); |
e.SkinName is a string of the skin name passed down from another form.
The first time I change it, the graph background changes, but nothing happens to the plot area. After that, nothing happens at all. I have debugged and found no problems with passing the value through the event, as e.SkinName still returns a valid skin name, such as "Default".
How can I implement this into my program?
Thanks in advance.