日期:2014-05-20 浏览次数:20909 次
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
namespace radio
{
public partial class Form1 : Form
{
[DllImport("kernel32.dll")]
public static extern bool Beep(int frequency, int duration);
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
int a = 500;
int b = 700;
Beep(a, b);
}
}
}