Ejemplo n.º 1
0
 private void ImageMouseEnter(object sender, MouseEventArgs e)
 {
     if (_balloon == null)
     {
         _balloon         = new BalloonWindow(this, Caption, Position);
         _balloon.Closed += BalloonClosed;
         _balloon.Show();
     }
 }
Ejemplo n.º 2
0
 private void BalloonClosed(object sender, EventArgs e)
 {
     _balloon = null;
 }
Ejemplo n.º 3
0
 public BalloonContainer()
 {
     _balloon = null;
     InitializeComponent();
 }