[CLOSED] Change background color of Toolbar

  1. #1

    [CLOSED] Change background color of Toolbar

    I want change background color of Toolbar, show me. Thanks
    Last edited by Daniil; Jun 08, 2012 at 2:27 PM. Reason: [CLOSED]
  2. #2
    Hi,

    Example
    <%@ Page Language="C#" %>
     
    <%@ Register Assembly="Ext.Net" Namespace="Ext.Net" TagPrefix="ext" %>
    
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title>Ext.NET Example</title>
    
        <style type="text/css">
            .my-toolbar {
                background-image: none;
                background-color: Red;
            }
        </style>
    </head>
    <body>
        <ext:ResourceManager runat="server" />
        <ext:Toolbar runat="server" Cls="my-toolbar">
            <Items>
                <ext:Button runat="server" Text="Button" />
            </Items>
        </ext:Toolbar>
    </body>
    </html>

Similar Threads

  1. Replies: 2
    Last Post: Dec 29, 2011, 2:11 AM
  2. [CLOSED] Background color toolbar
    By 78fede78 in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Feb 14, 2011, 11:33 AM
  3. Replies: 12
    Last Post: Jun 17, 2009, 12:07 PM
  4. [CLOSED] Change background color of MultiSelect
    By Jurke in forum 1.x Legacy Premium Help
    Replies: 3
    Last Post: Jan 30, 2009, 12:10 PM
  5. Change Tab background color or background image
    By georgelanes in forum 1.x Help
    Replies: 0
    Last Post: Nov 06, 2008, 3:55 PM

Posting Permissions