我有以下代码,我正在尝试显示图像并播放MP3歌曲。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Media;
using WMPLib;
using System.Windows;
namespace CreatingInstaller
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
this.Size = Screen.PrimaryScreen.WorkingArea.Size;
var size = this.Size;
var screen = System.Windows.Forms.Screen.PrimaryScreen.Bounds;
PictureBox pb1 = new PictureBox();
Image img = Image.FromFile(Application.StartupPath + "\\Input\\CYMERA_20141109_141742.jpg");
//this.Width = img.Width;
//this.Height = screen.Height;
pb1.Image = img;
//pb1.Width = img.Width;
//pb1.Height = screen.Height;
pb1.Size = this.Size;
this.Controls.Add(pb1);
WMPLib.WindowsMediaPlayer wplayer = new WMPLib.WindowsMediaPlayer();
wplayer.URL = Application.StartupPath + "\\Input\\Nee Sneham - [www.MazaMp3.com].mp3";
wplayer.controls.play();
}
}
}
当我运行此代码时表单高度超出了我的屏幕高度,我无法看到完整的图像。图像不符合表格。
有人可以为此提供帮助吗?