我使用一些屏幕截图代码构建成功,并且可以进行拖放操作(但从那里开始没有代码),并且在文件成功保存后,或者如果您拖动并拖动,我试图在表单上显示消息删除太多文件。我不想使用MessageBox.Show(即使替换代码也可以使用此方法),因为我想使用复选标记图片和按钮来打开屏幕快照位置的文件。我的问题是截图保存后,from#.designer.cs中的一行崩溃了。我到处寻找如何解决这个问题,没有任何帮助。我看不到要触摸Form3.Designer.cs文件,因为评论说不要这么做。我的代码在下面列出。

表格1中的屏幕截图/屏幕截图代码:

        private void saveScreenshotToolStripMenuItem_Click(object sender, EventArgs e)
    {
        // ** SAVE A SCREENSHOT *** (Working)
        Bitmap bitmap = new Bitmap(this.Width, this.Height);
        DrawToBitmap(bitmap, new Rectangle(0, 0, bitmap.Width, bitmap.Height));
        bitmap.Save((boxFileName.Text) + "_ScreenCap.JPEG",ImageFormat.Jpeg);

       // If i replace the following 2 lines with MessageBox.Show("FileSave successful"); it works fine. Why is this code not working????

        Form3 f3 = new Form3();
        f3.ShowDialog();

    }

Form3.Designer.CS中崩溃的代码
        // Form3
        //
        this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
        this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
        this.ClientSize = new System.Drawing.Size(292, 121);
        this.Controls.Add(this.button1);
        this.Controls.Add(this.label2);
        this.Controls.Add(this.label1);
        this.Controls.Add(this.pictureBox1);
        this.MaximizeBox = false;
        this.MaximumSize = new System.Drawing.Size(300, 150);
        this.MinimizeBox = false;
        this.MinimumSize = new System.Drawing.Size(300, 150);
        this.Name = "Form3";
        this.ShowIcon = false;
        this.ShowInTaskbar = false;
        this.Text = "ScreenCap Result";
        this.Load += new System.EventHandler(this.Form3_Load);

        /// the following line crashed

        ((System.ComponentModel.ISupportInitialize)(this.performanceCounter1)).EndInit();

        // end line that crashed

        ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
        this.ResumeLayout(false);
        this.PerformLayout();

这是DragDrop的代码:
void Form1_DragDrop(object sender, DragEventArgs e)
    {
        var files = (string[])e.Data.GetData(DataFormats.FileDrop);
        if (files.Length == 1)
        {
            /// WORKING

            MessageBox.Show("Reading files from Drag and Drop not fully implimentd.");
        }
        else
        {
            // NOT WORING (crashes)

            Form3 f3 = new Form3();
            f3.ShowDialog();
        }

任何帮助将不胜感激。

最佳答案

您链接到的屏幕截图上的错误消息说



c# - C#-DisplayDialog()在FileSave和拖放上不起作用-LMLPHP

微软似乎忘记了在EndInit()调用中记录该异常,但这不是第一个。

因此,在performanceCounter1上(我假设它是PerformanceCounter类型),您需要为CategoryName属性提供一个值。

您可以执行此操作,而无需手动修改Form3.Designer.cs文件。而是在设计器中打开Form3,选择performanceCounter1并从列表中选择一个值,如以下屏幕截图所示:

c# - C#-DisplayDialog()在FileSave和拖放上不起作用-LMLPHP

关于c# - C#-DisplayDialog()在FileSave和拖放上不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45917698/

10-13 09:31