C# winform 自绘控件 提供选择图片路径

2022/8/1 14:52:51

本文主要是介绍C# winform 自绘控件 提供选择图片路径,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

参考原文https://www.thinbug.com/q/27898827

 

 
//如以下代码,Image 属性将会 让你选择图片
[Description("Setting the image which shows main"), Category("Custom"),
 2  DefaultValue(typeof(Image),"null"),
 3  EditorAttribute(typeof(System.Drawing.Design.ImageEditor), 
 4  typeof(System.Drawing.Design.UITypeEditor))]
 5 
 6  public Image MainImage
 7  {
 8      get { return pictureBoxMain.Image; }
 9      set { pictureBoxMain.Image = value; }
10  }

//例如下图所示

 

而且选择后的图片会自动放到 使用该控件的 From 中的Resx文件里

 



这篇关于C# winform 自绘控件 提供选择图片路径的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程