Azaret / superputty

Automatically exported from code.google.com/p/superputty
MIT License
0 stars 0 forks source link

Avoid additional item in task bar for modal dialogs (options, create/edit session ...) #108

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Imo modal dialogs like Options, Create/Edit Session and so on should not be 
shown in the task bar. Also they should not have an icon and should be neither 
maximizable nor minimizable. This is I think the behaviour in most windows 
applications. The options in the designer should be:
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.ShowIcon = false;
            this.ShowInTaskbar = false;

This would affect dlgLogin, dlgEditSession, dlgRenameItem and dlgFindPutty. 

One could also argue that those dialogs should be of fixed size 
(this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;) as 
is the case in most win applications and in windows itself. Personally I prefer 
that they are resizable so that one can get larger input fields if needed.

Original issue reported on code.google.com by breker.c...@gmail.com on 21 May 2012 at 12:00

GoogleCodeExporter commented 9 years ago

Original comment by btatey...@gmail.com on 3 Jun 2012 at 3:39