ArcGIS Pro 2.6 API Reference Guide
ShowPopup(MapMember,Int64) Method
Example 

ArcGIS.Desktop.Mapping Namespace > MapView Class > ShowPopup Method : ShowPopup(MapMember,Int64) Method
The MapMember containing the feature.
The object id of the feature.
Show a pop-up for a feature. This method must be called on the UI thread.
Syntax
public void ShowPopup( 
   MapMember mapMember,
   long featureID
)
Public Overloads Sub ShowPopup( _
   ByVal mapMember As MapMember, _
   ByVal featureID As Long _
) 

Parameters

mapMember
The MapMember containing the feature.
featureID
The object id of the feature.
Exceptions
ExceptionDescription
Popups must be created on the UI thread
Example
Show a pop-up for a feature.
public void ShowPopup(MapMember mapMember, long objectID)
{
  //Get the active map view.
  var mapView = MapView.Active;
  if (mapView == null)
    return;

  mapView.ShowPopup(mapMember, objectID);
}
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 7

See Also

Reference

MapView Class
MapView Members
Overload List