Example #1
0
 void otherBtn_Click(object sender, EventArgs e)
 {
     if (otherflyOutPanel.OwnerControl == null)
     {
         otherflyOutPanel.HostControl  = this.FindForm();
         otherflyOutPanel.OwnerControl = this.FindForm();
         otherflyOutPanel.ParentForm   = this.FindForm();
     }
     otherflyOutPanel.Options.HorzIndent = PointToScreen(otherBtn.Location).X;
     otherflyOutPanel.Options.VertIndent = PointToScreen(otherBtn.Location).Y + this.Height;
     otherflyOutPanel.ShowPopup(true);
     otherflyOutPanel.FlyoutPanelState.Form.TopMost = true;
 }