FormBorderStyle.None hide windows bar...

C

cold80

I would like to use the value FormBorderStyle.None for the border of
the form, so I can hide the title bar of my window. But when I set
this property I also get that the windows bar is hidden. I would like
this bar to be shown as my users would use the taskbar to switch to
other programs. I've looked on the internet for a solution, but it
seems that everybody want the opposite (the windows bar hidden).

Thank you in advance for your help

Cold
 
H

Herfried K. Wagner [MVP]

cold80 said:
I would like to use the value FormBorderStyle.None for the border of
the form, so I can hide the title bar of my window. But when I set
this property I also get that the windows bar is hidden. I would like
this bar to be shown as my users would use the taskbar to switch to
other programs. I've looked on the internet for a solution, but it
seems that everybody want the opposite (the windows bar hidden).

What's the "windows bar"? Maybe setting the form's 'ShowInTaskbar' property
to 'True' will solve the problem.
 
K

kimiraikkonen

I would like to use the value FormBorderStyle.None for the border of
the form, so I can hide the title bar of my window. But when I set
this property I also get that the windows bar is hidden. I would like
this bar to be shown as my users would use the taskbar to switch to
other programs. I've looked on the internet for a solution, but it
seems that everybody want the opposite (the windows bar hidden).

Thank you in advance for your help

Cold

Setting your form's FormBorderStyle to None shouldn't hide Windows
Taskbar, only your form's title bar and borders.. Maybe your Windows
taskbar was set as "hide automatically" in taskbar settings, and you
may think that your application causes this behaviour...

Thanks,

Onur Güzel
 
D

Dmitriy Vlasov

Just try to set both FormBorderStyle to None and WindowState to Maximized and you will see what he talking about.



kimiraikkonen wrote:

Re: FormBorderStyle.None hide windows bar...
25-???-08


Setting your form's FormBorderStyle to None shouldn't hide Windows
Taskbar, only your form's title bar and borders.. Maybe your Windows
taskbar was set as "hide automatically" in taskbar settings, and you
may think that your application causes this behaviour...

Thanks,

Onur G=FCzel

Previous Posts In This Thread:

On 19 ??? 2008 ?. 18:18
Herfried K. Wagner [MVP] wrote:

Re: FormBorderStyle.None hide windows bar...

What's the "windows bar"? Maybe setting the form's 'ShowInTaskbar' property
to 'True' will solve the problem.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>

On 20 ??? 2008 ?. 0:41
cold80 wrote:

FormBorderStyle.None hide windows bar...
I would like to use the value FormBorderStyle.None for the border of
the form, so I can hide the title bar of my window. But when I set
this property I also get that the windows bar is hidden. I would like
this bar to be shown as my users would use the taskbar to switch to
other programs. I've looked on the internet for a solution, but it
seems that everybody want the opposite (the windows bar hidden).

Thank you in advance for your help

Cold

On 25 ??? 2008 ?. 17:16
kimiraikkonen wrote:

Re: FormBorderStyle.None hide windows bar...

Setting your form's FormBorderStyle to None shouldn't hide Windows
Taskbar, only your form's title bar and borders.. Maybe your Windows
taskbar was set as "hide automatically" in taskbar settings, and you
may think that your application causes this behaviour...

Thanks,

Onur G=FCzel

EggHeadCafe - Software Developer Portal of Choice
Parsing the Querystring with Javascript
http://www.eggheadcafe.com/tutorial...a-74de5cbeef13/parsing-the-querystring-w.aspx
 
S

Scott M.

Indeed, when I tried those settings, the resulting form does take up my
entire screen (including the Windows Taskbar, which I do not have set to
AutoHide).

-Scott
 

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