このコメントから:"フォームのコードで、InvalidateCode への呼び出しがある場合、または Paint イベントを含むコントロールが適切に構成されていない場合、msrdp のパフォーマンスの問題を見てきました。それはあなたの場合ですか?いくつかのコードを投稿できますか? – Steve B "
最終リリースを意図したものではなく、デザイナーからのボタンが完成するまでの一時的なものであるこの小さなコードにコメントを付けたことが原因であることがわかりました。なぜ私は本当に彼に賭けないのですか!それは今動作します!
private void terug_btn_Paint(object sender, PaintEventArgs e)
{
/* if (mf != null)
{
System.Drawing.Drawing2D.GraphicsPath myGraphicsPath = new System.Drawing.Drawing2D.GraphicsPath();
myGraphicsPath.AddLine(30, 0, 130, 0);
myGraphicsPath.AddLine(130, 0, 130, 30);
myGraphicsPath.AddLine(130, 30, 30, 30);
myGraphicsPath.AddLine(30, 30, 0, 15);
myGraphicsPath.AddLine(0, 15, 30, 0);
terug_btn.Size = new System.Drawing.Size(135, 35);
terug_btn.Region = new Region(myGraphicsPath);
terug_btn.BackColor = Color.LightBlue;
}*/
}