public CustomersLegend()
        {
            InitializeComponent();

            DataContext = this;
            instance    = this;
        }
 public static CustomersLegend Get()
 {
     if (instance == null)
     {
         instance = new CustomersLegend();
     }
     return(instance);
 }