public void FireWindowClicked(WPin pin) { if (this.WindowClicked != null) { this.WindowClicked(this, pin); } }
public void RefreshWindowForPin(WPin pin) { if (this.RendererNeedToRefreshWindow != null) { this.RendererNeedToRefreshWindow(this, pin); } }
public void AddPin(WPin pin) { this.ExtendedPins.Add(pin); this.Pins.Add(pin.Pin); }