public void ShowTypeMarker(Action <string> action) { var i = listView.TopItem; var rc = listView.DisplayRectangle; typeMarker.Show(i.Position, action); }
public bool MarkType() { var addrRange = control.MemoryView.GetAddressRange(); if (addrRange.IsValid) { typeMarker.Show(control.MemoryView.AddressToPoint(addrRange.Begin)); } return(true); }