I'd need to reset the Infragistics toolbars location, in order do not have empty spaces between toolbars. Is there a way to do it?
I tried
Me._ToolbarsManager.RightAlignedMenus = Infragistics.Win.DefaultableBoolean.True Me._ToolbarsManager.RightAlignedMenus = Infragistics.Win.DefaultableBoolean.False
does not work... (
I have obtained this
I need just to align them to Left, but not to put to left all the toolbars each in a new column...
This is because the user is able to move the toolbars, but that toolbars should be always Aligned to left, and not restored as it was when the form was open.
I observed the every time I close and reopen the form, the alignment is OK.
I did
For intI As Integer = 0 To Me._ToolbarsManager.Toolbars.Count - 1 Dim objToolbar As UltraToolbar = Me._ToolbarsManager.Toolbars(intI) objToolbar.DockedRow = objToolbar.DockedRow objToolbar.DockedColumn = objToolbar.DockedColumn Next intI
I need something like objToolbar.ResetPosition() or AlignToLeft()
Hi serhiol,
I am checking about the progress of this issue. Please let me know If you need any further assistance on this.
Could you please review the sample attached to this post and see if it meets your requirements(move one of the toolbars and press the button in the bottom right corner). Please feel free to let me know if I misunderstood you or if you have any other questions.
Hi, Boris
What kind of component? I did
Me._ToolbarsManager.SaveAsXml("C:\test.tst", True) Me._ToolbarsManager.LoadFromXml("C:\test.tst")
but this did not help...