Hi,
i have this sample code:
RadPane formRadPane = new RadPane() { Header = "Not Document Pane", CanDockInDocumentHost = false };
Canvas cReference = new Canvas();
Image imgBg = new Image(new uri("Images/0.png"));
imgBg.Width = 2000;
imgBg.Height = 1980;
cReference.childer.Add(imgBg);
TextBlock txtBlock = new TextBlock();
txtBlock.Text = "This Pane Cannot be docked in to document host";
Canvas.SetLeft(txtBlock, 20);
Canvas.SetTop(txtBlock, 20);
cReference.childer.Add(txtBlock);
FormRadPane.Content = cReference;
when program run , the cReference's content Uncontrolled by formRadPane .that means cReference's content exceeds window area B.
How do I resolve this problem?