Message 1 of 10
Dockable window does not resize
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Im creating an addin with a dockable window. It works fine but when the dockable window is floating it is not possible to rezise it anymore. (draging the edge does not work.)
i create the dockable window with the following code:
Form1 form = new Form1(inventor); UserInterfaceManager uiMan = inventor.UserInterfaceManager; docableWin = uiMan.DockableWindows.Add("###############", "###############", "###############"); docableWin.AddChild(form.Handle.ToInt64()); docableWin.Title = "SheetOverView"; docableWin.ShowTitleBar = true; docableWin.DisabledDockingStates = DockingStateEnum.kDockBottom | DockingStateEnum.kDockTop; docableWin.SetMinimumSize(200, 150); if (!docableWin.IsCustomized) { docableWin.DockingState = DockingStateEnum.kDockRight; docableWin.Visible = true; } form.Show(); docableWin.Visible = true;
any on has some idea why it does not work or what i can try to make it work.
Jelte de Jong
Did you find this post helpful? Feel free to Like this post.
Did your question get successfully answered? Then click on the ACCEPT SOLUTION button.
Blog: hjalte.nl - github.com