1 write to FlatStyle
System.Windows.Forms (1)
System\Windows\Forms\Controls\Labels\LinkLabel.cs (1)
152set => base.FlatStyle = value;
5 references to FlatStyle
System.Windows.Forms (5)
System\Windows\Forms\Controls\Labels\Label.cs (4)
1045internal virtual bool UseGDIMeasuring() => (FlatStyle == FlatStyle.System || !UseCompatibleTextRendering); 1072TextFormatFlags format = FlatStyle == FlatStyle.System ? TextFormatFlags.Default : CreateTextFormatFlags(proposedConstraints); 1104if (UseCompatibleTextRendering && FlatStyle != FlatStyle.System) 1144private bool IsOwnerDraw() => FlatStyle != FlatStyle.System;
System\Windows\Forms\Controls\Labels\LinkLabel.cs (1)
151get => base.FlatStyle;