资源简介
C#写的一个例子,正弦波产生,可调采样和频率
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
//using System.Timers;
namespace TestDemo
{
public partial class Form1 : Form
{
//public float sasa = 500 ;
static private float phase = 0;
private System.Windows.Forms.Timer timer;
private Color colorxx = Color.Yellow;
private int m = 0;
private bool flag = true;
private float f0 = 500;
private float fs = 48000;
public float f2 { get; set; }
public float fs2 { get; set; }
public Form1()
{
this.f2 = 500;
this.fs2 = 48000;
InitializeComponent();
timer = new System.Windows.Forms.Timer();
timer.Interval = 500;
timer.Tick += new EventHandler(timer_Tick);
timer.Start();
timer1.Stop();
// timer.Stop();
}
private void timer_Tick(object sender EventArgs e)
{
int i = 0;
pictureBox1.Invalidate();
}
private void pictureBox1_Paint(object sender PaintEventArgs e)
{
Graphics g = e.Graphics;
Pen pn = new Pen(colorxx2);
//float[] xx = new float[];
// float xx = 0;
// float xx1 = 0;
// PointF[] xy = new PointF[];
// List xy0= null;
PointF[] p = new PointF[490];
List xy = new List();
f0 = this.f2;
fs = this.fs2;
float step = (float)(2.0 * 3.1415926535897 * f0/ fs);
for (int i = 0; i < 490; i++)
{
phase = phase + step;
// p[i].X = i + 30;
//p[i].Y = Convert.ToSingle(210 / 2 * (1 - Math.Sin(2 * i * Math.PI / 30)));
if (phase < -2 * Math.PI)
{
phase = phase + Convert.ToSingle( 2 * Math.PI);
}
if (phase < -2 * Math.PI)
{
phase = phase - Convert.ToSingle(2 * Math.PI);
}
p[i].X = i;
p[i].Y = 100 * (float)Math.Sin(phase) + 100;
}
for (int j = 0; j < 30; j++)
g.DrawLine(new Pen(Color.Gray 1) 0 j * 7 500 j * 7);
for (int j = 0; j < 25; j++)
g.DrawLine(new Pen(Color.Gray 2) j * 20 0 j * 20 200);
g.DrawLine(new Pen(Color.Blue5)0100500100);
g.DrawLine(new Pen(Color.Blue5)000200);
g.DrawLines(pnp);
m++;
}
private void button1_Cli
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2015-08-08 07:54 TestDemo\
目录 0 2015-08-09 14:22 TestDemo\TestDemo\
文件 914 2015-08-08 07:54 TestDemo\TestDemo.sln
文件 40448 2015-08-11 21:33 TestDemo\TestDemo.v11.suo
文件 187 2015-08-08 07:54 TestDemo\TestDemo\App.config
目录 0 2015-08-08 07:54 TestDemo\TestDemo\bin\
目录 0 2015-08-08 08:02 TestDemo\TestDemo\bin\Debug\
文件 15872 2015-08-11 21:33 TestDemo\TestDemo\bin\Debug\TestDemo.exe
文件 187 2015-08-08 07:54 TestDemo\TestDemo\bin\Debug\TestDemo.exe.config
文件 34304 2015-08-11 21:33 TestDemo\TestDemo\bin\Debug\TestDemo.pdb
文件 22984 2015-08-11 21:33 TestDemo\TestDemo\bin\Debug\TestDemo.vshost.exe
文件 187 2015-08-08 07:54 TestDemo\TestDemo\bin\Debug\TestDemo.vshost.exe.config
文件 490 2012-06-06 02:06 TestDemo\TestDemo\bin\Debug\TestDemo.vshost.exe.manifest
文件 5303 2015-08-10 00:43 TestDemo\TestDemo\Form1.cs
文件 4852 2015-08-10 00:40 TestDemo\TestDemo\Form1.Designer.cs
文件 6211 2015-08-10 00:40 TestDemo\TestDemo\Form1.resx
文件 2854 2015-08-10 00:21 TestDemo\TestDemo\Form2.cs
文件 9470 2015-08-10 00:09 TestDemo\TestDemo\Form2.Designer.cs
文件 5817 2015-08-10 00:07 TestDemo\TestDemo\Form2.resx
目录 0 2015-08-08 07:54 TestDemo\TestDemo\obj\
目录 0 2015-08-11 21:33 TestDemo\TestDemo\obj\Debug\
文件 1278 2015-08-09 08:48 TestDemo\TestDemo\obj\Debug\DesignTimeResolveAssemblyReferences.cache
文件 6867 2015-08-09 14:22 TestDemo\TestDemo\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
文件 0 2015-08-08 07:54 TestDemo\TestDemo\obj\Debug\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
文件 0 2015-08-08 07:54 TestDemo\TestDemo\obj\Debug\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
文件 0 2015-08-08 07:54 TestDemo\TestDemo\obj\Debug\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
目录 0 2015-08-08 07:54 TestDemo\TestDemo\obj\Debug\TempPE\
文件 727 2015-08-11 21:33 TestDemo\TestDemo\obj\Debug\TestDemo.csproj.FileListAbsolute.txt
文件 1033 2015-08-10 00:40 TestDemo\TestDemo\obj\Debug\TestDemo.csproj.GenerateResource.Cache
文件 2143 2015-08-08 08:02 TestDemo\TestDemo\obj\Debug\TestDemo.csprojResolveAssemblyReference.cache
文件 15872 2015-08-11 21:33 TestDemo\TestDemo\obj\Debug\TestDemo.exe
............此处省略12个文件信息
- 上一篇:WPF实现Expander折叠展开动画
- 下一篇:C# udp服务器收发、点对点收发
相关资源
- C# udp服务器收发、点对点收发
- AE符号选择器不要积分的,老是被篡改
- c#绘制3D柱状图
- C# 写得使用固高的运动控制卡写得控
- 模拟退火算法C#源码+
- C# 图 拓扑排序
- C#与TwinCAT通讯
- K-means聚类C#实现
- c#与文字语音转换与语音播放
- 利用C#远程存取Access数据库
- C#设计的简单的用户登录界面窗体
- C#利用AT指令控制短信猫发送短信
- 会员积分管理系统C#版
- mtp文件传输for C#
- C#操作手持机识别RFID电子标签
- c#读取DLT645-2007电力协议,项目源码
- csWPF井字棋游戏
- 基于asp.net的BBS论坛
- C#使用IBatisNet操作Oracle10g数据库
- 测绘工程中的前方交会 c#
- 运动会成绩管理系统课程设计 C#
- c#wpf chart绘图 源代码 示波器
- C#WPF 绘制几何图形 2D坐标 sin曲线
- Devexpress GridControl冻结头部几行
- .NET C#研发的授权工具winform
- Winform C#Socket异步通信
- 在winform下,利用控件ZedGraph控件绘制
- FileUpload控件上传文件客户端验证格式
- C#波形图含源代码
- WPF 关于C#代码实现ControlTemplate
评论
共有 条评论