コード例 #1
0
        private void PropertyControl_AddLayer()
        {
            Layerstack  currentLayerStack = (selectedNode as Workstation).Layerstack;
            CustomLayer newCustomLayer    = new CustomLayer(currentLayerStack.CreateUniqueName(), currentLayerStack.GetSize() - 1);

            currentLayerStack.AddLayer(newCustomLayer);
            propertyControl.AddLayerToLayerConfigControl(newCustomLayer.GetLayerName(), true);
        }