0

当我将鼠标悬停在图片框中时,我正在尝试更改图片框中的图像。我正在使用带有 Windows 窗体的 Visual c# 2010 express。

这是我目前拥有的基本代码:

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 WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {

        }

        private void pbMV_MouseHover(object sender, EventArgs e)
        {
            pbMV.BackgroundImage = My.Resources.mvhov;
            tbname.Text = "Hello";

        }

        private void pbMV_MouseLeave(object sender, EventArgs e)
        {
            tbname.Text = "";
        }



    }
}

在下一行中,它给了我一个关于使用My.

pbMV.BackgroundImage = My.Resources.mvhov;

当前上下文中不存在名称“我的”

那么当我将鼠标悬停在图片框上时,我在尝试更改图片框的背景图像时做错了什么?

抱歉,如果这看起来也很基本,我对 c# 几乎一无所知。] 谢谢。

4

1 回答 1

3

C# 没有 VB.Net 的My关键字。

相反,您可以Resources直接访问该类:

Properties.Resources.SomeResourceName
于 2012-05-06T11:47:07.203 回答