本文整理汇总了C#中Label.Refresh方法的典型用法代码示例。如果您正苦于以下问题:C# Label.Refresh方法的具体用法?C# Label.Refresh怎么用?C# Label.Refresh使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Label
的用法示例。
在下文中一共展示了Label.Refresh方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: OnReceive
//.........这里部分代码省略.........
testimonyPB.Invoke((MethodInvoker)delegate
{
//perform on the UI thread
testimonyPB.Controls.Add(note);
});
Label desc = new Label();
desc.Text = evi.desc;
desc.Location = new Point(9, 81);
desc.Size = new Size(238, 45);
//desc.Font = new Font(fonts.Families[0], 12.0f);
desc.BackColor = Color.Transparent;
desc.ForeColor = Color.White;
desc.BringToFront();
testimonyPB.Invoke((MethodInvoker)delegate
{
//perform on the UI thread
testimonyPB.Controls.Add(desc);
});
testimonyPB.Size = new Size(256, 127);
testimonyPB.Image = Image.FromFile("base/misc/inventory_update.png");
wr = new WaveFileReader("base/sounds/general/sfx-selectjingle.wav");
sfxPlayer.Initialize(wr);
if (!mute)
sfxPlayer.Play();
for (int x = 0; x <= 64; x++)
{
testimonyPB.Location = new Point(256 - (4 * x), 3);
//icon.Location = new Point(256 + 6 - (2 * x), 3 + 5);
//name.Location = new Point(256 + 91 - (2 * x), 3 + 8);
//note.Location = new Point(256 + 92 - (2 * x), 3 + 26);
//desc.Location = new Point(256 + 9 - (2 * x), 3 + 81);
icon.Refresh();
name.Refresh();
note.Refresh();
desc.Refresh();
}
System.Threading.Thread.Sleep(3000);
for (int x = 0; x <= 64; x++)
{
testimonyPB.Location = new Point(0 - (4 * x), 3);
//icon.Location = new Point(6 - (2 * x), 3 + 5);
//name.Location = new Point(91 - (2 * x), 3 + 8);
//note.Location = new Point(92 - (2 * x), 3 + 26);
//desc.Location = new Point(9 - (2 * x), 3 + 81);
icon.Refresh();
name.Refresh();
note.Refresh();
desc.Refresh();
}
testimonyPB.Image = null;
name.Dispose();
icon.Dispose();
desc.Dispose();
note.Dispose();
}
else
{
Data msgReceived = new Data(byteData);
//Accordingly process the message received
switch (msgReceived.cmdCommand)