首先,这个问题是出于教育目的。
我的任务是执行捕获屏幕的选择部分的服务,如剪切工具 Win7我设法以胜利的形式做到这一点,它的工作很棒但是当我在服务中它返回黑屏我知道问题是在不同的会话中运行的服务所以我的问题是如何使服务运行和返回用户桌面 第二个问题是如何听取服务中的按键(我知道如何在表格中做)任何帮助请。慢慢来。我的表单代码:
private void CaptureScreen()
{
this.Hide();
Thread.Sleep(300);
bmpScreenshot = new Bitmap(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height, PixelFormat.Format32bppArgb);
gfxScreenshot = Graphics.FromImage(bmpScreenshot);
gfxScreenshot.CopyFromScreen(Screen.PrimaryScreen.Bounds.X, Screen.PrimaryScreen.Bounds.Y, 0, 0, Screen.PrimaryScreen.Bounds.Size, CopyPixelOperation.SourceCopy);
bmpScreenshot.Save(DialogSave.FileName, ImageFormat.Jpeg);
pictureBox1.Image = bmpScreenshot;
this.Show();
}
private static Image cropImage(Bitmap img, Rectangle cropArea)
{
Bitmap bmpCrop = img.Clone(cropArea,
img.PixelFormat);
return (Image)(bmpCrop);
}
private Rectangle selectArea(int recX1, int recY1,int recX2,int recY2)
{
int width = recX2 - recX1;
int height = recY2 - recY1;
return new Rectangle(recX1, recY1, width, height);
}
private void btnCrop_Click(object sender, EventArgs e)
{
if (x1 <= 0 || x2 <= 0 || y1 <= 0 || y2 <= 0)
{
MessageBox.Show("Please select area first", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
else
{
Rectangle myrectangle = selectArea(x1, y1, x2, y2);
Bitmap myImg = (Bitmap)Image.FromFile(filename);
Image cr = cropImage(myImg, myrectangle);
na = @"F:\\" + Counter + ".jpg";
while (File.Exists(@"F:\\" + Counter + ".jpg"))
{
Counter++;
}
na = @"F:\\" + Counter + ".jpg";
cr.Save(@"F:\\" + Counter++ + ".jpg", ImageFormat.Jpeg);
pictureBox1.Image = cr;
System.Diagnostics.Process prc = new System.Diagnostics.Process();
prc.StartInfo.FileName = @"F:\\";
prc.Start();
this.PrintScreennotifyIcon.BalloonTipText = "Save to" + na;
this.PrintScreennotifyIcon.BalloonTipTitle = "Info";
this.PrintScreennotifyIcon.Visible = true;
this.PrintScreennotifyIcon.ShowBalloonTip(3);
}
}
答案 0 :(得分:2)
在某些版本的Windows上,您可以获得服务以查看桌面,但是如果有多个人登录,应该选择哪个桌面?
基本上,如果您希望与桌面进行资源交互,则您的解决方案无法作为服务运行。
另外,出于同样的原因,您不应该生成消息框,因为可能没有人可以单击“确定”并允许程序继续执行。
答案 1 :(得分:1)
您必须选中“允许服务与桌面交互”选项,然后选择本地帐户(服务屏幕上的所有内容)。
答案 2 :(得分:0)
对我来说,最简单的方法是让应用程序在任务栏中运行最小化,并在计算机启动时启动。
它对电脑的干扰真的很少:)。