如何使用WPFToolKit Chart private void button1_Click(object sender, EventArgs e) { var s = new Series(); s.ChartType = SeriesChartType.Line; var d = new DateTime(2013, 04, 01); s.Points.AddXY(d, 3); s.Points.AddXY(d.AddMonths(-1), 2); s.Points.AddXY(d.Add
http://www.dotnetperls.com/chart using System; using System.Windows.Forms; using System.Windows.Forms.DataVisualization.Charting;////net4.0需添加引用 namespace WindowsFormsApplication1 { public partial class Form1 : Form { public Form1() { InitializeCompo
How to add label to column chart http://blogs.msdn.com/b/delay/archive/2009/07/27/simple-column-labels-you-can-create-at-home-re-templating-the-silverlight-wpf-data-visualization-columndatapoint-to-add-annotations.aspx How to change color ,tooltip co
http://files.cnblogs.com/xe2011/CustomRichTextBox_HideCaret.rar richTextBox能高亮选择,光标仍在,没有光标闪烁 把重RichTextBox类 去除闪烁光标 http://msdn.microsoft.com/en-us/library/windows/desktop/ms648403%28v=vs.85%29.aspx using System; using System.Windows.Forms; using Syst