Example #1
0
 private void OnSplitContainerCreated(object sender, ElementCreatedEventArgs e)
 {
     // Presists the Tag property of RadSplitContainer.
     var oldSplitContainer = e.SourceElement as RadSplitContainer;
     var newSplitContainer = e.CreatedElement as RadSplitContainer;
     if (oldSplitContainer != null && newSplitContainer != null)
     {
         newSplitContainer.Tag = oldSplitContainer.Tag;
     }
 }
Example #2
0
        private void OnSplitContainerCreated(object sender, ElementCreatedEventArgs e)
        {
            // Presists the Tag property of RadSplitContainer.
            var oldSplitContainer = e.SourceElement as RadSplitContainer;
            var newSplitContainer = e.CreatedElement as RadSplitContainer;

            if (oldSplitContainer != null && newSplitContainer != null)
            {
                newSplitContainer.Tag = oldSplitContainer.Tag;
            }
        }
Example #3
0
 private void OnPaneGroupCreated(object sender, ElementCreatedEventArgs e)
 {
     // Add any logic here for related to when the auto created RadPaneGrup instances are created.
 }
Example #4
0
 private void OnPaneGroupCreated(object sender, ElementCreatedEventArgs e)
 {
     // Add any logic here for related to when the auto created RadPaneGrup instances are created.
 }