瘋狂賽車又來了...
這是一個沒有速度極限的賽車遊戲。
隨著速度越來越快,你將需要更快的反應。
如果你喜歡這種瘋狂的速度感,本遊戲會讓你感到興奮。
請記住,盡可能收集硬幣,越多越好。
這些金幣可以換成續關鑰匙。
try
{
var srcImage = Image.FromFile("test.jpg");
myPictureBox.Image = srcImage;
}
catch (System.OutOfMemoryException)
{
MessageBox.Show("Invalid picture format.");
}
However, you will find that you cannot move or rename this picture file.try
{
FileStream stream = new FileStream(openFileDialog1.FileName, FileMode.Open);
var srcImage = Image.FromStream(stream);
stream.Close();
myPictureBox.Image = srcImage;
}
catch (System.ArgumentException)
{
MessageBox.Show("Invalid picture format.");
}
try
{
var srcImage = Image.FromFile("test.jpg");
myPictureBox.Image = srcImage;
}
catch (System.OutOfMemoryException)
{
MessageBox.Show("Invalid picture format.");
}
不過,你會發現此時你無法再對這個做移動或者更名等動作,try
{
FileStream stream = new FileStream(openFileDialog1.FileName, FileMode.Open);
var srcImage = Image.FromStream(stream);
stream.Close();
myPictureBox.Image = srcImage;
}
catch (System.ArgumentException)
{
MessageBox.Show("Invalid picture format.");
}