在Delphi 7中,我使用的是TCheckListBox。我希望它使用TStringList而不是TStrings,因此我可以将Duplicates设置为dupIgnore,并将Sorted设置为TRUE。
我可以这样做:
Form1 = class(TObject
CheckListBox1: TCheckListBox; // created by the IDE
end;
procedure TForm1.FormCreate
begin
CheckListBox1.Items.Free;
CheckListBox1.Items := TStringList.Create;
CheckListBox1.Items.Sorted := TRUE;
CheckListBox1.Items.Duplicates := dupIgnore;
end;
这样安全吗?有任何警告或建议吗?
编辑:删除了MyStringList的声明,并将.Items添加到最后两个赋值行。
编辑2:尝试编译上面的内容,看起来我必须像这样抛出最后两行: TStringList(CheckListBox1.Items).Sorted := TRUE;
TStringList(CheckListBox1.Items).Duplicates := dupIgnore;
虽然我可能能够让它运行,但我问这个问题,因为只是让它运行并不意味着它会一直运行或安全。
答案 0 :(得分:8)
您无法控制TCheckListBox
类用于存储其项目的内容。为Items
属性分配值只会将其项目分配给内部存储。
此外,您不应致电Items.Free;
。 TCheckListBox
取决于其TListBoxStrings
的内部实例。
要回答您的问题中的修改:请勿将Items
属性强制转换为TStringList
。类型转换是错误的(Items
公开的实例不是TStringList
)并且只会导致问题。
编辑,为您似乎尝试实现的建议提供一种解决方法:要对checklistbox进行排序,您可以将其Sorted
属性设置为True
。为避免重复,您可以在代码中添加项目之前检查列表。