将字节分配给 RGB 颜色
我尝试将字节分配给 RGB 颜色,但在 VS2010 中出现此错误“无法分配属性或索引器‘System.Drawing.Color.R’——它是只读的” 那么如何将字节分配给 RGB 颜色呢?
I tried to assign byte to RGB color but I got this error in VS2010 "Property or indexer 'System.Drawing.Color.R' cannot be assigned to -- it is read only"
so how can I assign byte to RGB color ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
无法分配此属性。相反,您应该创建新的
Color
实例:There is no way to assign this property. Instead you should create new
Color
instance: