procedure TFormMainMenu.LVSendCustomDrawItem(Sender: TCustomListView;
  Item: TListItem; State: TCustomDrawState; var DefaultDraw: Boolean);
begin
  if Item.SubItems.Strings[8] = '未发送' then
  begin
    DefaultDraw := True;
    LVSend.Canvas.Font.Color := clRed;
    LVSend.Canvas.Brush.Color := clYellow;
    LVSend.Canvas.FillRect(Item.DisplayRect(drLabel));
    LVSend.Canvas.TextOut(Item.DisplayRect(drLabel).Left+2,Item.DisplayRect(drLabel).Top+2,Item.SubItems.Strings[1]);
  end;
end;