vote up 0 vote down star

I ask about where and how to add those controls to a Windows Forms Project. I want to know if is considerable to create interfaces and static classes for call methods for build these controls and use extenders for data binding.

Note the namespace assigned for that class :

namespace SResocentroAnalytics.Controls.WinForms.Chart
{
    /// <summary>
    /// CustomDynaChartBuilder is a static class built-in for recieve a group or single series and create a Custom Chart
    /// </summary>
    public static class CustomDynaChartBuilder
    {
        public static void BuildCustom3dPie() { }
    }

    /// <summary>
    /// CustomDynaChartExtensions is a static class built-in for bind it
    /// </summary>
    public static class CustomDynaChartExtensions
    {
        public static void FillWithCustomSerieByArray() { }
    }
}

Thanks

flag

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.