非常に単純なビデオプレーヤー ウィンドウ フォーム アプリケーションを C# で実行したいのですが、ボタンをクリックしてビデオを再生すると、次のエラーが発生します。
"An unhandled exception of type 'System.IO.FileLoadException' occurred in System.Windows.Forms.dll"
Form1.cs:
using Microsoft.DirectX.AudioVideoPlayback;
namespace videoplayer
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
Video myVid = new Video("d:\\vids.avi");
myVid.Owner = panel1;
myVid.Play();
}
}
}
例外エラーは Program.cs を参照してください:
namespace videoplayer
{
static class Program
{
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1()); //exception error here
}
}
}
ありがとう