Пример #1
0
            public void ShowTypeMarker(Action <string> action)
            {
                var i  = listView.TopItem;
                var rc = listView.DisplayRectangle;

                typeMarker.Show(i.Position, action);
            }
Пример #2
0
        public bool MarkType()
        {
            var addrRange = control.MemoryView.GetAddressRange();

            if (addrRange.IsValid)
            {
                typeMarker.Show(control.MemoryView.AddressToPoint(addrRange.Begin));
            }
            return(true);
        }