Ejemplo n.º 1
0
        /// <summary>
        /// Shows the tracker.
        /// </summary>
        /// <param name="data">The data.</param>
        public void ShowTracker(TrackerHitResult data)
        {
            if (this.trackerLabel == null)
            {
                this.trackerLabel = new Label {Parent = this, BackColor = Color.LightSkyBlue, AutoSize = true};
            }

            this.trackerLabel.Text = data.ToString();
            this.trackerLabel.Top = (int)data.Position.Y;
            this.trackerLabel.Left = (int)data.Position.X;
            this.trackerLabel.Visible = true;
        }