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