一个低级的问题~~~(50分)

  • 主题发起人 主题发起人 d村长
  • 开始时间 开始时间
D

d村长

Unregistered / Unconfirmed
GUEST, unregistred user!
我想动态改变listview中各项的宽度
ListView1.Columns[0].MaxWidth :=form1.width * 0.3;
为什么老提示出错???
 
ListView1.Columns[0].MaxWidth :=width * 0.3;
在Form1中用到Form1的属性时不要在前面加Form1
 
MaxWidth 是一个integer
form1.width * 0.3; 是一个Float,不错就有鬼了
这样
ListView1.Columns[0].MaxWidth :=Round(form1.width * 0.3);


 
ListView1.Columns[0].Width:=trunc(Form1.Width*0.3);
 
还是不行啊,总提示
incompatible typws:'TWidth' and 'Extended'
 
ListView1.Columns[0].Width := Form1.Width * 3 div 10;
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
D
回复
0
查看
2K
DelphiTeacher的专栏
D
D
回复
0
查看
851
DelphiTeacher的专栏
D
D
回复
0
查看
2K
DelphiTeacher的专栏
D
后退
顶部