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

Anchor setting doesnt work on RadDock

2 Answers 86 Views
Dock
This is a migrated thread and some comments may be shown as answers.
Tanser
Top achievements
Rank 1
Tanser asked on 25 Apr 2014, 11:40 AM
Hi,

I have RadRichTextBox, and i want to set left,right,top and bottom anchor to my richtextbox. I chance properties and save and close the form. After that, when i open again that form, richtextbox disappear. 

Please check the video that below.

https://drive.google.com/file/d/0B3o1p85K5xQTRTBTNXg3eFFMOWc/edit?usp=sharing

2 Answers, 1 is accepted

Sort by
0
Accepted
Dimitar
Telerik team
answered on 28 Apr 2014, 12:01 PM
Hello Tanser,

Thank you for writing.

Yes, this is considered an issue and I have logged it in our Feedback Portal. You can track the item for status changes and add your vote/comment for it here.

To work around this, you can set the the Anchor property in the form's load event:
private void Form1_Load(object sender, EventArgs e)
{
    this.radRichTextBox1.Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right | AnchorStyles.Top;
}

Your Telerik Points have been updated for this report.

Should you have any other questions do not hesitate to ask.

Regards,
Dimitar
Telerik
 
Check out Telerik Analytics, the service which allows developers to discover app usage patterns, analyze user data, log exceptions, solve problems and profile application performance at run time. Watch the videos and start improving your app based on facts, not hunches.
 
0
Tanser
Top achievements
Rank 1
answered on 28 Apr 2014, 12:45 PM
Thanks Dimitar,

i will follow your feedback.
Tags
Dock
Asked by
Tanser
Top achievements
Rank 1
Answers by
Dimitar
Telerik team
Tanser
Top achievements
Rank 1
Share this question
or