static void RegisterBindings(IInspector inspector, PropertyPath pathToValue, VisualElement toBind, PropertyElement root)
        {
            var fullPath = new PropertyPath();

            fullPath.PushPath(inspector.PropertyPath);
            fullPath.PushPath(pathToValue);
            root.RegisterBindings(fullPath, toBind);
        }