protected override void OnActivated()
        {
            if (mapView == null)
            {
                mapView = WorkItem.Items.AddNew<CustomerMap>();

                TabSmartPartInfo info = new TabSmartPartInfo();
                info.Title = "Customer Map";
                info.Description = "Map of the customer location";
                WorkItem.Workspaces[CustomerWorkItem.CUSTOMERDETAIL_TABWORKSPACE].Show(mapView, info);
            }
        }
Exemple #2
0
        protected override void OnActivated()
        {
            if (mapView == null)
            {
                mapView = WorkItem.Items.AddNew <CustomerMap>();

                TabSmartPartInfo info = new TabSmartPartInfo();
                info.Title       = "Customer Map";
                info.Description = "Map of the customer location";
                WorkItem.Workspaces[CustomerWorkItem.CUSTOMERDETAIL_TABWORKSPACE].Show(mapView, info);
            }
        }
        protected override void OnActivated()
        {
            if (mapView != null)
            {
                return;
            }

            mapView = WorkItem.Items.AddNew <CustomerMap>();
            var info = new TabSmartPartInfo
            {
                Title       = "Customer Map",
                Description = "Map of the customer location"
            };

            WorkItem.Workspaces[CustomerWorkItem.CUSTOMERDETAIL_TABWORKSPACE].Show(mapView, info);
        }