C# API的问题 90
我按书上的代码创建了FORM1,在FORM1.CS上打上了书上的代码,之后我想回到FORM1设计界面上出现了错误“加载设计器时遇到一个或多个错误。这些错误在下面列出。一些...
我按书上的代码创建了FORM1,在FORM1.CS上打上了书上的代码,之后我想回到FORM1设计界面上出现了错误“加载设计器时遇到一个或多个错误。这些错误在下面列出。一些错误可通过重新生成项目来修复,而另一些错误则需要更改代码。类型 Form1 由同一文件中的几个分部类构成”不知道是什么回事?请解析一下,谢谢,分没关系,只要详细的话可以追加分
我的代码如下
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 定时抓屏
{
internal class NativeMethods
{
[DllImport("user32.dll")]
public extern static IntPtr GetDesktopWindow();
[System.Runtime.InteropServices.DllImport("user32.dll")]
public static extern IntPtr GetWindowDC(IntPtr hwnd);
[System.Runtime.InteropServices.DllImport("gdi32.dll")]
public static extern UInt64 BitBlt
(IntPtr hDestDC,
int x, int y, int nWidth, int nHeight,
IntPtr hSrcDC,
int xSrc, int ySrc, System.Int32 dwRop);
}
public class Form1 : System.Windows.Forms.Form
{
[STAThread]
static void Main()
{
Application.Run(new Form1());
}
public void SaveWindowsScreen(string filename)
{
Image newImage = new Bitmap(this.Width, this.Height);
Graphics newGraphics = Graphics.FromImage(newImage);
IntPtr ImageDC = newGraphics.GetHdc();
IntPtr SourceDC = GetWindowDC(this.Handle);
Bitblt(ImageDC, 0, 0, this.Width, this.Height, SourceDC, 0, 0, 13369376);
newGraphics.ReleaseHdc(ImageDC);
newImage.Save(filename);
}
public void timer1_Tick(object sender, System.EventArgs e)
{
label1.Text = DataTime.Now.ToString();
n = n + 1;
SaveWindowsScreen("screenshot" + n.ToString() + ".jpg");
}
}
}
2个错误,(1)类 Form1 可以进行设计,但不是文件中的第一个类。Visual Studio 要求设计器使用文件中的第一个类。移动类代码使之成为文件中的第一个类,然后尝试重新加载设计器。
(2)FORM1缺少partial修饰符
之后我把partial加上去错误更多了,请详细说明下为什么,谢谢
我建的是一个定时捕抓屏幕的程序,先建立了一个WINDOW应用程序,再放一个TIMER控件和一个LABEL控件,而这些代码都是从书上打上去的 展开
我的代码如下
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 定时抓屏
{
internal class NativeMethods
{
[DllImport("user32.dll")]
public extern static IntPtr GetDesktopWindow();
[System.Runtime.InteropServices.DllImport("user32.dll")]
public static extern IntPtr GetWindowDC(IntPtr hwnd);
[System.Runtime.InteropServices.DllImport("gdi32.dll")]
public static extern UInt64 BitBlt
(IntPtr hDestDC,
int x, int y, int nWidth, int nHeight,
IntPtr hSrcDC,
int xSrc, int ySrc, System.Int32 dwRop);
}
public class Form1 : System.Windows.Forms.Form
{
[STAThread]
static void Main()
{
Application.Run(new Form1());
}
public void SaveWindowsScreen(string filename)
{
Image newImage = new Bitmap(this.Width, this.Height);
Graphics newGraphics = Graphics.FromImage(newImage);
IntPtr ImageDC = newGraphics.GetHdc();
IntPtr SourceDC = GetWindowDC(this.Handle);
Bitblt(ImageDC, 0, 0, this.Width, this.Height, SourceDC, 0, 0, 13369376);
newGraphics.ReleaseHdc(ImageDC);
newImage.Save(filename);
}
public void timer1_Tick(object sender, System.EventArgs e)
{
label1.Text = DataTime.Now.ToString();
n = n + 1;
SaveWindowsScreen("screenshot" + n.ToString() + ".jpg");
}
}
}
2个错误,(1)类 Form1 可以进行设计,但不是文件中的第一个类。Visual Studio 要求设计器使用文件中的第一个类。移动类代码使之成为文件中的第一个类,然后尝试重新加载设计器。
(2)FORM1缺少partial修饰符
之后我把partial加上去错误更多了,请详细说明下为什么,谢谢
我建的是一个定时捕抓屏幕的程序,先建立了一个WINDOW应用程序,再放一个TIMER控件和一个LABEL控件,而这些代码都是从书上打上去的 展开
展开全部
你建的是什么工程???
为什么
[STAThread]
static void Main()
{
Application.Run(new Form1());
}
这段代码会出现在Form1的类里面???
///照本宣科也要明白意思...
哪些是编译器生成的代码.哪些应该是手写的代码都没分清楚.Main()应该是在Program.cs里面就有了的
为什么
[STAThread]
static void Main()
{
Application.Run(new Form1());
}
这段代码会出现在Form1的类里面???
///照本宣科也要明白意思...
哪些是编译器生成的代码.哪些应该是手写的代码都没分清楚.Main()应该是在Program.cs里面就有了的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
FORM1上用了OCX控件没?以前经常遇到。我有一个解决方法,但是不一定有用,只能试试,打开工程以后把里面所有的类和FORM全部关闭。然后再把 重新生成一下 然后关闭工程然后再打开!
1.internal class NativeMethods 把这个类放到其他地方去,因为你这个类放到form1 类的上面去了。或吧
NativeMethods 放下form1的下面去也可以!。2。public class Form1 : System.Windows.Forms.Form吧这个改为 public partial class Form1 : System.Windows.Forms.Form
1.internal class NativeMethods 把这个类放到其他地方去,因为你这个类放到form1 类的上面去了。或吧
NativeMethods 放下form1的下面去也可以!。2。public class Form1 : System.Windows.Forms.Form吧这个改为 public partial class Form1 : System.Windows.Forms.Form
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
把internal class NativeMethods 这个内部类移到public void SaveWindowsScreen(string filename) 上一行。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
把internal 改成partial 。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询