Pattern for writing Chart Components [closed] - c#

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have to write a chart component from scratch in Silverlight 3 and wonder if anybody knows if there are any design patterns, guidelines, tutorials that can help with the process?

Take a look a the Silverlight Toolkit. It is open-source and has chart controls written by Microsoft. This is probably the closest thing to design guidelines you can get.

Related

How can i design my own control in VS 2010 from scratch? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I wish to design my own control in C# for visual studio.I have followed the link Create Custom Control and would like to see some more which involves making control from scratch
A simple search on StackOverflow and Google are a great place to start.
If you are wanting to create a control that handles its own rendering, you may want to look into using the objects in the System.Drawing namespace (namely System.Drawing.Graphics).

How can we differentiate c# and silverlight utility classes and ui? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
any one plz tell me how to differentiate the c# and silverlight interms of utility classes,ui controls(ui rendering) and package deployment?
i need to know all these details anyone plz help me out.
The Silverlight classes offered out-of-the-box are listed on MSDN - as are the various C# class libraries.
Assuming that your question comes from wanting to know which C# classes are not available in Silverlight (quite a few as I remember)

execute photoshop action from VB UI [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
i am new to this forum, so please excuse me if i ask any silly question.
I am trying to run photoshop action from VB interface. can any body guide me on how should i proceed.
thank you
to interact with photoshop in c# you can see this page, the simple and basic manual to scripting photoshop

How to search by columns in a WPF DataGrid? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Can't find any information in Web, so is there any standard possibilities for creating search by columns in default WPF DataGrid?
Here is a good one for you.
But, there is no Standard easy way of doing this. I think the easiest way is writing your own method which hopefully would save your time and give you more flexibility.

wpf 3D animation [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Can I use WPF to import a 3D character and manually animate it like the skinned model
in XNA?
The short answer is no. There is no standard library in WPF which will support this.
The long answer is Yes; if you write all of the underlying code yourself.

Categories