Click here to Skip to main content
15,899,679 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I have One ECG Capturing Device On Client side . It gives me dicom file To get data of waveform from dicom file. I m using some third party dll of Leadtools. For testing purpose i have developed an user control in winfrom User control consisting of form and panel. On Panel paint event draw wavefroms on panel. Used that ECG user control in Winform application It working fine. I want To Show ECG wavefrom on Web-application ......? TO be shown on web silverlight is in my mind. Is it possible in silverlight making plugin or any other simple way. Any Idea how To Do it....?

DicomDataSet objDicomDS=null;
private void ECGViewerControl_Load(object sender, EventArgs e)
{
objDicomDS = new DicomDataSet();
objDicomDS.Load("ECG image");
}
private void pnlECGViewer_Paint(object sender, PaintEventArgs e)
{
Here i draw ECG waveforms using objDicomDS.
}
Posted
Comments
Bernhard Hiller 3-Jun-13 3:28am    
Do you want to show the data "live", i.e. during recording? Or afterwards?
And: do you want to show a static image, or will the user be able to interact somehow with it?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900