This is a migrated thread and some comments may be shown as answers.

want Create Interface RadPane join user control

1 Answer 22 Views
Docking
This is a migrated thread and some comments may be shown as answers.
secret$developer
Top achievements
Rank 1
secret$developer asked on 02 Jul 2011, 09:56 AM
in RadPaneA have the User ControIA            
I  want  Click RadPaneA then click Button change from User controlA to User controlB 
I needs Create Interface join ?
Help me  

 thank you very much

1 Answer, 1 is accepted

Sort by
0
bg
Top achievements
Rank 1
answered on 06 Jul 2011, 04:12 PM
If you want to change the content of a pane just change the Content property to your user control (User Control B).
If you want to select a different pane in a group you can do it this way:
private void ActivatePane(RadPane pane)
        {
                var parentGroup = (RadPaneGroup)pane.Parent;
                parentGroup.SelectedItem = pane;
                parentGroup.Focus();
        }
Tags
Docking
Asked by
secret$developer
Top achievements
Rank 1
Answers by
bg
Top achievements
Rank 1
Share this question
or