示例#1
0
        private void CreateGraphView()
        {
            _graphView = new EasyGraphView(this)
            {
                name = "GraphViewDemo",
            };
            _graphView.StretchToParentSize();
            _graphView.deleteSelection += DeleteSelectionImplementation;

            rootVisualElement.Add(_graphView);
        }