成人午夜激情影院,小视频免费在线观看,国产精品夜夜嗨,欧美日韩精品一区二区在线播放

Background Image on Form經驗二則

2010-08-28 10:49:44來源:西部e網作者:

gotdotnet網站上有個Pocket PC的例子程序,就是Background Image on Form,地址為:
http://samples.gotdotnet.com/quickstart/CompactFramework/doc/bkgndimage.aspx
因為是第一次做這樣的程序,摸索了好久發現了兩個關鍵的地方,放上來與大家分享一下。轉載的朋友請注明來源于西部e網,AD一下,網址為weste.net。下面我們就共同來學習一下吧!

代碼都已經是現成的了:

using System;
using System.Drawing;
using System.Collections;
using System.Windows.Forms;
using System.Data;
using System.Reflection;

namespace BkgndImage
{
    /// <summary>
    /// Summary description for Form1.
    /// </summary>
    public class Form1 : System.Windows.Forms.Form
    {
        private System.Windows.Forms.Button button1;
        private System.Windows.Forms.MainMenu mainMenu1;

        private Image backgroundImage;

 

        public Form1()
        {
            //
            // Required for Windows Form Designer support
            //

            backgroundImage = new Bitmap(Assembly.GetExecutingAssembly().GetManifestResourceStream("BkgndImage.MyBkgnd.jpg"));           

            InitializeComponent();

            //
            // TODO: Add any constructor code after InitializeComponent call
            //
        }
        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        protected override void Dispose( bool disposing )
        {
            base.Dispose( disposing );
        }
        #region Windows Form Designer generated code
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.mainMenu1 = new System.Windows.Forms.MainMenu();
            this.button1 = new System.Windows.Forms.Button();
            //
            // button1
            //
            this.button1.Location = new System.Drawing.Point(144, 184);
            this.button1.Size = new System.Drawing.Size(64, 24);
            this.button1.Text = "button1";
            //
            // Form1
            //
            this.Controls.Add(this.button1);
            this.Menu = this.mainMenu1;
            this.Text = "Form1";


        }
        #endregion

        /// <summary>
        /// The main entry point for the application.
        /// </summary>

        static void Main()
        {
            Application.Run(new Form1());
        }
        //Draws the image to fit the ClientRectangle area of the form.
        protected override void OnPaint(PaintEventArgs e)
        {
            e.Graphics.DrawImage(backgroundImage, this.ClientRectangle, new Rectangle(0, 0, this.backgroundImage.Width, this.backgroundImage.Height), GraphicsUnit.Pixel);
        }
   
    }
}

關鍵的地方已經設成粗字體了。

代碼是正確的,可以直接使用,但是這里面有兩個地方需要注意:

1、GetManifestResourceStream方法

從此程序集加載指定清單資源,清單資源的范圍由指定類型的命名空間確定。如果你的圖片文件名為 MyBkgnd.jpg,那么你需要寫成 BkgndImage.MyBkgnd.jpg 才能夠搜索到資源。

還有一種寫法更好:

Assembly asm = Assembly.GetExecutingAssembly();
backgroundImage = new Bitmap(asm.GetManifestResourceStream(asm.GetName().Name+ ".MyBkgnd.jpg"));

這樣就不用考慮命名空間的問題了。

2、如果你發現即使文件名寫正確了,但是出現
未處理的“System.ArgumentException”類型的異常出現在 system.drawing.dll 中
這種錯誤,就說明還是沒有找到資源文件,這個時候就是我要說的第二個技巧了,其實路徑是對的,但是要加載的圖片的確沒有找到。

方法是:在項目中找到圖片,屬性-生成操作(選擇“嵌入的資源”)

重新編譯部署,呵呵,看看效果就出來了吧!

關鍵詞:dotnet

贊助商鏈接:

主站蜘蛛池模板: 北宁市| 五指山市| 平江县| 汕头市| 马边| 万宁市| 温泉县| 包头市| 健康| 雷州市| 韶关市| 张家口市| 潮州市| 大英县| 高平市| 嘉禾县| 岢岚县| 无为县| 图片| 精河县| 丰宁| 茂名市| 安化县| 德庆县| 东光县| 通城县| 辉县市| 张家川| 黑水县| 含山县| 阜城县| 蓬安县| 临潭县| 阳春市| 临汾市| 舞钢市| 革吉县| 天门市| 承德县| 织金县| 宝丰县|