Regarding missing trace: gpx file can have several layers. It seems that only the first layer is opened now. I tested new installer, and all layers are still opened for me. As a workaround try to use:
var ds = new OgrDatasource();
if (ds.Open(path))
{
for (int i = 0; i < ds.LayerCount; i++)
{
var layer = ds.GetLayer(i);
Map1.AddLayer(layer, true);
}
}