2.然后创建一个BitmapImage BitmapImage bi = new BitmapImage()
bi.BeginInit()
bi.UriSource = new Uri(@"放入图片的地址", UriKind.RelativeOrAbsolute)
bi.EndInit()
3.然后指定图片的资源
image1.Source = bi
去试一下吧 我在项目中用过 可以成功
自己加啊,类似于这样:
this.image1.MouseLeftDown += new System.EventHandler(this.iamge1_MouseLeftButtonDown)然后再把你的MouseLeftDown事件定义出来:
private void iamge1_MouseLeftButtonDown(object sender, EventArgs e){
//...
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)