IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Composants VCL Delphi Discussion :

Onglet TabControl invisible ou désactivé


Sujet :

Composants VCL Delphi

  1. #1
    Membre régulier Avatar de miniil
    Femme Profil pro
    Développeur informatique
    Inscrit en
    Juin 2003
    Messages
    267
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Âge : 47
    Localisation : Belgique

    Informations professionnelles :
    Activité : Développeur informatique

    Informations forums :
    Inscription : Juin 2003
    Messages : 267
    Points : 76
    Points
    76
    Par défaut Onglet TabControl invisible ou désactivé
    Bonjour,

    J'aimerai savoir comment désactiver ou rendre invisibles certains onglets de mon TabControl en fonction d'un critère.

    Par exemple :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
     
    if critere = true then begin
        onglet1.visible := False;
    end;
    Quelqu'un peut m'aider?

    D'avance merci.

  2. #2
    Membre confirmé

    Inscrit en
    Novembre 2002
    Messages
    773
    Détails du profil
    Informations forums :
    Inscription : Novembre 2002
    Messages : 773
    Points : 500
    Points
    500
    Par défaut
    salut

    tu as les propriétés TabSheet1.TabVisible , TabSheet1.Enabled pour cela.

  3. #3
    Membre régulier Avatar de miniil
    Femme Profil pro
    Développeur informatique
    Inscrit en
    Juin 2003
    Messages
    267
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Âge : 47
    Localisation : Belgique

    Informations professionnelles :
    Activité : Développeur informatique

    Informations forums :
    Inscription : Juin 2003
    Messages : 267
    Points : 76
    Points
    76
    Par défaut
    Ce n'est pas pour PageControl?

    J'utilise un TabControl.

  4. #4
    Expert confirmé
    Avatar de anapurna
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Mai 2002
    Messages
    3 446
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Développeur informatique
    Secteur : Arts - Culture

    Informations forums :
    Inscription : Mai 2002
    Messages : 3 446
    Points : 5 867
    Points
    5 867
    Par défaut
    salut

    salut

    a première vu la seul manière est de supprimer la tabulation
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    var
      ipos : integer;
    begin
      ipos := TabControl1.Tabs.IndexOf(MonCritereDeRecherche);
      if (i>-1) then
        TabControl1.Tabs.Delete(i);
    end;
    sinon tu peut gerer toi meme la navigation de tes tab

    dans le selon le critère tu affect true ou false a la variable pour l'affichage il faut que tu gère le dessin toi même

    exemple :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
     
     
    TForm1= CLASS(TFORM)
      ...
    Private
      NewTab : Integer;
    end;
    ...
    ////////////////////////////////////////////////////////
    Function TForm1.isEnabed(Index : Integer) : Boolean;
    begin
      Result := False;
      If Index=2 Then
        Result := True;
    end;
    ////////////////////////////////////////////////////////
    procedure TForm1.TabControl1Changing(Sender: TObject; var AllowChange: Boolean);
    begin
     AllowChange = isEnabed(NewTab);
    end;
    ////////////////////////////////////////////////////////
    procedure TForm1.TabControl1DrawTab(Control: TCustomTabControl;
      TabIndex: Integer; const Rect: TRect; Active: Boolean);
    var
      TabText: string;
      P: TTabControl;
      OutRect : TRect;
    begin
     p :=  Control as TTabControl ;
     TabText := P.Tabs[TabIndex];
     OutRect := Rect;
     InflateRect (OutRect, -3, -3);
     OutRect.Left := OutRect.Left + 3;
     if isEnabed then
       P.Canvas.Font.Color := clGrayText
     else
     begin
       if Active Then
       begin
         P.Canvas.Font.Color := clred ;
       end
       else
       begin
         P.Canvas.Font.Color := clBlack;
       end;
     end;
     DrawText (Control.Canvas.Handle,
        PChar (ExtractFileName (TabText)),
        Length (ExtractFileName (TabText)),
        OutRect, dt_Left or dt_SingleLine or dt_VCenter);
    end;
    ////////////////////////////////////////////////////////
    Function TForm1.GetTabIndexFromPoint(p:TPoint) : Integer;
    var
      i : integer;
    Begin
      Result := -1;
      for i :=0 to  TabControl1.Tabs.Count do
      Begin
        if PtInRect(TabControl1.TabRect(i),p)  then
          Result :=  i;
      end;
    end;
    ////////////////////////////////////////////////////////
    procedure TForm1.TabControl1MouseDown(Sender: TObject; Button: TMouseButton;
      Shift: TShiftState; X, Y: Integer);
    begin
      NewTab  := GetTabIndexFromPoint(Point(X,Y))
    end;
    ////////////////////////////////////////////////////////


    @+ Phil

  5. #5
    Membre régulier Avatar de miniil
    Femme Profil pro
    Développeur informatique
    Inscrit en
    Juin 2003
    Messages
    267
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Âge : 47
    Localisation : Belgique

    Informations professionnelles :
    Activité : Développeur informatique

    Informations forums :
    Inscription : Juin 2003
    Messages : 267
    Points : 76
    Points
    76
    Par défaut
    Merci pour ta réponse, c'est ok.

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Largeur Onglet TabControl
    Par ccito dans le forum VB.NET
    Réponses: 0
    Dernier message: 01/01/2011, 19h02
  2. scintillement onglet tabcontrol sur Timage
    Par Vilukariok dans le forum Débuter
    Réponses: 4
    Dernier message: 31/08/2009, 16h53
  3. Pb avec les onglets / Tabcontrol
    Par Igmar dans le forum Windows Forms
    Réponses: 14
    Dernier message: 20/04/2007, 16h18
  4. [VB.NET] Sélection onglet tabcontrol
    Par olbi dans le forum Windows Forms
    Réponses: 6
    Dernier message: 11/05/2006, 17h51
  5. [VB.NET] [TabControl] Colorer onglets tabcontrol en .NET
    Par Aspic dans le forum Windows Forms
    Réponses: 2
    Dernier message: 05/05/2006, 13h15

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo