Windows Metro Style app occur error with Google Data API Library(Windows Metro Style 应用程序出现 Google Data API 库错误)
问题描述
操作系统:Windows 8 消费者预览版
IDE:Visual Studio 11 测试版
OS: Windows 8 Consumer Preview
IDE: Visual Studio 11 Beta
我创建了一个空白应用程序(Windows Metro 风格).
并添加 Google Doc API 示例代码.(如下)
出现编译错误.(在模块 System.dll 中找不到类型 System.ComponentModel.ExpandableObjectConverter)
I create a Blank Application(Windows Metro style).
And add Google Doc API sample code. (It is below)
It occur compile Error.(Cannot find type System.ComponentModel.ExpandableObjectConverter in module System.dll)
但是当我创建控制台应用程序(Windows)时,不会发生编译错误并且 Google Doc API 运行良好.
But When I create a Console Application(Windows), don't occur compile Error and Google Doc API working good.
有什么想法吗?
using System;
using Google.GData.Client;
using Google.GData.Documents;
namespace MyDocumentsListIntegration
{
class Program
{
static void Main(string[] args)
{
DocumentsService service = new DocumentsService("MyDocumentsListIntegration-v1");
// TODO: Authorize the service object for a specific user (see Authorizing requests)
// Instantiate a DocumentsListQuery object to retrieve documents.
DocumentsListQuery query = new DocumentsListQuery();
// Make a request to the API and get all documents.
DocumentsFeed feed = service.Query(query);
// Iterate through all of the documents returned
foreach (DocumentEntry entry in feed.Entries)
{
// Print the title of this document to the screen
Console.WriteLine(entry.Title.Text);
}
}
}
}
推荐答案
看来ExpandableObjectConverter 类存在于标准 .NET 框架中,但如果您查看 Metro API 文档以了解 System.ComponentModel 命名空间,该类未列出,因此不可用.
It appears that the ExpandableObjectConverter class exists in the standard .NET framework, but if you look at the Metro API documentation for System.ComponentModel namespace, that class is not listed and so is not available.
我建议使用 .NET for Metro 风格应用程序 页面,了解编写 Metro 风格应用程序时可用的内容.
I recommend using the .NET for Metro style apps page to discover what is available when writing a Metro style application.
这篇关于Windows Metro Style 应用程序出现 Google Data API 库错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Windows Metro Style 应用程序出现 Google Data API 库错误
- 如何用自己压缩一个 IEnumerable 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- 输入按键事件处理程序 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01