5 writes to Font
System.Windows.Forms (5)
System\Windows\Forms\Controls\TreeView\TreeNode.cs (2)
750_propBag.Font = null; 766_propBag.Font = value;
System\Windows\Forms\Controls\TreeView\TreeView.cs (1)
2904retval.Font = node._propBag.Font;
System\Windows\Forms\OwnerDrawPropertyBag.cs (2)
25Font = font; 94result.Font = value.Font;
10 references to Font
System.Windows.Forms (10)
System\Windows\Forms\Controls\TreeView\TreeNode.cs (1)
738return _propBag.Font;
System\Windows\Forms\Controls\TreeView\TreeView.cs (2)
2799if (renderinfo is not null && renderinfo.Font is not null) 2904retval.Font = node._propBag.Font;
System\Windows\Forms\OwnerDrawPropertyBag.cs (7)
23if (entry.Name == nameof(Font) && entry.Value is Font font) 66Debug.Assert(Font is not null); 67_fontWrapper = new Control.FontHandleWrapper(Font); 77public virtual bool IsEmpty() => Font is null && ForeColor.IsEmpty && BackColor.IsEmpty; 94result.Font = value.Font; 103si.AddValue(nameof(Font), Font);