This is a little C# specific. The default behaviour of a resizable dialog box is that title bar click maximizes the dialog and a second double click restores the size. However what I want is to have the Help button turned on, which means the minimize and maximize buttons are hidden, but would still like the title bar double click behaviour. This might be achievable with some subclassing, but perhaps someone has some good ideas on this.
|
|
|
||
|
|
|
|
You should be able to handle the WM_NCHITTEST and look for HT_CAPTION, see here for details You'll need to override the WndProc to be able to handle these messages, this is demonstrated here |
||||
|
