1

このコードを TCheckListbox (lbServices) で使用すると、正常に動作します。しかし、Devexpress の TcxCheckListBox を使用すると、例外が発生します。

procedure TMaintenanceForm.AfterConstruction;
var
  i: Integer;
  ActionObj: TAction;
begin
  inherited;
  for i := 0 to ServiceActionList.ActionCount-1 do
  begin
    ActionObj := ServiceActionList.Actions[i] as TAction;
    lbServices.Items.AddObject(ActionObj.Caption, ActionObj);
  end;
end;

procedure TMaintenanceForm.btnStopClick(Sender: TObject);
begin
  fContinue := False;
end;

procedure TMaintenanceForm.cmdExecuteSelectedClick(Sender: TObject);
var
  i: Integer;
begin
  Screen.Cursor := crHourGlass;
  try
    for i := 0 to lbServices.Count -1 do
      if lbServices.Selected[i] then
        (lbServices.Items.Objects[i] as TAction).Execute;  // Exception here!!!!
  finally
    Screen.Cursor := crDefault;
  end;
end;

コード lbServices.Count = 12 をデバッグすると、リスト内のすべての項目で lbServices.Items.Objects[i] が nil になります。ここで何が問題なのですか?

4

2 に答える 2

4

代わりに次のコードを使用してください。

var
  AItem: TcxCheckListBoxItem;
begin
  AItem := cxCheckListBox1.Items.Add;
  AItem.ItemObject := Action1;
  AItem.Text := Action1.Caption;
end;

...

var
  I: Integer;
begin
  for I := 0 to cxCheckListBox1.Items.Count - 1 do
    if cxCheckListBox1.Items[I].Checked then
      (cxCheckListBox1.Items[I].ItemObject as TACtion).Execute;
end;
于 2010-08-06T11:49:01.893 に答える
0

TcxCheckListBox.ItemsのObjectsプロパティはありません

于 2010-08-06T11:20:02.790 に答える