views:

66

answers:

0

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