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.
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;
}
}
Please log in to a validated account to post comments.