Changing C1Upload's Built-in Visual Style
This task illustrates how to change your visual style in Source view, Design view, and in code.
Changing the visual style using the designer:
To change the visual style of your C1Upload, follow these steps:
1. Click C1Upload’s smart tag to open the C1Upload Tasks.
2. Click the VisualStyles drop-down arrow and select a visual style from the list. For this example, choose Office2007Black.
The Office2007Black visual style is applied to the C1Upload.
Changing the visual style in source view:
To change the visual style of your C1Upload in Source view, add VisualStyle="Office2007Black" to the <cc1:C1Upload> tag so that it resembles the following:
<cc1:C1Upload ID="C1Upload1" runat="server" VisualStyle="Office2007Black" VisualStylePath="~/C1WebControls/VisualStyles">
Changing the visual style programmatically:
To change the visual style, follow these steps:
1. Import the following namespace into your project:
Imports C1.Web.UI.Controls.C1Upload
• C#
using C1.Web.UI.Controls.C1Upload;
2. Add the following code to the Page_Load event:
Me.C1Upload1.VisualStyle = "Office2007Black"
• C#
this.C1Upload1.VisualStyle = "Office2007Black";
3. Run the program.
This task illustrates the following
The following image shows a C1Upload with the Office2007Black visual style:
|