B blacksnow Unregistered / Unconfirmed GUEST, unregistred user! 2003-04-10 #1 在使用BitBtn构件时,BitBtn开始设定一个图标,运行中需要随时在2个图标中间动态更换,请问如何实现?谢谢
太 太阳火 Unregistered / Unconfirmed GUEST, unregistred user! 2003-04-11 #2 BitBtn1.Glyph.loadfromfile 或BitBtn1.Glyph.loadfromResourceID 或BitBtn1.Glyph.loadfromResourceName 注意:glyph是个bitmap
BitBtn1.Glyph.loadfromfile 或BitBtn1.Glyph.loadfromResourceID 或BitBtn1.Glyph.loadfromResourceName 注意:glyph是个bitmap
T Tuatara Unregistered / Unconfirmed GUEST, unregistred user! 2003-04-11 #3 ImageList1.GetBitMap(1,BitBtn1.Glyph);
B blacksnow Unregistered / Unconfirmed GUEST, unregistred user! 2003-04-11 #4 to:太阳火,能否详细一些,ResourceID,ResourceName怎么定义? loadfromfile的方法我会,我想最好不在另外调用文件,怎么作? to:tuatara,好像只能设定一次,不能在2个图标之间来回改,我想要能来回改动!
to:太阳火,能否详细一些,ResourceID,ResourceName怎么定义? loadfromfile的方法我会,我想最好不在另外调用文件,怎么作? to:tuatara,好像只能设定一次,不能在2个图标之间来回改,我想要能来回改动!
B blacksnow Unregistered / Unconfirmed GUEST, unregistred user! 2003-04-11 #5 多谢2位,偶解决了! BitBtn1.Glyph:=nil; ImageList1.GetBitmap(1,BitBtn1.Glyph); 呵呵!