Hi all,
I'm hoping someone else has come across this and knows the solution. I have a ultratexteditor field inside a panel inside a ultragroupbox (panel is overkill, but I wanted to see if it made a difference, it doesn't). When I set the right anchor point on my ultratexteditor the field runs off the page. It's strange, because I've done this before on other controls with no issue, however I can't seem to get it to work here.
Thanks.
I've experienced odd issues with the Anchor property on various controls myself, and it seems to be with the implementation in .NET, as the Infragistics controls do not have any control over how the Anchor behaves, as far as I am aware. A case where I saw this was if I had some controls within a UserControl and resized that UC at design-time, then did an Undo, the controls anchored within the UC would now be the wrong size and would run off of the page like is shown in your screen shot.
If this is an issue that you can reproduce in a small sample, you could submit it to Developer Support to see if there is anything that can be found, but as stated above I'm not sure if this is something we would have any control over.
-Matt
I also had this problem, in my case I worked with a base form.
On the forms that inherited this base form I added controls and set thea anchor to top,left,right and top. On run-time the anchor of the controls where off. Most off them will run off the page, this was in my case because the base form still had a own clientsize set (this.ClientSize = new System.Drawing.Size(500, 500);) and the child form was set to an other clientsize (this.ClientSize = new System.Drawing.Size(800, 800);).
The anchor work perfect once I removed the clientsize property on my base form.