我在C#中的总初学者,但我已经使用Java的很多。 我尝试使用下面的代码在我的应用程序来获得位置数据。 我想提出一个Windows 8桌面应用程序使用GPS传感器在我的设备:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Windows.Devices.Sensors;
using Windows.Devices.Geolocation;
using Windows.Devices.Geolocation.Geoposition;
using Windows.Foundation;
namespace Hello_Location
{
public partial class Form1 :
{
public Form1()
{
InitializeComponent();
}
async private void Form1_Load(object sender, EventArgs e)
{
Geolocator loc = new Geolocator();
try
{
loc.DesiredAccuracy = PositionAccuracy.High;
Geoposition pos = await loc.GetGeopositionAsync();
var lat = pos.Coordinate.Latitude;
var lang = pos.Coordinate.Longitude;
Console.WriteLine(lat+ " " +lang);
}
catch (System.UnauthorizedAccessException)
{
// handle error
}
}
private void button1_Click(object sender, EventArgs e)
{
}
}
}
我得到这个错误:
“等待”要求类型“Windows.Foundation.IAsyncOperation”具有合适的GetAwaiter方法。 是否缺少using指令为“系统”? C:\ Users \用户clidy \文件\的Visual Studio 2012 \项目\ HELLO-位置\ HELLO-位置\ Form1.cs中
我怎样才能解决这个问题?
它也将是非常有用的,如果你能给我一些资源为C#的位置和传感器API的Windows 桌面应用程序。 在谷歌上搜索,我只得到的Windows RT的API。