5 overrides of FocusId
System.Windows.Forms.Design (5)
System\ComponentModel\Design\DesignerActionPanel.MethodLine.cs (1)
36public override string FocusId => $"METHOD:{_actionList!.GetType().FullName}.{_methodItem!.MemberName}";
System\ComponentModel\Design\DesignerActionPanel.PanelHeaderLine.cs (1)
47public override string FocusId => string.Empty;
System\ComponentModel\Design\DesignerActionPanel.PropertyLine.cs (1)
23public sealed override string FocusId => $"PROPERTY:{_actionList!.GetType().FullName}.{PropertyItem!.MemberName}";
System\ComponentModel\Design\DesignerActionPanel.SeparatorLine.cs (1)
18public override string FocusId => string.Empty;
System\ComponentModel\Design\DesignerActionPanel.TextLine.cs (1)
31public sealed override string FocusId => string.Empty;
2 references to FocusId
System.Windows.Forms.Design (2)
System\ComponentModel\Design\DesignerActionPanel.cs (2)
813focusId = focusedLine.FocusId; 903if (string.Equals(line.FocusId, focusId, StringComparison.Ordinal))