C#在图片框中显示一幅图片及其信息
生活随笔
收集整理的這篇文章主要介紹了
C#在图片框中显示一幅图片及其信息
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
/*
*程序的版權和版本聲明部分:
*程序的版權和版本聲明部分:
*Copyright(c)2013,煙臺大學計算機學院學生
*All rights reserved.
*文件名稱:
*作者:尚振偉
*完成日期:2014年11月10日
*版本號:v0.1
*對任務及求解方法的描述部分:
*輸入描述:無
*問題描述:該窗體中有一個圖片框,顯示一副圖片。
要求:
1)在窗體打開時,動態加載圖片;
2)設置圖片顯示模式為根據圖片框大小縮放圖片;
3)圖片自己找;
4)當鼠標停留在圖片框時,顯示“**風光”提示(使用6.4.12中 ToolTip)
*程序輸入:
*程序輸出:
*問題分析:
*算法設計:
*我的程序:
*/
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 WindowsFormsApplication2
{public partial class Form1 : Form{public Form1(){InitializeComponent();}private void Form1_Load(object sender, EventArgs e){pictureBox1.Image = Image.FromFile(@"C:\Users\Administrator\Pictures\pic.jpg"); //動態添加圖片pictureBox1.SizeMode = PictureBoxSizeMode.StretchImage; //是圖片的大小適應控件PictureBox的大小toolTip1.SetToolTip(pictureBox1,"這是一張圖片"); //當鼠標在圖片上的時候,顯示圖片的信息}}
}
結果展示:
心得體會:只要用心學,沒有學不會的。
總結
以上是生活随笔為你收集整理的C#在图片框中显示一幅图片及其信息的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Linux学习中Xshell软件出现to
- 下一篇: excel时间戳转换为时间格式