RadToolBar for ASP.NET

Defining the Structure through XML Send comments on this topic.
Defining the ToolBars Structure > Defining the Structure through XML

Glossary Item Box

You can populate Telerik RadToolBar from a static XML content file. Use the ContentFile property to appoint the location of  the XML file.

Example:

Programmatically defined

ASPX Copy Code
<rad:RadToolBar
       
runat="server"
       
Skin="MacOS"
       
ContentFile="toolbar.xml">
</
rad:radtoolbar>
        
XML Copy Code
<?xml version="1.0" encoding="utf-8" ?>
<
radToolBar>
   
<Button ToolTip="New Document" CommandName="new" AutoPostBack="False" ButtonImage="new.gif" DisplayType="ImageOnly" Enabled="True" Visible="True" />
   
<Separator />
   
<ToggleButton CommandName="toggle" AutoPostBack="False" DisplayType="TextOnly" Enabled="True" Width="100px" Toggled="True" ButtonText="toggle button" Visible="True" />
</
radToolBar>