using System;
using Microsoft.Win32; //对注册表操作一定要引用这个命名空间
namespace ChangeIE
{
class ChangeIE
{
[STAThread]
static void Main(string[] args)
{
RegistryKey pregkey;
pregkey = Registry.CurrentUser.OpenSubKey("Control Panel\\Desktop\\WindowMetrics", true);
if (pregkey == null)
{
Console.WriteLine("键值不存在");
}
else
{
pregkey.SetValue("MinAnimate", "1");
pregkey.SetValue("MaxAnimate", "1");
Console.WriteLine("修改成功");
}
pregkey.Close;
}
}
}
错误报告 错误 1 只有 assignment、call、increment、decrement 和 new 对象表达式可用作语句 C:\Documents and Settings\Administrator\My Documents\Visual Studio 2005\Projects\ConsoleApplication3\ConsoleApplication3\Program.cs 23 13 ConsoleApplication3
不明白啊
我是菜鸟````
[此贴子已经被作者于2007-2-25 2:46:40编辑过]