标签:gre dial .com led ima 居中 one bsp ext
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; namespace WindowsFormsApplication3 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { OpenFileDialog dig = new OpenFileDialog(); if (dig.ShowDialog() == DialogResult.OK) { pictureBox1.Image = Image.FromFile(dig.FileName); pictureBox1.Top = (ClientRectangle.Height - pictureBox1.Height) / 2; pictureBox1.Left = (ClientRectangle.Width - pictureBox1.Width) / 2; } } } }
标签:gre dial .com led ima 居中 one bsp ext
原文地址:http://www.cnblogs.com/tiandsp/p/7440451.html