Hi
Is it possible in the command event of a radDock to access another radDock. I know I can get the sender raddock but I need to get hold of another raddock so I can change it's skin.
Solved it like this
for (int i = 1; i < RadDockLayout1.RegisteredDocks.Count(); i++)
{
if (RadDockLayout1.RegisteredDocks[i].ID.ToString() == ActiveSummaryDockID)
{
RadDockLayout1.RegisteredDocks[i].Skin = "WebBlue";
break;
}