Einzelnen Beitrag anzeigen

TiGü

Registriert seit: 6. Apr 2011
Ort: Berlin
3.070 Beiträge
 
Delphi 10.4 Sydney
 
#4

AW: Ausgeschaltete Items in Radiogroup sollen ToolTips zeigen.

  Alt 2. Dez 2021, 09:42
Panel "HINTER" der Radiogroup!
Reicht dir die DFM oder brauchst du das komplette Projekt zum Nachvollziehen?

Delphi-Quellcode:
object Form1: TForm1
  Left = 0
  Top = 0
  Caption = 'Form1'
  ClientHeight = 336
  ClientWidth = 635
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'Tahoma'
  Font.Style = []
  OldCreateOrder = False
  PixelsPerInch = 96
  TextHeight = 13
  object RadioGroup1: TRadioGroup
    Left = 76
    Top = 128
    Width = 185
    Height = 105
    Hint = 'Das ist ein Hint! Der wird aber nicht angezeigt!'
    Caption = 'RadioGroup1'
    Enabled = False
    Items.Strings = (
      'Item 1'
      'Item 2'
      'Item 3')
    ParentShowHint = False
    ShowHint = True
    TabOrder = 0
  end
  object Panel1: TPanel
    Left = 346
    Top = 135
    Width = 185
    Height = 98
    Hint = 'Das ist der gleiche Hint wie RadioGroup2!'
    BevelOuter = bvNone
    Caption = 'Panel1'
    ParentShowHint = False
    ShowCaption = False
    ShowHint = True
    TabOrder = 1
    object RadioGroup2: TRadioGroup
      Left = 0
      Top = 0
      Width = 185
      Height = 98
      Hint = 'Das ist ein Hint!'
      Align = alClient
      Caption = 'RadioGroup2'
      Enabled = False
      Items.Strings = (
        'Item 1'
        'Item 2'
        'Item 3')
      ParentShowHint = False
      ShowHint = True
      TabOrder = 0
    end
  end
end
  Mit Zitat antworten Zitat