|
|
|
C# WinApp มาเดาความต้องการผมให้หน่อยครับว่าต้องทำยังไงครับ |
|
|
|
|
|
|
|
จะเอาโค้ดไปให้ Control จัดการเพื่อลดโค้ดของ หน้าฟอร์ม ครับ
มี UserControl 1 ตัว มี property ที่เป็น List
โค้ดมีประมาณนี้ครับ
Code (C#)
private void Form1_Load(object sender, EventArgs e)
{
this.controlChart1.ValueMean = 0.123;
this.controlChart1.ValueSD = 0.013;
this.controlChart1.dataControlChart = new List<TORServices.FormsTor.DataControlChart>();
this.controlChart1.dataControlChart.Add(new DataControlChart(DateTime.Now,"TOR",0.124));
this.controlChart1.dataControlChart.Add(new DataControlChart(DateTime.Now, "TOR", 0.114));
this.controlChart1.dataControlChart.Add(new DataControlChart(DateTime.Now, "TOR", 0.121));
this.controlChart1.dataControlChart.Add(new DataControlChart(DateTime.Now, "TOR", 0.120));
this.controlChart1.dataControlChart.Add(new DataControlChart(DateTime.Now, "TOR", 0.111));
this.controlChart1.dataControlChart.Add(new DataControlChart(DateTime.Now, "TOR", 0.104));
this.controlChart1.dataControlChart.Add(new DataControlChart(DateTime.Now, "TOR", 0.123));
this.controlChart1.dataControlChart.Add(new DataControlChart(DateTime.Now, "TOR", 0.134));
this.controlChart1.RefreshChart();
}
ความต้องการผมคือ จะตัด this.controlChart1.RefreshChart(); ออกไป
แล้ว controlChart1 ก็ต้องมีวิธี รู้ว่ามีข้อมูลเปลี่ยนแปลง และ RefreshChart เองโดยที่ไม่ต้องเพิ่ม RefreshChart(); ในหน้าฟอร์ม ครับ
Tag : .NET, Win (Windows App), C#, VS 2012 (.NET 4.x)
|
|
|
|
|
|
Date :
2017-05-23 16:45:05 |
By :
lamaka.tor |
View :
987 |
Reply :
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
การที่จะรู้ว่ามีข้อมูลเข้ามาก็คือ
--------------------------------------------------
1) ให้ทำงานต่อเลยหลังจากเพิ่มข้อมูล
2) ให้ทำงานที่ Interval time เช่น ทุกๆ 1000ms ให้เรียกฟังก์ชั่นขึ้นมาทำงาน
โดยใช้ Thread เข้ามาช่วย
- Thread.Start
- Thread.Sleep
- Thread.Stop
//ใช้เงื่อนไขเวลามาเปรียบ ถ้ามีการเปลี่ยนแปลงของค่า
if(????? < DateTime.Now)
{
controlChart1.dataControlChart.Add(new DataControlChart(DateTime.Now, "TOR", xxxx));
controlChart1.Update(); //ไม่รู้มี method ชื่อ Update() หรือเปล่าน่ะครับ
}
ถ้าให้เดาทาง ก็คงได้ประมาณนี้ครับ
|
|
|
|
|
Date :
2017-05-23 23:16:26 |
By :
ccjpn |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Windows Forms Update Chart Data
--- ทางเลือกมีไม่มากนัก chart1.Invalidate();
แต่ถ้าเป็น Web Application
--- ทางเลือกขึ้นอยู่กับจินตนาการ (หลากหลายวิธี)
Code (C#)
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Threading;
using System.Windows.Forms.DataVisualization.Charting;
namespace WinFormsChartSamples
{
/// <summary>
/// Summary description for RealTimeSample.
/// </summary>
public class RealTimeSample : System.Windows.Forms.UserControl
{
#region Fields
// Chart data adding thread
private Thread addDataRunner;
// Thread Add Data delegate
public delegate void AddDataDelegate();
public AddDataDelegate addDataDel;
// Chart control
private System.Windows.Forms.DataVisualization.Charting.Chart chart1;
// Form fields
private System.ComponentModel.Container components = null;
private System.Windows.Forms.Button startTrending;
private System.Windows.Forms.Button stopTrending;
private DateTime minValue, maxValue;
private Random rand = new Random();
private System.Windows.Forms.Label labelSampleComment;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Panel panel1;
#endregion // Fields
#region Construction and Disposing
public RealTimeSample()
{
//
// Required for Windows Form Designer support
//
InitializeComponent();
//
// TODO: Add any constructor code after InitializeComponent call
//
}
/// <summary>
/// Clean up any resources being used.
/// </summary>
protected override void Dispose( bool disposing )
{
// Abort thread
if ( (addDataRunner.ThreadState & ThreadState.Suspended) == ThreadState.Suspended)
{
addDataRunner.Resume();
}
addDataRunner.Abort();
if( disposing )
{
if (components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#endregion // Construction and Disposing
#region Form user event handlers
/// <summary>
/// Page load event handler.
/// </summary>
/// <param name="sender">Event sender.</param>
/// <param name="e">Event arguments.</param>
private void RealTimeSample_Load(object sender, System.EventArgs e)
{
ThreadStart addDataThreadStart = new ThreadStart(AddDataThreadLoop);
addDataRunner = new Thread(addDataThreadStart);
addDataDel += new AddDataDelegate(AddData);
this.startTrending_Click( null, EventArgs.Empty);
}
/// <summary>
/// Start real time data simulator.
/// </summary>
/// <param name="sender">Event sender.</param>
/// <param name="e">Event arguments.</param>
private void startTrending_Click(object sender, System.EventArgs e)
{
// Disable all controls on the form
startTrending.Enabled = false;
// and only Enable the Stop button
stopTrending.Enabled = true;
// Predefine the viewing area of the chart
minValue = DateTime.Now;
maxValue = minValue.AddSeconds(30);
chart1.ChartAreas[0].AxisX.Minimum = minValue.ToOADate();
chart1.ChartAreas[0].AxisX.Maximum = maxValue.ToOADate();
// Reset number of series in the chart.
chart1.Series.Clear();
Series newSeries = new Series( "Series1" );
newSeries.ChartType = SeriesChartType.Line;
newSeries.BorderWidth = 1;
newSeries.Color = Color.FromArgb(224,64,10);
newSeries.ShadowOffset = 1;
newSeries.XValueType = ChartValueType.DateTime;
chart1.Series.Add( newSeries );
// start worker threads.
if ( addDataRunner.IsAlive == true )
{
addDataRunner.Resume();
}
else
{
addDataRunner.Start();
}
}
/// <summary>
/// Stop real time data simulator.
/// </summary>
/// <param name="sender">Event sender.</param>
/// <param name="e">Event arguments.</param>
private void stopTrending_Click(object sender, System.EventArgs e)
{
// Suspend thread
if ( addDataRunner.IsAlive == true )
{
addDataRunner.Suspend();
}
// Enable all controls on the form
startTrending.Enabled = true;
// Disable the Stop button
stopTrending.Enabled = false;
}
#endregion
#region Add new data thread
/// <summary>
/// Main loop for the thread that adds data to the chart.
/// The main purpose of this function is to Invoke AddData
/// function every 1000ms (1 second).
/// </summary>
private void AddDataThreadLoop()
{
try
{
while (true)
{
// Invoke method must be used to interact with the chart
// control on the form!
chart1.Invoke(addDataDel);
// Thread is inactive for 200ms
Thread.Sleep(500);//Thread.Sleep(200);
}
}
catch
{
// Thread is aborted
}
}
/// <summary>
/// Method which is invoked from the thread to add series points
/// </summary>
public void AddData()
{
DateTime timeStamp = DateTime.Now;
foreach ( Series ptSeries in chart1.Series )
{
AddNewPoint( timeStamp, ptSeries );
}
}
/// <summary>
/// The AddNewPoint function is called for each series in the chart when
/// new points need to be added. The new point will be placed at specified
/// X axis (Date/Time) position with a Y value in a range +/- 1 from the previous
/// data point's Y value, and not smaller than zero.
/// </summary>
/// <param name="timeStamp"></param>
/// <param name="ptSeries"></param>
public void AddNewPoint( DateTime timeStamp, System.Windows.Forms.DataVisualization.Charting.Series ptSeries )
{
// Add new data point to its series.
ptSeries.Points.AddXY( timeStamp.ToOADate(), rand.Next(10, 20));
// remove all points from the source series older than 20 seconds.
double removeBefore = timeStamp.AddSeconds( (double)(20) * ( -1 )).ToOADate();
//remove oldest values to maintain a constant number of data points
while ( ptSeries.Points[0].XValue < removeBefore )
{
ptSeries.Points.RemoveAt(0);
}
chart1.ChartAreas[0].AxisX.Minimum = ptSeries.Points[0].XValue;
chart1.ChartAreas[0].AxisX.Maximum = DateTime.FromOADate(ptSeries.Points[0].XValue).AddSeconds(30).ToOADate();
chart1.Invalidate();
}
#endregion
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
this.startTrending = new System.Windows.Forms.Button();
this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
this.stopTrending = new System.Windows.Forms.Button();
this.labelSampleComment = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.panel1 = new System.Windows.Forms.Panel();
((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// startTrending
//
this.startTrending.BackColor = System.Drawing.SystemColors.Control;
this.startTrending.Location = new System.Drawing.Point(48, 8);
this.startTrending.Name = "startTrending";
this.startTrending.Size = new System.Drawing.Size(72, 24);
this.startTrending.TabIndex = 1;
this.startTrending.Text = "&Start";
this.startTrending.UseVisualStyleBackColor = false;
this.startTrending.Click += new System.EventHandler(this.startTrending_Click);
//
// chart1
//
this.chart1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(211)))), ((int)(((byte)(223)))), ((int)(((byte)(240)))));
this.chart1.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
this.chart1.BackSecondaryColor = System.Drawing.Color.White;
this.chart1.BorderlineColor = System.Drawing.Color.FromArgb(((int)(((byte)(26)))), ((int)(((byte)(59)))), ((int)(((byte)(105)))));
this.chart1.BorderlineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
this.chart1.BorderlineWidth = 2;
this.chart1.BorderSkin.SkinStyle = System.Windows.Forms.DataVisualization.Charting.BorderSkinStyle.Emboss;
chartArea1.Area3DStyle.Inclination = 15;
chartArea1.Area3DStyle.IsClustered = true;
chartArea1.Area3DStyle.IsRightAngleAxes = false;
chartArea1.Area3DStyle.Perspective = 10;
chartArea1.Area3DStyle.Rotation = 10;
chartArea1.Area3DStyle.WallWidth = 0;
chartArea1.AxisX.LabelStyle.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold);
chartArea1.AxisX.LabelStyle.Format = "hh:mm:ss";
chartArea1.AxisX.LabelStyle.Interval = 10D;
chartArea1.AxisX.LabelStyle.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Seconds;
chartArea1.AxisX.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
chartArea1.AxisX.MajorGrid.Interval = 10D;
chartArea1.AxisX.MajorGrid.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Seconds;
chartArea1.AxisX.MajorGrid.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
chartArea1.AxisX.MajorTickMark.Interval = 10D;
chartArea1.AxisX.MajorTickMark.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Seconds;
chartArea1.AxisY.IsLabelAutoFit = false;
chartArea1.AxisY.IsStartedFromZero = false;
chartArea1.AxisY.LabelStyle.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold);
chartArea1.AxisY.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
chartArea1.AxisY.MajorGrid.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
chartArea1.AxisY.Maximum = 25D;
chartArea1.AxisY.Minimum = 5D;
chartArea1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(165)))), ((int)(((byte)(191)))), ((int)(((byte)(228)))));
chartArea1.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
chartArea1.BackSecondaryColor = System.Drawing.Color.White;
chartArea1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
chartArea1.BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
chartArea1.InnerPlotPosition.Auto = false;
chartArea1.InnerPlotPosition.Height = 85F;
chartArea1.InnerPlotPosition.Width = 86F;
chartArea1.InnerPlotPosition.X = 8.3969F;
chartArea1.InnerPlotPosition.Y = 3.63068F;
chartArea1.Name = "Default";
chartArea1.Position.Auto = false;
chartArea1.Position.Height = 86.76062F;
chartArea1.Position.Width = 88F;
chartArea1.Position.X = 5.089137F;
chartArea1.Position.Y = 5.895753F;
chartArea1.ShadowColor = System.Drawing.Color.Transparent;
this.chart1.ChartAreas.Add(chartArea1);
legend1.Alignment = System.Drawing.StringAlignment.Far;
legend1.BackColor = System.Drawing.Color.Transparent;
legend1.DockedToChartArea = "Default";
legend1.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Top;
legend1.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold);
legend1.IsTextAutoFit = false;
legend1.LegendStyle = System.Windows.Forms.DataVisualization.Charting.LegendStyle.Row;
legend1.Name = "Default";
this.chart1.Legends.Add(legend1);
this.chart1.Location = new System.Drawing.Point(16, 48);
this.chart1.Name = "chart1";
series1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(26)))), ((int)(((byte)(59)))), ((int)(((byte)(105)))));
series1.ChartArea = "Default";
series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Point;
series1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(64)))), ((int)(((byte)(10)))));
series1.Legend = "Default";
series1.Name = "Series1";
series1.ShadowOffset = 1;
this.chart1.Series.Add(series1);
this.chart1.Size = new System.Drawing.Size(412, 296);
this.chart1.TabIndex = 13;
//
// stopTrending
//
this.stopTrending.BackColor = System.Drawing.SystemColors.Control;
this.stopTrending.Enabled = false;
this.stopTrending.Location = new System.Drawing.Point(48, 40);
this.stopTrending.Name = "stopTrending";
this.stopTrending.Size = new System.Drawing.Size(72, 23);
this.stopTrending.TabIndex = 14;
this.stopTrending.Text = "St&op";
this.stopTrending.UseVisualStyleBackColor = false;
this.stopTrending.Click += new System.EventHandler(this.stopTrending_Click);
//
// labelSampleComment
//
this.labelSampleComment.Font = new System.Drawing.Font("Verdana", 11F);
this.labelSampleComment.Location = new System.Drawing.Point(16, 8);
this.labelSampleComment.Name = "labelSampleComment";
this.labelSampleComment.Size = new System.Drawing.Size(702, 34);
this.labelSampleComment.TabIndex = 27;
this.labelSampleComment.Text = "This sample demonstrates how to create a real-time chart.";
this.labelSampleComment.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// label1
//
this.label1.Font = new System.Drawing.Font("Verdana", 11F);
this.label1.Location = new System.Drawing.Point(24, 352);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(702, 40);
this.label1.TabIndex = 28;
this.label1.Text = "Points are added by a Thread object that executes every second. Any data that is" +
" older than 90 seconds is removed from the chart. ";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// panel1
//
this.panel1.Controls.Add(this.stopTrending);
this.panel1.Controls.Add(this.startTrending);
this.panel1.Location = new System.Drawing.Point(432, 56);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(292, 288);
this.panel1.TabIndex = 29;
//
// RealTimeSample
//
this.BackColor = System.Drawing.Color.White;
this.Controls.Add(this.label1);
this.Controls.Add(this.labelSampleComment);
this.Controls.Add(this.chart1);
this.Controls.Add(this.panel1);
this.Font = new System.Drawing.Font("Verdana", 9F);
this.Name = "RealTimeSample";
this.Size = new System.Drawing.Size(728, 480);
this.Load += new System.EventHandler(this.RealTimeSample_Load);
((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
this.panel1.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
}
}
|
|
|
|
|
Date :
2017-05-24 08:32:20 |
By :
หน้าฮี |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จาก #NO 2 บรรทัดที่ 93
สไตล์การเขียนแบบเดิมฯ
Code (C#)
this.startTrending_Click( null, EventArgs.Empty);
สไตล์การเขียนอีกแบบหนึ่ง
Code (C#)
startTrending.PerformClick();
ถ้ามีเวลาเพียงพอ SourceCode ด้านบนคงเหลือไม่ถึง 60 บรรทัด
|
|
|
|
|
Date :
2017-05-24 08:46:25 |
By :
หน้าฮี |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คือความคิดผมมองแบบนี้นะครับ
ไม่รู้ว่าทางโปรแกรมเมอร์เขาจะเรียกอะไร
แต่ผมมองว่าเป็นการลดโค้ด และ ลดข้อผิดพลาดในการเขียนโค้ดนะครับ
จากโค้ดเดิม
Code (C#)
private void Form1_Load(object sender, EventArgs e)
{
this.controlChart1.ValueMean = 0.123;
this.controlChart1.ValueSD = 0.013;
this.controlChart1.dataControlChart = new List<TORServices.FormsTor.DataControlChart>();
this.controlChart1.dataControlChart.Add(new DataControlChart(DateTime.Now,"TOR",0.124));
this.controlChart1.dataControlChart.Add(new DataControlChart(DateTime.Now, "TOR", 0.114));
this.controlChart1.dataControlChart.Add(new DataControlChart(DateTime.Now, "TOR", 0.121));
this.controlChart1.dataControlChart.Add(new DataControlChart(DateTime.Now, "TOR", 0.120));
this.controlChart1.dataControlChart.Add(new DataControlChart(DateTime.Now, "TOR", 0.111));
this.controlChart1.dataControlChart.Add(new DataControlChart(DateTime.Now, "TOR", 0.104));
this.controlChart1.dataControlChart.Add(new DataControlChart(DateTime.Now, "TOR", 0.123));
this.controlChart1.dataControlChart.Add(new DataControlChart(DateTime.Now, "TOR", 0.134));
this.controlChart1.RefreshChart();
}
ผมอยากให้เหลือแค่
Code (C#)
private void Form1_Load(object sender, EventArgs e)
{
this.controlChart1.ValueMean = 0.123;
this.controlChart1.ValueSD = 0.013;
this.controlChart1.dataControlChart = new List<TORServices.FormsTor.DataControlChart>();
this.controlChart1.dataControlChart.Add(new DataControlChart(DateTime.Now,"TOR",0.124));
this.controlChart1.dataControlChart.Add(new DataControlChart(DateTime.Now, "TOR", 0.114));
this.controlChart1.dataControlChart.Add(new DataControlChart(DateTime.Now, "TOR", 0.121));
this.controlChart1.dataControlChart.Add(new DataControlChart(DateTime.Now, "TOR", 0.120));
this.controlChart1.dataControlChart.Add(new DataControlChart(DateTime.Now, "TOR", 0.111));
this.controlChart1.dataControlChart.Add(new DataControlChart(DateTime.Now, "TOR", 0.104));
this.controlChart1.dataControlChart.Add(new DataControlChart(DateTime.Now, "TOR", 0.123));
this.controlChart1.dataControlChart.Add(new DataControlChart(DateTime.Now, "TOR", 0.134));
}
แล้วตัว controlChart1 ก็จะเอาข้อมูลไปจัดการเอง ครับ
เหมือนว่า ตัวฟอร์มเองก็แค่ส่ง ข้อมูล ให้ พอส่งเสร็จ ซึ่งตัว controlChart1 ต้องรู้ว่าส่งข้อมูลเสณ้จแล้วนะ controlChart1 ก็จะทำงานต่อ
เราลดในหน้า ฟอร์ม ไป แล้วให้ controlChart1 จัดการเองประมาณนี้ครับ
นี่ขนาดคิดผมยังงเองเลย 5555
|
|
|
|
|
Date :
2017-05-24 11:03:40 |
By :
lamaka.tor |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|