Microsoft Technology, .Net, BizTalk, Sharepoint & etc.

Liedong(Ken) Zheng, Senior SharePoint Developer at SIMPLOT

Archive for July 9th, 2008

Expression Blend Tutorial

Posted by ken zheng on July 9, 2008

Today I have found very good tutorials for Expression Blend from www.movielibrary.lynda.com. These tutorials covers the topics like
Overview and Installation, The Workspace, Managing Your Projects, Drawing in Blend, Appearance, Working with Text, Using 3D, Media Integration, Layout Controls, Media Integration, Layout Controls, Transformations, Animation and Interactivity, WPF Controls, Working with Data, Application Deployment, Please find following Expression Blend tutorial pages
Expression Blend
Getting Started with Expression Blend 3.75 hours

Expression Blend Beta Preview 2.5 hours

Expression Design
Getting Started with Expression Design

Hope these tutorials are useful. Suggest the some more best tutorials on this topic in bellow comment section.

Posted in Uncategorized | Tagged: , | Leave a Comment »

Two rows of tab headers in TabContainer in Ajax Control Toolkit

Posted by ken zheng on July 9, 2008

I actually found the answer but it took a lot of digging on the net. It’s from Nazar Rizvi’s blog

http://www.narizvi.com/blog/post/Two-rows-of-tab-headers-in-TabContainer-in-Ajax-Control-Toolkit.aspx

You have to go into the Tab.css and change the “.ajax__tab_default .ajax__tab_header {}” line. Then the Tab headers will wrap.

If you don’t wan to re-compile the code, just do

tag at the top:
!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”;>

then:
style type=”text/css”
.ajax__tab_xp .ajax__tab_header {white-space:normal;}
/style>

and:

ajaxToolkit:TabContainer runat=”server” ID=”GIListTabs” Width=”100%” CssClass=”ajax__tab_xp”

Posted in Uncategorized | Tagged: , | 1 Comment »