If your map is in Decimal Degrees (Geodetic), it is very easy. You simply set the current extent of the map to a RectangleShape with the Upper Left and Lower Right values.
Upper Left x = minx=-119.41799926757812
Upper Left y = maxy=51.500099182128906
Lower Right x = maxx=139.69200134277344
Lower Right y = miny=18.450000762939453
So in you code it is going to be:
Map1.MapBackground.BackgroundBrush = new GeoSolidBrush(GeoColor.FromHtml("#E5E3DF"));
Map1.CurrentExtent = new RectangleShape(-119.41799926757812, 51.500099182128906, 139.69200134277344, 18.450000762939453);
Map1.MapUnit = GeographyUnit.DecimalDegree;
WorldMapKitWmsWebOverlay worldMapKitOverlay = new WorldMapKitWmsWebOverlay();
Map1.CustomOverlays.Add(worldMapKitOverlay);