Click here to Skip to main content
15,889,839 members
Articles / Web Development / HTML

MenuPilot 1.0 (Open-Source Context Menu for ASP.NET 2.0)

Rate me:
Please Sign up or sign in to vote.
4.94/5 (60 votes)
23 Dec 20063 min read 161.6K   1.2K   195  
Fine DHTML context menu with layout of Action Lists/Smart Tags known from Visual Studio .NET 2005
/*
Copyright � 2006 Annpoint, s.r.o.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

-------------------------------------------------------------------------

NOTE: Reuse requires the following acknowledgement (see also NOTICE):
This product includes DayPilot (http://www.menupilot.org) developed by Annpoint, s.r.o.
*/

using System.Drawing;
using System.Web.UI.WebControls;

namespace MenuPilot.Web.Ui
{
    public class WebColor
    {
        public static string StringFromColor(Color color)
        {
            WebColorConverter converter = new WebColorConverter();
            return (string)converter.ConvertTo(null, null, color, typeof(string));
        }

        public static Color ColorFromString(string hex)
        {
            WebColorConverter converter = new WebColorConverter();
            return (Color)converter.ConvertFrom(null, null, hex);
        }

    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Czech Republic Czech Republic
My open-source event calendar/scheduling web UI components:

DayPilot for JavaScript, Angular, React and Vue

Comments and Discussions