Application disappears from Alt-tab task list when displaying CollectionForm

E

emcc

When a CollectionEditor displays a CollectionForm (by clicking on a
Collection in a PropertyGrid) the application icon is no longer shown
in the task list displayed using the Alt-tab key. Any suggestions how
to fix this? Do I need to modify style of CollectionForm to do this?
How can I do this?
 
E

emcc

I managed to fix this, by deriving from CollectionEditor, and
overriding CreateCollectionForm. Then set the form property
ShowInTaskBar to true.
To change the icon displayed in the taskbar, I used
form.Icon = new Icon(typeof(MyApp), "app.ico");

Now I only have to find out how to change colour of property items in
PropertyGrid, and how to use tab/arrow keys in PropertyGrid,....
(I wonder was it a good idea to have used .net in the first place.)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top