axWindowsMediaPlayer1でビデオを開く方法。ビデオMP4はどのように開いていますか?
私はpictureboxのコードを作成しました。 axWindowsMediaPlayer1のコードは何ですか?
private void button1_Click(object sender, EventArgs e)
{
try
{
using (OpenFileDialog ofd = new OpenFileDialog() { Filter = "JPEG| *.jpg", ValidateNames = true, Multiselect = false })
{
if (ofd.ShowDialog() == DialogResult.OK)
obrazekPictureBox.Image = Image.FromFile(ofd.FileName);
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Message", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
「axWindowsMediaPlayer1」とは何ですか? –
[AxWindowsMediaPlayer.URL](https://msdn.microsoft.com/en-us/library/windows/desktop/dd562470(v=vs.85).aspx) – Filburt
http://imgur.com/OcIDQal –