I am working on offline map using MapWinGIS in C# where i am successfully able to draw map based on latitude and longitude.
working
axMap1.Latitude = 60.1282f;
axMap1.Longitude = 18.6435f;
axMap1.CurrentZoom = 10;
Not Working
axMap1.Latitude = Textbox1.Text;
How to achieve this
Thank you !