Visual Studio 2005 Start Page

G

Guest

Hi,

The Start Page for Visual Studio 2005 has a set of "panels" that contains
different kinds of links.

I would like to have a similar look and feel for the start page of my my
application - is it possible to build such an interface (a portal look) in my
application using Visual Studio 2005? If so how?

thanks,
hari
 
J

Jeffrey Tan[MSFT]

Hi hari,

Thanks for your post.

I am not sure about what is your main obstacles, I think we can easily use
LinkLabel control with Panel control to achieve the similiar effect. If you
still have any clear, please feel free to tell me, thanks

Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.
 
G

Guest

What I meant was the look and feel of the different panels for "Recent
Projects", "Gettnig Started" etc.

Is that a bitmap in the panel that shows the "title bar" for these panels?
Is it a bitmap that gives the look of the rounded edges?
 
J

Jeffrey Tan[MSFT]

Hi,

Thanks for your feedback.

To get such style and look, we need do some customization and customized
painting to the Panel control. The article below shows how to achieve the
similiar effect:
"Customising the .NET Panel control"
http://www.codeproject.com/vb/net/custompanel.asp

Hope it helps

Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.
 
H

Herfried K. Wagner [MVP]

Jeffrey,

"Jeffrey Tan[MSFT]" said:
To get such style and look, we need do some customization and customized
painting to the Panel control. The article below shows how to achieve the
similiar effect:
"Customising the .NET Panel control"
http://www.codeproject.com/vb/net/custompanel.asp

According to Spy++ the border of each of the panels on VS 2005's start page
consists of a bunch (eight or more) Win32 'STATIC' controls, which is IMO a
waste of resources ;-). I wonder why this hasn't been implemented using a
single custom-drawn panel or static control...
 
J

Jeffrey Tan[MSFT]

Hi Herfried,

Yes, I have detected this yesterday with the same approach as you :). I
also not sure why the VS.net team use multiple labels controls to construct
the panel style look. Maybe they have their reasons.

Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.
 

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