danvervlad

Results 5 comments of danvervlad

Hi! Any news about saving/loading?

I've implemented import/export for the scene in my project. Currently, I create custom lite model classes for every node and connections and place it in scene. After I've just serialized...

> hi, Wouterdek, i wrote a tool based on your repository and serialize/deserialize the nodes and connections by my self. > now the question is when massive nodes was loaded,...

I'm creating nodes in task, but adding in UI thread like this Application.Current.Dispatcher.BeginInvoke(DispatcherPriority.Normal, (Action)delegate() { var suppressChangeNotificationsToken = networkViewModel.SuppressChangeNotifications(); networkViewModel.Nodes.AddRange(addedNodes); networkViewModel.Connections.AddRange(addedConnections); suppressChangeNotificationsToken.Dispose(); SetValuesInEditors(addedNodesPairs); }); So, creating of 80 nodes and...

Yes, you are right. I've created separate issue for that https://github.com/Wouterdek/NodeNetwork/issues/43