Intellisense Popup Sizing

SyntaxEditor for Windows Forms Forum

Posted 17 years ago by Anthony
Version: 4.0.0244
Avatar

Is it possible for the Intellisense Member popup to be made sizeable and for the size to be remember between activations ?

If this could be added to a future release this would be appreciated. Just want it to work in the same way as Visual Studio.

Comments (3)

Posted 17 years ago by Actipro Software Support - Cleveland, OH, USA
Avatar
Hi Anthony,

Thanks for the feature idea!


Actipro Software Support

Posted 16 years ago by Lee Grissom - Quest Software, Inc.
Avatar
Any word on this? Maybe I could create a custom descendent of IntelliPromptMemberListBox that allows the window to be sizeable?

Maybe something like this:
protected override CreateParams CreateParams
{
  get
  {
    int WS_DLGFRAME = 0x00400000;
    int WS_SIZEBOX = 0x40000;
    CreateParams parameters = base.CreateParams;
    parameters.Style = parameters.Style & ~WS_DLGFRAME | WS_SIZEBOX;
    return parameters;
  }
}
--
Lee

[Modified at 04/28/2008 05:54 PM]

[Modified at 04/28/2008 06:18 PM]
Posted 16 years ago by Actipro Software Support - Cleveland, OH, USA
Avatar
Sorry, this feature isn't implemented yet. It would require changes to our popup class to allow for border resizing.

If this is something you require immediately, we could probably add it per the information on this page:
http://www.actiprosoftware.com/Purchase/ConsultingServices.aspx


Actipro Software Support

The latest build of this product (v24.1.0) was released 2 months ago, which was after the last post in this thread.

Add Comment

Please log in to a validated account to post comments.