Additional toolbar (two toolbars)

  • Thread starter Thread starter dim
  • Start date Start date
D

dim

Have seen some apps with more than one toolbar controls on the form
one is down as usual integrated with the menu and one is at the top often
perceeded by a textbox / combo
something like Internet Explorer (with enabled addressbar) on Pocket PC
How....... two toolbars??????



Thx
 
Hi,

You could probably do the top toolbar with a custom control, containing the
textbox or combobox like you describe.
Basically, you write your own class that inherits from Control. This
custom control can contain other controls, (such as a textbox, and possibly
some custom buttons with icons), and you can override the paint event to
have it display custom drawing as well.

See the custom control quickstarts listed at the bottom:
http://samples.gotdotnet.com/quickstart/CompactFramework/

-Katie

This posting is provided "AS IS" with no warranties, and confers no rights.

***.Net Compact Framework Info***
Faq:
http://msdn.microsoft.com/mobility/prodtechinfo/devtools/netcf/FAQ/default.a
spx
QuickStarts: http://samples.gotdotnet.com/quickstart/CompactFramework/
Samples:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnnetcomp/h
tml/CompactfxTechArt.asp

--------------------
| From: "dim" <[email protected]>
| Subject: Additional toolbar (two toolbars)
| Date: Tue, 20 Jan 2004 13:37:35 +0100
| Lines: 11
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
| Message-ID: <#[email protected]>
| Newsgroups: microsoft.public.dotnet.framework.compactframework
| NNTP-Posting-Host: h117n2fls32o988.telia.com 62.20.177.117
| Path:
cpmsftngxa07.phx.gbl!cpmsftngxa10.phx.gbl!TK2MSFTNGXA05.phx.gbl!TK2MSFTNGP08
..phx.gbl!tk2msftngp13.phx.gbl
| Xref: cpmsftngxa07.phx.gbl
microsoft.public.dotnet.framework.compactframework:43486
| X-Tomcat-NG: microsoft.public.dotnet.framework.compactframework
|
| Have seen some apps with more than one toolbar controls on the form
| one is down as usual integrated with the menu and one is at the top often
| perceeded by a textbox / combo
| something like Internet Explorer (with enabled addressbar) on Pocket PC
| How....... two toolbars??????
|
|
|
| Thx
|
|
|
 
Back
Top