Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm searching for tutorials on how to draw a family tree with WPF (and C#).
Something like http://www.myheritage.nl/FP/family-tree.php?s=65040841 or Family.Show but for a complete beginner. Family.Show is a bit too complex to start. I don't want to implement external controls but instead I want to learn how to write them myself.
So I need to know everything like: how to draw the items, what the algorithms are to position/draw all elements, etc... but I could not find any beginners tutorial on this with WPF.
I hope somebody could help me.
Check out Family.Show:
http://www.vertigo.com/familyshow.aspx
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Which of these (https://stackoverflow.com/questions/492893/graph-drawing-c-library) libraries can be used to evaluate nodes coordinates? I mean I want to draw and manipulate graph by clicking on it to add some nodes or delete, and then evaluate coordinates using some lightweight library.
All I need is algorithm which could on dot file and speciefied layout (http://en.wikipedia.org/wiki/DOT_language) give me conformity of graph nodes and 2D points.
Prefferable languages: C++, C#, Java
I made a complete WPF MVVM sample of a "Nodes Editor" supporting drag and drop, and many interesting visual features. It looks like this:
Full Source Code on GitHub
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Is there a simple way, whether through a web service or just a library, to write/display music notation with C#? I have some data and am wondering if there is a way to show a staff with the given notes on it.
I've looked into MusicXML, but if I understand it correctly, it is purely a way to store the data - displaying it on a staff is a separate task. Short of manually using shapes (would be a lot of work) in HTML Canvas or WPF or what-have-you, is there some way to accomplish this?
Long list of background information and libraries for Java can be found here: https://stackoverflow.com/questions/5525959/are-there-any-music-notation-rendering-libraries-for-java.
A similar C# question can be found here: Draw a music staff in C#.
Here's an article describing how to show MusicXML notation with WPF: http://www.codeproject.com/Articles/89582/PSAM-WPF-Control-Library.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
From where I can find royalty free and free of charge sound effects for my C# project? You know, I need an alarm sound in .wav format. There might be some places in internet but I always trust you guys. Please help me.
The Free Sound Project freesound.org should be what you are looking for. This is my go-to place for sound effects etc
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Does anyone have any suggestions about where I can find a C# implementation for suffix arrays? I'd prefer not to reinvent the wheel...
A bit late, but here is another one: sais
Have you looked at sary? I haven't used it but it looks relevant
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I have found C++ FQA Lite very edificatory and would like to read more criticism. Could you recommend me something similar but concerning C#, please?
Thanks.
I don't think there is such a document. Most of the problems mentioned in the C++ FQA are not relevant for C# (and other languages).
You might want to read Common programming mistakes for .NET developers to avoid.