@H_404_0@
@H_404_0@输入代码: @H_404_0@
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace 第12周上机3_1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender,EventArgs e) { this.pictureBox1.Image = Image.FromFile("4.jpg"); this.pictureBox1.SizeMode = PictureBoxSizeMode.StretchImage; toolTip1.SetToolTip(pictureBox1,"北京风光"); } private void toolTip1_Popup(object sender,PopupEventArgs e) { } } }
@H_404_0@运行截图: @H_404_0@
@H_404_0@