Parametric Equalizer GUI in WPF [duplicate] - c#

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

Related

C# burning DVD+-VR with IMAPI2 [closed]

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 8 years ago.
Improve this question
I would like to find some information about DVD+-VR with IMAPI2. I guess it is possible to create and burning DVD-VR with IMAPI2 but I can not find examples how to do.
Do you have some idea or some example code?
Thank you very much.
Have a look at the following C# codeproject articles:
Burning and Erasing CD/DVD/Blu-ray Media with C# and IMAPI2, By Eric Haddan.
Creating a tool with the basic functionality of Nero Burning Room.
How to Create Optical File Images using IMAPIv2.0, By dmihailescu.
Example on how to create and burn ISO image files.
Creating Audio CDs using IMAPI2, By Eric Haddan.
Shows how to use IDiscFormat2TrackAtOnce interface for creating audio CDs.

Library for displaying music notation [closed]

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.

Automatic UI testing in Silverlight [closed]

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 8 years ago.
Improve this question
I want to automate the SilverLight Application for which i require to know the SilverLight Controls. But also i don't have the XAML file. Is there any way so that i can find the controls and can do the automation testing??
Have you tried Automa? Maybe it will be able to automate your SilverLight app. In the Automa Console there is the get_name_under_mouse() function which returns the name of a control under the mouse cursor (if it can read it).
You can try the VisualUIAVerify tool which can be used to get all the UI Elements and their properties required for Automation
Download link http://uiautomationverify.codeplex.com/

MS Access Query Designer - similar functionality using standard .NET 3.5 controls? [closed]

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 would like to achieve something very similar to Microsoft Access query designer - I am talking about a plane(canvas?)-like surface on which users can place and move controls. Is this even possible?
If it isn't possible with free .NET controls - then are there any paid ones, which offer similar functionality?
Anything is possible if you try hard enough.
I would explore WPF, it will provide capabilities to custom build your own controls and will get rid of that tedious work of keeping the UI updated.
Make sure to follow a good UI pattern if you do end up working with WPF, here is a good video that explains how to implement MVVM in WPF.

Drawing family trees with WPF [closed]

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

Categories