如何使窗体适合任何屏幕分辨率以及如何使我的图像大小适合形成

时间:2015-02-06 07:27:10

标签: c#

我有以下代码,我正在尝试显示图像并播放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();
        }
    }
}

当我运行此代码时表单高度超出了我的屏幕高度,我无法看到完整的图像。图像不符合表格。

有人可以为此提供帮助吗?

3 个答案:

答案 0 :(得分:0)

对你的PictureBox使用Anchors,也可以使用SizeMode

答案 1 :(得分:0)

WindowState = FormWindowState.Maximized;

在表单的load事件上写上面一行。

答案 2 :(得分:0)

我认为最好的情况是避免使用PictureBox,并在窗体的BackgroundImage中设置图像,并将窗体BackgroundImageLayout设置为Stretch。

通过这种方式,您可以更改表单的大小,图像将自动拉伸。