0
我已閱讀,可能將UnityEngine
與Winforms
融合,所以這就是我所要做的。我正在嘗試使用正弦波來控制Winform
中按鈕上的顏色之間的閃爍。但是我得到一個SecurityException
,我不知道如何解決。發生安全異常
private void DisplayMessage(string messge)
{
int numVal;
//SPELL.Text += messge + Environment.NewLine;
numVal = Convert.ToInt32(messge);
udpSock1.Close();
if (numVal == 83)
{
//Application.EnableVisualStyles();
//Application.SetCompatibleTextRenderingDefault(false);
//Application.Idle += new EventHandler(Application_Idle);
//Application.Run(form1);
BCI1 form1 = new BCI1();
//Application.Run(form1);
form1.ShowDialog();
//stopwatch.Start();
SPELL.Text = SPELL.Text + form1.LET;
udpSock1 = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
udpSock1.Bind(new IPEndPoint(IPAddress.Any, 8050));
buffer = new byte[1024];
newClientEP = new IPEndPoint(IPAddress.Any, 0);
udpSock1.BeginReceiveFrom(buffer, 0, buffer.Length, SocketFlags.None, ref newClientEP, DoReceiveFrom, udpSock1);
//udpSock.Disconnect(true);
//udpSock.Connect(new IPEndPoint(IPAddress.Any, 8050));
}
在這裏,我打開了新的形式,而形式母雞diplays SOM字符,可以選擇,以下簡稱窗體關閉agian,並返回到主,形式1.
好,再次感謝@JinJi –
我沒有看到你狀態doublebuffering在你的代碼? –
默認情況下,Picturebox具有啓用doublebuffering的功能。你不需要改變任何東西。 – JinJi