本文介绍了ColorPalette类没有构造函数,那么如何使用它呢?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 ColorPalette类没有构造函数,所以如何使用它? 我通过以下方式定义变量: Dim cp as ColorPalette 但不知道如何将一个对象分配给变量。 提前致谢 The ColorPalette class has no constructor so how does one use it?I define a variable by: Dim cp as ColorPalette but don''t know how assign an object to the variable. Thanks in advance 推荐答案 如果没有构造函数,那么你只能从 其他对象获得一个ColorPalette。例如: Dim cp As ColorPalette Dim bmp As Bitmap = New Bitmap(" figure2.bmp") cp = bmp.Palette If there is no constructor, then you can only get a ColorPalette fromother objects. For example: Dim cp As ColorPaletteDim bmp As Bitmap = New Bitmap("figure2.bmp") cp = bmp.Palette 如果没有构造函数,那么你只能从 其他对象获得一个ColorPalette。例如: Dim cp As ColorPalette Dim bmp As Bitmap = New Bitmap(" figure2.bmp") cp = bmp.Palette If there is no constructor, then you can only get a ColorPalette fromother objects. For example: Dim cp As ColorPalette Dim bmp As Bitmap = New Bitmap("figure2.bmp") cp = bmp.Palette 这篇关于ColorPalette类没有构造函数,那么如何使用它呢?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
09-24 23:46