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


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

 

 
//如以下代码,Image 属性将会 让你选择图片
1 [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 }

//例如下图所示

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

 

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

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

 

原创文章,作者:,如若转载,请注明出处:https://blog.ytso.com/278159.html

(0)
上一篇 2022年8月1日
下一篇 2022年8月1日

相关推荐

发表回复

登录后才能评论